diff options
| author | JMC47 <JMC4789@gmail.com> | 2020-09-10 09:54:11 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-10 09:54:11 -0400 |
| commit | dcbe9da2794e033bdb7e95fc35cc191d18eb6d2e (patch) | |
| tree | 6e940e026237031a1a7e10ccbe4dcf7e8bb6a21d /Source/Core/VideoBackends | |
| parent | 7cab8b733f18d2bb634a0f72625dba1f9f985e09 (diff) | |
| parent | 69358b21868e3260d0c9273effbf302b130f25fd (diff) | |
Merge pull request #8743 from Techjar/apple-pls-support-standard-api
VideoBackends: Disable GPU Texture Decoding under MoltenVK
Diffstat (limited to 'Source/Core/VideoBackends')
| -rw-r--r-- | Source/Core/VideoBackends/Vulkan/VulkanContext.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/Core/VideoBackends/Vulkan/VulkanContext.cpp b/Source/Core/VideoBackends/Vulkan/VulkanContext.cpp index c0fca1008c..990e38acec 100644 --- a/Source/Core/VideoBackends/Vulkan/VulkanContext.cpp +++ b/Source/Core/VideoBackends/Vulkan/VulkanContext.cpp @@ -346,6 +346,10 @@ void VulkanContext::PopulateBackendInfoFeatures(VideoConfig* config, VkPhysicalD // with depth clamping. Fall back to inverted depth range for these. if (DriverDetails::HasBug(DriverDetails::BUG_BROKEN_REVERSED_DEPTH_RANGE)) config->backend_info.bSupportsReversedDepthRange = false; + + // GPU Texture Decoding is broken under MoltenVK. + if (DriverDetails::HasBug(DriverDetails::BUG_BROKEN_GPU_TEXTURE_DECODING)) + config->backend_info.bSupportsGPUTextureDecoding = false; } void VulkanContext::PopulateBackendInfoMultisampleModes( |
