From 3acbaf87022a27a88944808a151b58d7ac53aa5e Mon Sep 17 00:00:00 2001 From: Niklas Birk Date: Wed, 3 Mar 2021 17:47:59 +0100 Subject: [PATCH] use another validation layer hence the old one is not available on newer vulkan sdk --- initVulkan.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/initVulkan.c b/initVulkan.c index d2b54fa..f68ccd4 100644 --- a/initVulkan.c +++ b/initVulkan.c @@ -17,7 +17,7 @@ void createInstance(Compute *compute, Graphics *graphics) #ifndef NDEBUG enabledLayerSize = 1; enabledLayer = malloc(sizeof(char *)); - enabledLayer[0] = "VK_LAYER_LUNARG_standard_validation"; + enabledLayer[0] = "VK_LAYER_KHRONOS_validation"; #endif VkApplicationInfo applicationInfo = {};