[Vulkan] Process a few newer error strings

This commit is contained in:
DrChat 2017-12-16 16:47:55 -06:00
parent 49287579ff
commit 2f1295aeaa
1 changed files with 3 additions and 0 deletions

View File

@ -287,6 +287,9 @@ const char* to_string(VkResult result) {
STR(VK_ERROR_OUT_OF_DATE_KHR);
STR(VK_ERROR_INCOMPATIBLE_DISPLAY_KHR);
STR(VK_ERROR_VALIDATION_FAILED_EXT);
STR(VK_ERROR_INVALID_SHADER_NV);
STR(VK_ERROR_OUT_OF_POOL_MEMORY_KHR);
STR(VK_ERROR_INVALID_EXTERNAL_HANDLE_KHR);
#undef STR
default:
return "UNKNOWN_RESULT";