diff options
author | GPUCode <geoster3d@gmail.com> | 2023-06-05 19:04:22 +0300 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2023-06-27 18:00:09 -0700 |
commit | 1522b956583aab463bd1576652d1794fe989437d (patch) | |
tree | af44951eda971e3513a06537590681b3aa91a6b2 /src | |
parent | c339af37a73de144fbbad706e43aefe278640cd7 (diff) |
renderer_vulkan: Bump minimum SPIRV version
* 1.3 is guaranteed on all 1.1 drivers
Diffstat (limited to 'src')
-rw-r--r-- | src/video_core/vulkan_common/vulkan_device.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/vulkan_common/vulkan_device.h b/src/video_core/vulkan_common/vulkan_device.h index 8a05a4fab..13ca24ef5 100644 --- a/src/video_core/vulkan_common/vulkan_device.h +++ b/src/video_core/vulkan_common/vulkan_device.h @@ -518,7 +518,7 @@ public: if (extensions.spirv_1_4) { return 0x00010400U; } - return 0x00010000U; + return 0x00010300U; } /// Returns true when a known debugging tool is attached. |