Browse Source
Merge pull request #8351 from abouvier/patch-2
video_core: Support new VkResult
pull/15/merge
Mai M
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
3 additions and
1 deletions
-
externals/Vulkan-Headers
-
src/video_core/vulkan_common/vulkan_wrapper.cpp
|
|
|
@ -1 +1 @@ |
|
|
|
Subproject commit e005e1f8175d006adc3676b40ac3dd2212961a68 |
|
|
|
Subproject commit 33d4dd987fc8fc6475ff9ca2b4f0c3cc6e793337 |
|
|
|
@ -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"; |
|
|
|
} |
|
|
|
|