diff options
| author | 2023-06-28 20:10:27 -0300 | |
|---|---|---|
| committer | 2023-06-28 20:10:27 -0300 | |
| commit | ed93cbd4621c6a0c0ffaa272951e1990732df18f (patch) | |
| tree | ea777b163ac1710f6116f9504840075ec827f9c0 /src | |
| parent | Merge pull request #10837 from liamwhite/mali-support (diff) | |
| download | yuzu-ed93cbd4621c6a0c0ffaa272951e1990732df18f.tar.gz yuzu-ed93cbd4621c6a0c0ffaa272951e1990732df18f.tar.xz yuzu-ed93cbd4621c6a0c0ffaa272951e1990732df18f.zip | |
Blacklist EDS3 blending from new AMD drivers
Diffstat (limited to 'src')
| -rw-r--r-- | src/video_core/vulkan_common/vulkan_device.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/video_core/vulkan_common/vulkan_device.cpp b/src/video_core/vulkan_common/vulkan_device.cpp index 70436cf1c..421e71e5a 100644 --- a/src/video_core/vulkan_common/vulkan_device.cpp +++ b/src/video_core/vulkan_common/vulkan_device.cpp | |||
| @@ -528,6 +528,14 @@ Device::Device(VkInstance instance_, vk::PhysicalDevice physical_, VkSurfaceKHR | |||
| 528 | } | 528 | } |
| 529 | 529 | ||
| 530 | sets_per_pool = 64; | 530 | sets_per_pool = 64; |
| 531 | if (extensions.extended_dynamic_state3 && is_amd_driver && | ||
| 532 | properties.properties.driverVersion >= VK_MAKE_API_VERSION(0, 2, 0, 270)) { | ||
| 533 | LOG_WARNING(Render_Vulkan, | ||
| 534 | "AMD drivers after 23.5.2 have broken extendedDynamicState3ColorBlendEquation"); | ||
| 535 | features.extended_dynamic_state3.extendedDynamicState3ColorBlendEnable = false; | ||
| 536 | features.extended_dynamic_state3.extendedDynamicState3ColorBlendEquation = false; | ||
| 537 | dynamic_state3_blending = false; | ||
| 538 | } | ||
| 531 | if (is_amd_driver) { | 539 | if (is_amd_driver) { |
| 532 | // AMD drivers need a higher amount of Sets per Pool in certain circumstances like in XC2. | 540 | // AMD drivers need a higher amount of Sets per Pool in certain circumstances like in XC2. |
| 533 | sets_per_pool = 96; | 541 | sets_per_pool = 96; |