Merge pull request #8351 from abouvier/patch-2

video_core: Support new VkResult
This commit is contained in:
Mai M
2022-05-17 14:10:00 -04:00
committed by GitHub
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";
}