diff options
author | Jan Beich <jbeich@FreeBSD.org> | 2023-04-01 07:38:54 +0200 |
---|---|---|
committer | Jan Beich <jbeich@FreeBSD.org> | 2023-04-01 07:38:54 +0200 |
commit | 083d913eab0985093efa498fe035d11a0b726555 (patch) | |
tree | 9252c5d55883bbf027329f3999ca32f242f1a765 /src/video_core | |
parent | Merge pull request #10010 from maxdunbar/typo (diff) | |
download | yuzu-083d913eab0985093efa498fe035d11a0b726555.tar yuzu-083d913eab0985093efa498fe035d11a0b726555.tar.gz yuzu-083d913eab0985093efa498fe035d11a0b726555.tar.bz2 yuzu-083d913eab0985093efa498fe035d11a0b726555.tar.lz yuzu-083d913eab0985093efa498fe035d11a0b726555.tar.xz yuzu-083d913eab0985093efa498fe035d11a0b726555.tar.zst yuzu-083d913eab0985093efa498fe035d11a0b726555.zip |
Diffstat (limited to 'src/video_core')
-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"; } |