move assert to avoid crash in debug build.

This commit is contained in:
Alan Hourihane 2009-12-08 13:11:09 +00:00
parent eaa3a025da
commit 2aebc5e01f

View file

@ -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 */