From: José Fonseca Date: Sun, 20 Sep 2009 11:28:07 +0000 (+0100) Subject: llvmpipe: Update tile status on flush. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=76c2e34b22836c3a71a096be5620ded97a2ae636;p=mesa.git llvmpipe: Update tile status on flush. --- diff --git a/src/gallium/drivers/llvmpipe/lp_tile_cache.c b/src/gallium/drivers/llvmpipe/lp_tile_cache.c index 143afec3d35..ddda5650a92 100644 --- a/src/gallium/drivers/llvmpipe/lp_tile_cache.c +++ b/src/gallium/drivers/llvmpipe/lp_tile_cache.c @@ -225,11 +225,14 @@ lp_flush_tile_cache(struct llvmpipe_tile_cache *tc) tc->clear_val); screen->transfer_unmap(screen, pt); + + tile->status = LP_TILE_STATUS_UNDEFINED; break; } case LP_TILE_STATUS_DEFINED: lp_put_tile_rgba_soa(pt, x, y, tile->color); + tile->status = LP_TILE_STATUS_UNDEFINED; break; } }