video_core: Support new VkResult

This commit is contained in:
Alexandre Bouvier 2022-05-17 15:07:09 +00:00
parent 5808e76fae
commit 020982508d
2 changed files with 3 additions and 1 deletions

View file

@ -325,6 +325,8 @@ const char* ToString(VkResult result) noexcept {
return "VK_PIPELINE_COMPILE_REQUIRED_EXT";
case VkResult::VK_RESULT_MAX_ENUM:
return "VK_RESULT_MAX_ENUM";
case VkResult::VK_ERROR_COMPRESSION_EXHAUSTED_EXT:
return "VK_ERROR_COMPRESSION_EXHAUSTED_EXT";
}
return "Unknown";
}