diff options
| author | 2023-10-29 11:25:15 -0400 | |
|---|---|---|
| committer | 2023-10-29 11:25:15 -0400 | |
| commit | 4da2105a323804136078ad214200f088c87adca6 (patch) | |
| tree | 0592457219064bf98a0aea7fb21db1888598b838 | |
| parent | Merge pull request #11859 from Kelebek1/compute_findbuffer (diff) | |
| parent | Manually robust on Pascal and earlier (diff) | |
| download | yuzu-4da2105a323804136078ad214200f088c87adca6.tar.gz yuzu-4da2105a323804136078ad214200f088c87adca6.tar.xz yuzu-4da2105a323804136078ad214200f088c87adca6.zip | |
Merge pull request #11862 from liamwhite/pascal-robust
Manually robust on Pascal and earlier
| -rw-r--r-- | src/video_core/renderer_vulkan/vk_pipeline_cache.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp b/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp index 804b95989..22bf8cc77 100644 --- a/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp +++ b/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp | |||
| @@ -358,7 +358,7 @@ PipelineCache::PipelineCache(RasterizerVulkan& rasterizer_, const Device& device | |||
| 358 | .has_broken_spirv_subgroup_mask_vector_extract_dynamic = | 358 | .has_broken_spirv_subgroup_mask_vector_extract_dynamic = |
| 359 | driver_id == VK_DRIVER_ID_QUALCOMM_PROPRIETARY, | 359 | driver_id == VK_DRIVER_ID_QUALCOMM_PROPRIETARY, |
| 360 | .has_broken_robust = | 360 | .has_broken_robust = |
| 361 | device.IsNvidia() && device.GetNvidiaArch() <= NvidiaArchitecture::Arch_Maxwell, | 361 | device.IsNvidia() && device.GetNvidiaArch() <= NvidiaArchitecture::Arch_Pascal, |
| 362 | }; | 362 | }; |
| 363 | 363 | ||
| 364 | host_info = Shader::HostTranslateInfo{ | 364 | host_info = Shader::HostTranslateInfo{ |