vulkan: Handle VK_ERROR_UNKNOWN

A newly added Vulkan 1.2 error.
This commit is contained in:
Emmanuele Bassi 2020-02-11 14:07:43 +00:00
parent 76aba1f046
commit c69595a3a9

View File

@ -205,7 +205,10 @@ gdk_vulkan_strerror (VkResult result)
case VK_ERROR_FULL_SCREEN_EXCLUSIVE_MODE_LOST_EXT:
return "An operation on a swapchain created with VK_FULL_SCREEN_EXCLUSIVE_APPLICATION_CONTROLLED_EXT failed as it did not have exlusive full-screen access.";
#endif
#if VK_HEADER_VERSION >= 131
case VK_ERROR_UNKNOWN:
return "An unknown error has occurred; either the application has provided invalid input, or an implementation failure has occurred.";
#endif
case VK_RESULT_RANGE_SIZE:
case VK_RESULT_MAX_ENUM:
default: