From: Alan Hourihane Date: Tue, 8 Dec 2009 13:11:09 +0000 (+0000) Subject: move assert to avoid crash in debug build. X-Git-Tag: 062012170305~15629 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2aebc5e01fbab6046f80c881d30717f788a390bc;p=profile%2Fivi%2Fmesa.git move assert to avoid crash in debug build. --- diff --git a/src/gallium/drivers/llvmpipe/lp_tile_cache.c b/src/gallium/drivers/llvmpipe/lp_tile_cache.c index e83210f..7a1ecf5 100644 --- a/src/gallium/drivers/llvmpipe/lp_tile_cache.c +++ b/src/gallium/drivers/llvmpipe/lp_tile_cache.c @@ -290,11 +290,12 @@ lp_get_cached_tile(struct llvmpipe_tile_cache *tc, assert(tc->surface); assert(tc->transfer); - assert(tc->transfer_map); if(!tc->transfer_map) lp_tile_cache_map_transfers(tc); + assert(tc->transfer_map); + switch(tile->status) { case LP_TILE_STATUS_CLEAR: /* don't get tile from framebuffer, just clear it */