From 9bbcbd06e8736a0768879f1194debcbe9615cf66 Mon Sep 17 00:00:00 2001 From: Jeroen Bakker Date: Tue, 3 Jun 2025 10:07:19 +0200 Subject: [PATCH] Vulkan: Allow NVIDIA layers Fixes a typo, NVIDIA layers use an abbreviation nowadays. --- source/blender/gpu/vulkan/vk_backend.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/gpu/vulkan/vk_backend.cc b/source/blender/gpu/vulkan/vk_backend.cc index 76ed9cd2062..9db4f07b8f2 100644 --- a/source/blender/gpu/vulkan/vk_backend.cc +++ b/source/blender/gpu/vulkan/vk_backend.cc @@ -177,7 +177,7 @@ bool VKBackend::is_supported() allowed_layers << "VK_LAYER_KHRONOS_*"; allowed_layers << ",VK_LAYER_AMD_*"; allowed_layers << ",VK_LAYER_INTEL_*"; - allowed_layers << ",VK_LAYER_NVIDIA_*"; + allowed_layers << ",VK_LAYER_NV_*"; allowed_layers << ",VK_LAYER_MESA_*"; if (bool(G.debug & G_DEBUG_GPU)) { allowed_layers << ",VK_LAYER_LUNARG_*";