From: Kenneth Graunke Date: Fri, 23 Sep 2016 04:04:21 +0000 (-0700) Subject: i965: Fix brw_clear_cache to clean up TCS/TES shaders. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d3cc3d28bd53f11c5aacef9023dd95a8487c98c4;p=mesa.git i965: Fix brw_clear_cache to clean up TCS/TES shaders. We need to free prog_data for TCS/TES too. Signed-off-by: Kenneth Graunke Reviewed-by: Timothy Arceri --- diff --git a/src/mesa/drivers/dri/i965/brw_state_cache.c b/src/mesa/drivers/dri/i965/brw_state_cache.c index 0e98e654c1c..43b0a202f29 100644 --- a/src/mesa/drivers/dri/i965/brw_state_cache.c +++ b/src/mesa/drivers/dri/i965/brw_state_cache.c @@ -366,6 +366,8 @@ brw_clear_cache(struct brw_context *brw, struct brw_cache *cache) for (c = cache->items[i]; c; c = next) { next = c->next; if (c->cache_id == BRW_CACHE_VS_PROG || + c->cache_id == BRW_CACHE_TCS_PROG || + c->cache_id == BRW_CACHE_TES_PROG || c->cache_id == BRW_CACHE_GS_PROG || c->cache_id == BRW_CACHE_FS_PROG || c->cache_id == BRW_CACHE_CS_PROG) {