]> git.sesse.net Git - ffmpeg/commitdiff
hwcontext_vulkan: update debugging layer name
authorLynne <dev@lynne.ee>
Sun, 10 May 2020 20:13:55 +0000 (21:13 +0100)
committerLynne <dev@lynne.ee>
Sun, 10 May 2020 22:20:48 +0000 (23:20 +0100)
libavutil/hwcontext_vulkan.c

index db71e3900340a8e4fbeaa4598a38e9b5b5934125..b62d0a6c6c421e7e33ff5f4b8b7e94ec509224d0 100644 (file)
@@ -425,7 +425,7 @@ static int create_instance(AVHWDeviceContext *ctx, AVDictionary *opts)
         return err;
 
     if (debug_mode) {
-        static const char *layers[] = { "VK_LAYER_LUNARG_standard_validation" };
+        static const char *layers[] = { "VK_LAYER_KHRONOS_validation" };
         inst_props.ppEnabledLayerNames = layers;
         inst_props.enabledLayerCount = FF_ARRAY_ELEMS(layers);
     }