From 1350e7b607629e9e539970cc88007a09311a7549 Mon Sep 17 00:00:00 2001 From: "Juan A. Suarez Romero" Date: Mon, 14 Mar 2022 18:53:14 +0100 Subject: [PATCH] radv: change MESA_GLSL_CACHE envvar reference This was renamed to MESA_SHADER_CACHE. Signed-off-by: Juan A. Suarez Romero Reviewed-by: Timothy Arceri Part-of: --- src/amd/vulkan/radv_pipeline_cache.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/amd/vulkan/radv_pipeline_cache.c b/src/amd/vulkan/radv_pipeline_cache.c index 6398ba06ebc..3036e89c949 100644 --- a/src/amd/vulkan/radv_pipeline_cache.c +++ b/src/amd/vulkan/radv_pipeline_cache.c @@ -288,7 +288,7 @@ radv_pipeline_cache_add_entry(struct radv_pipeline_cache *cache, struct cache_en static bool radv_is_cache_disabled(struct radv_device *device) { - /* Pipeline caches can be disabled with RADV_DEBUG=nocache and with MESA_GLSL_CACHE_DISABLE=1. */ + /* Pipeline caches can be disabled with RADV_DEBUG=nocache and with MESA_SHADER_CACHE_DISABLE=1. */ return (device->instance->debug_flags & RADV_DEBUG_NO_CACHE); }