diff options
author | Moonlacer <79172044+Moonlacer@users.noreply.github.com> | 2023-07-30 07:21:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-30 07:21:51 +0200 |
commit | 36d48cef50adf1d26fe42dc4859ecae4e82a0acc (patch) | |
tree | a4dc109e207671e780d3228fd97ad99fa9ee4c08 | |
parent | Merge pull request #11155 from liamwhite/memory3 (diff) | |
download | yuzu-36d48cef50adf1d26fe42dc4859ecae4e82a0acc.tar yuzu-36d48cef50adf1d26fe42dc4859ecae4e82a0acc.tar.gz yuzu-36d48cef50adf1d26fe42dc4859ecae4e82a0acc.tar.bz2 yuzu-36d48cef50adf1d26fe42dc4859ecae4e82a0acc.tar.lz yuzu-36d48cef50adf1d26fe42dc4859ecae4e82a0acc.tar.xz yuzu-36d48cef50adf1d26fe42dc4859ecae4e82a0acc.tar.zst yuzu-36d48cef50adf1d26fe42dc4859ecae4e82a0acc.zip |
-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 9c6fbb918..e04852e01 100644 --- a/src/video_core/vulkan_common/vulkan_device.cpp +++ b/src/video_core/vulkan_common/vulkan_device.cpp @@ -554,6 +554,14 @@ Device::Device(VkInstance instance_, vk::PhysicalDevice physical_, VkSurfaceKHR } sets_per_pool = 64; + if (extensions.extended_dynamic_state3 && is_amd_driver && + properties.properties.driverVersion >= VK_MAKE_API_VERSION(0, 2, 0, 270)) { + LOG_WARNING(Render_Vulkan, + "AMD drivers after 23.5.2 have broken extendedDynamicState3ColorBlendEquation"); + features.extended_dynamic_state3.extendedDynamicState3ColorBlendEnable = false; + features.extended_dynamic_state3.extendedDynamicState3ColorBlendEquation = false; + dynamic_state3_blending = false; + } if (is_amd_driver) { // AMD drivers need a higher amount of Sets per Pool in certain circumstances like in XC2. sets_per_pool = 96; |