Module: Mesa Branch: master Commit: 449c22004c6c5f1ab7dce5122a253f5834de4547 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=449c22004c6c5f1ab7dce5122a253f5834de4547
Author: Iago Toral Quiroga <[email protected]> Date: Wed Jul 4 10:40:15 2018 +0200 anv/pipeline: honor the pipeline_cache_enabled run-time flag v2: merge both conditions to reduce the diff (Lionel) Reviewed-by: Lionel Landwerlin <[email protected]> --- src/intel/vulkan/anv_pipeline_cache.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/intel/vulkan/anv_pipeline_cache.c b/src/intel/vulkan/anv_pipeline_cache.c index d4c7262dc0..3efa427279 100644 --- a/src/intel/vulkan/anv_pipeline_cache.c +++ b/src/intel/vulkan/anv_pipeline_cache.c @@ -571,7 +571,7 @@ anv_device_search_for_kernel(struct anv_device *device, #ifdef ENABLE_SHADER_CACHE struct disk_cache *disk_cache = device->instance->physicalDevice.disk_cache; - if (disk_cache) { + if (disk_cache && device->instance->pipeline_cache_enabled) { cache_key cache_key; disk_cache_compute_key(disk_cache, key_data, key_size, cache_key); _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
