diff options
| author | CrossVR <jules.blok@gmail.com> | 2025-07-27 05:43:17 +0900 |
|---|---|---|
| committer | CrossVR <jules.blok@gmail.com> | 2025-07-29 08:42:22 +0900 |
| commit | 59e9267e3d33cb29f06d8a4f583e7633360ef259 (patch) | |
| tree | ed456b7b1e4a1b036e6cc8fd4f041a768b2152dc /Source/Core/VideoBackends | |
| parent | 4d0cf1315e599bbeed67ef9eca993874869e3e85 (diff) | |
DriverDetails: Disable depth_clamp_control on AMD official drivers
Diffstat (limited to 'Source/Core/VideoBackends')
| -rw-r--r-- | Source/Core/VideoBackends/Vulkan/VulkanContext.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoBackends/Vulkan/VulkanContext.cpp b/Source/Core/VideoBackends/Vulkan/VulkanContext.cpp index 60580aff40..93cd5a969b 100644 --- a/Source/Core/VideoBackends/Vulkan/VulkanContext.cpp +++ b/Source/Core/VideoBackends/Vulkan/VulkanContext.cpp @@ -664,7 +664,7 @@ bool VulkanContext::SelectDeviceExtensions(bool enable_surface) AddExtension(VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME, false); AddExtension(VK_EXT_MEMORY_BUDGET_EXTENSION_NAME, false); - if (!DriverDetails::HasBug(DriverDetails::BUG_BROKEN_D32F_CLEAR)) + if (!DriverDetails::HasBug(DriverDetails::BUG_BROKEN_DEPTH_CLAMP_CONTROL)) { // Unrestricted depth range is one of the few extensions that changes the behavior // of Vulkan just by being enabled, so we rely on lazy evaluation to ensure it is |
