From: Iago Toral Quiroga Date: Fri, 11 Jan 2019 11:54:16 +0000 (+0100) Subject: anv/pipeline_cache: free NIR shader cache X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1c1ae6376c5cc6d3c2c20647aa6838f4fedd8f05;p=mesa.git anv/pipeline_cache: free NIR shader cache Fixes: f6aa9f718516 'anv/pipeline_cache: Add support for caching NIR' Reviewed-by: Lionel Landwerlin --- diff --git a/src/intel/vulkan/anv_pipeline_cache.c b/src/intel/vulkan/anv_pipeline_cache.c index f9733c53098..d96102c2873 100644 --- a/src/intel/vulkan/anv_pipeline_cache.c +++ b/src/intel/vulkan/anv_pipeline_cache.c @@ -258,6 +258,13 @@ anv_pipeline_cache_finish(struct anv_pipeline_cache *cache) _mesa_hash_table_destroy(cache->cache, NULL); } + + if (cache->nir_cache) { + hash_table_foreach(cache->nir_cache, entry) + ralloc_free(entry->data); + + _mesa_hash_table_destroy(cache->nir_cache, NULL); + } } static struct anv_shader_bin *