Module: Mesa Branch: lp-surface-tiling Commit: 26ce97c16c0b6520ff1538803baa772d8c3b1280 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=26ce97c16c0b6520ff1538803baa772d8c3b1280
Author: Brian Paul <[email protected]> Date: Mon Apr 5 14:34:13 2010 -0600 llvmpipe: disable bad assertions --- src/gallium/drivers/llvmpipe/lp_tile_image.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/src/gallium/drivers/llvmpipe/lp_tile_image.c b/src/gallium/drivers/llvmpipe/lp_tile_image.c index 5f69aac..0852150 100644 --- a/src/gallium/drivers/llvmpipe/lp_tile_image.c +++ b/src/gallium/drivers/llvmpipe/lp_tile_image.c @@ -225,8 +225,10 @@ lp_linear_to_tiled(const void *src, void *dst, { assert(x % TILE_SIZE == 0); assert(y % TILE_SIZE == 0); + /* assert(width % TILE_SIZE == 0); assert(height % TILE_SIZE == 0); + */ if (util_format_is_depth_or_stencil(format)) { const uint bpp = util_format_get_blocksize(format); _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
