gtk4: fix build w/ newer vulkan

This commit is contained in:
Jürgen Buchmüller 2020-07-26 16:35:59 +02:00
parent 9f562b41dc
commit 8d2269f561
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
--- gdk/gdkvulkancontext.c 2018-06-26 13:48:16.000000000 +0200
+++ gdk/gdkvulkancontext.c 2020-07-26 16:28:33.487718532 +0200
@@ -190,7 +190,9 @@
case VK_ERROR_FRAGMENTATION_EXT:
return "A descriptor pool creation has failed due to fragmentation";
#endif
+#if defined(VK_RESULT_RANGE_SIZE)
case VK_RESULT_RANGE_SIZE:
+#endif
case VK_RESULT_MAX_ENUM:
default:
return "Unknown Vulkan error.";