Skip to content

Commit 09ceaf3

Browse files
authored
Update vk_color_cube.cc
Fixes Vulkan Validation Layer name. VK_LAYER_LUNARG_standard_validation was deprecated and replaced by VK_LAYER_KHRONOS_validation. The deprecated name was removed from Khronos github entirely in Feb 2020. (KhronosGroup/Vulkan-ValidationLayers#1562)
1 parent 948c67c commit 09ceaf3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/examples/vulkan/vk_color_cube/vk_color_cube.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -590,7 +590,7 @@ bool AMDVulkanDemo::InitializeVulkan()
590590

591591
if (bEnableValidation)
592592
{
593-
layers.push_back("VK_LAYER_LUNARG_standard_validation");
593+
layers.push_back("VK_LAYER_KHRONOS_validation");
594594
};
595595

596596
VkApplicationInfo appInfo = {};

0 commit comments

Comments
 (0)