Update expected vulkan headers version
This commit is contained in:
parent
5e5e22e73f
commit
b0ce5cc735
3 changed files with 18 additions and 1 deletions
2
debian/control
vendored
2
debian/control
vendored
|
@ -25,7 +25,7 @@ Build-Depends-Arch: catch2 (>= 2.13.7) <!nocheck>,
|
|||
libswscale-dev,
|
||||
libusb-1.0-0-dev,
|
||||
libva-dev,
|
||||
libvulkan-dev (>= 1.3.238),
|
||||
libvulkan-dev (>= 1.3.246),
|
||||
libxbyak-dev [any-amd64],
|
||||
libzstd-dev (>= 1.5),
|
||||
llvm-dev,
|
||||
|
|
1
debian/patches/series
vendored
1
debian/patches/series
vendored
|
@ -1,3 +1,4 @@
|
|||
update-vulkan-headers.patch
|
||||
fixes-for-gcc-13.patch
|
||||
# Upstreamable patches
|
||||
cmake-mbedtls.patch
|
||||
|
|
16
debian/patches/update-vulkan-headers.patch
vendored
Normal file
16
debian/patches/update-vulkan-headers.patch
vendored
Normal file
|
@ -0,0 +1,16 @@
|
|||
Description: externals: update Vulkan-Headers to v1.3.246
|
||||
Author: Jan Beich <jbeich@FreeBSD.org>
|
||||
Origin: https://github.com/yuzu-emu/yuzu-mainline/commit/083d913eab0985093efa498fe035d11a0b726555
|
||||
Date: Sat, 1 Apr 2023 05:38:54 +0000
|
||||
|
||||
--- 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";
|
||||
}
|
Loading…
Reference in a new issue