OSDN Git Service

egl: helps if the stride is right
authorZack Rusin <zack@tungstengraphics.com>
Fri, 27 Jun 2008 20:47:22 +0000 (16:47 -0400)
committerZack Rusin <zack@tungstengraphics.com>
Fri, 27 Jun 2008 20:47:22 +0000 (16:47 -0400)
src/gallium/winsys/egl_xlib/sw_winsys.c

index 6956fb5..f4199e6 100644 (file)
@@ -190,7 +190,9 @@ surface_alloc_storage(struct pipe_winsys *winsys,
    surf->width = width;
    surf->height = height;
    surf->format = format;
-   pf_get_block(format, &surf->block);
+   pf_get_block(surf->format, &surf->block);
+   surf->nblocksx = pf_get_nblocksx(&surf->block, width);
+   surf->nblocksy = pf_get_nblocksy(&surf->block, height);
    surf->stride = round_up(surf->nblocksx * surf->block.size, alignment);
    surf->usage = flags;