From 5a9a28612ade328c6ce3fa6c21540808a11b002e Mon Sep 17 00:00:00 2001 From: Ribbit Date: Thu, 9 Oct 2025 20:50:42 -0700 Subject: [PATCH] attempt 1.6 --- src/video_core/renderer_vulkan/vk_pipeline_cache.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp b/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp index 3a5d7fcb23..6a3c12a6a1 100644 --- a/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp +++ b/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp @@ -324,7 +324,8 @@ PipelineCache::PipelineCache(Tegra::MaxwellDeviceMemoryManager& device_memory_, .support_descriptor_aliasing = device.IsDescriptorAliasingSupported(), .support_int8 = device.IsInt8Supported(), .support_int16 = device.IsShaderInt16Supported(), - .support_int64 = device.IsShaderInt64Supported(), + .support_int64 = device.IsShaderInt64Supported() && + driver_id != VK_DRIVER_ID_QUALCOMM_PROPRIETARY, .support_vertex_instance_id = false, .support_float_controls = device.IsKhrShaderFloatControlsSupported() && driver_id != VK_DRIVER_ID_QUALCOMM_PROPRIETARY,