Merge branch 'vulkan-294' into 'main'

vulkan: Add another two error codes

See merge request GNOME/gtk!7708
This commit is contained in:
Matthias Clasen 2024-09-11 10:12:40 +00:00
commit d87ce14869

View File

@ -272,7 +272,13 @@ gdk_vulkan_strerror (VkResult result)
#endif #endif
#if VK_HEADER_VERSION >= 274 #if VK_HEADER_VERSION >= 274
case VK_ERROR_INVALID_VIDEO_STD_PARAMETERS_KHR: case VK_ERROR_INVALID_VIDEO_STD_PARAMETERS_KHR:
return "The specified Video Std parameters do not adhere to the syntactic or semantic requirements of the used video compression standard or implementation"; return "The specified Video Std parameters do not adhere to the syntactic or semantic requirements of the used video compression standard or implementation. (VK_ERROR_INVALID_VIDEO_STD_PARAMETERS_KHR)";
#endif
#if VK_HEADER_VERSION >= 294
case VK_PIPELINE_BINARY_MISSING_KHR:
return "The application attempted to create a pipeline binary by querying an internal cache, but the internal cache entry did not exist. (VK_PIPELINE_BINARY_MISSING_KHR)";
case VK_ERROR_NOT_ENOUGH_SPACE_KHR:
return "The application did not provide enough space to return all the required data. (VK_ERROR_NOT_ENOUGH_SPACE_KHR)";
#endif #endif
case VK_RESULT_MAX_ENUM: case VK_RESULT_MAX_ENUM: