diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2023-04-01 15:44:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-01 15:44:52 +0200 |
commit | 986336b0d832221de420d5b3b8e78ea7508581fc (patch) | |
tree | 52da5617b414cc6d3a672be57feeb1dd81225d1b /src | |
parent | Merge pull request #10005 from liamwhite/kernel-atomics (diff) | |
parent | externals: update Vulkan-Headers to v1.3.246 (diff) | |
download | yuzu-986336b0d832221de420d5b3b8e78ea7508581fc.tar yuzu-986336b0d832221de420d5b3b8e78ea7508581fc.tar.gz yuzu-986336b0d832221de420d5b3b8e78ea7508581fc.tar.bz2 yuzu-986336b0d832221de420d5b3b8e78ea7508581fc.tar.lz yuzu-986336b0d832221de420d5b3b8e78ea7508581fc.tar.xz yuzu-986336b0d832221de420d5b3b8e78ea7508581fc.tar.zst yuzu-986336b0d832221de420d5b3b8e78ea7508581fc.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/video_core/vulkan_common/vulkan_wrapper.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/video_core/vulkan_common/vulkan_wrapper.cpp b/src/video_core/vulkan_common/vulkan_wrapper.cpp index 486d4dfaf..336f53700 100644 --- a/src/video_core/vulkan_common/vulkan_wrapper.cpp +++ b/src/video_core/vulkan_common/vulkan_wrapper.cpp @@ -375,6 +375,8 @@ const char* ToString(VkResult result) noexcept { return "VK_RESULT_MAX_ENUM"; case VkResult::VK_ERROR_COMPRESSION_EXHAUSTED_EXT: return "VK_ERROR_COMPRESSION_EXHAUSTED_EXT"; + case VkResult::VK_ERROR_INCOMPATIBLE_SHADER_BINARY_EXT: + return "VK_ERROR_INCOMPATIBLE_SHADER_BINARY_EXT"; } return "Unknown"; } |