summaryrefslogtreecommitdiffstats
path: root/src/video_core/vulkan_common/vulkan_device.cpp
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2023-11-19 14:29:06 +0100
committerFernando Sahmkow <fsahmkow27@gmail.com>2023-11-19 14:54:15 +0100
commita493ba76b455374b6a9cba40df75e328ad72bc0e (patch)
treebef4c4a49515507be7cf8c3773ace6b6b1c3ef28 /src/video_core/vulkan_common/vulkan_device.cpp
parentshader_recompiler: Fix spelling of "derivate" (#12067) (diff)
downloadyuzu-a493ba76b455374b6a9cba40df75e328ad72bc0e.tar
yuzu-a493ba76b455374b6a9cba40df75e328ad72bc0e.tar.gz
yuzu-a493ba76b455374b6a9cba40df75e328ad72bc0e.tar.bz2
yuzu-a493ba76b455374b6a9cba40df75e328ad72bc0e.tar.lz
yuzu-a493ba76b455374b6a9cba40df75e328ad72bc0e.tar.xz
yuzu-a493ba76b455374b6a9cba40df75e328ad72bc0e.tar.zst
yuzu-a493ba76b455374b6a9cba40df75e328ad72bc0e.zip
Diffstat (limited to 'src/video_core/vulkan_common/vulkan_device.cpp')
-rw-r--r--src/video_core/vulkan_common/vulkan_device.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/video_core/vulkan_common/vulkan_device.cpp b/src/video_core/vulkan_common/vulkan_device.cpp
index e518756d2..6900b8ffa 100644
--- a/src/video_core/vulkan_common/vulkan_device.cpp
+++ b/src/video_core/vulkan_common/vulkan_device.cpp
@@ -635,6 +635,12 @@ Device::Device(VkInstance instance_, vk::PhysicalDevice physical_, VkSurfaceKHR
has_broken_cube_compatibility = true;
}
}
+ if (is_qualcomm) {
+ const u32 version = (properties.properties.driverVersion << 3) >> 3;
+ if (version < VK_MAKE_API_VERSION(0, 255, 615, 512)) {
+ has_broken_parallel_compiling = true;
+ }
+ }
if (extensions.sampler_filter_minmax && is_amd) {
// Disable ext_sampler_filter_minmax on AMD GCN4 and lower as it is broken.
if (!features.shader_float16_int8.shaderFloat16) {