summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar liamwhite2023-07-28 09:29:00 -0400
committerGravatar GitHub2023-07-28 09:29:00 -0400
commitb1730d3c72fc6821027961e558e6770b64c89b0a (patch)
tree560281ea1f477a12f4ad7ea5931512a7f248c22c /src
parentMerge pull request #11128 from german77/discord (diff)
parentRevert "Blacklist EDS3 blending from new AMD drivers" (diff)
downloadyuzu-b1730d3c72fc6821027961e558e6770b64c89b0a.tar.gz
yuzu-b1730d3c72fc6821027961e558e6770b64c89b0a.tar.xz
yuzu-b1730d3c72fc6821027961e558e6770b64c89b0a.zip
Merge pull request #11163 from Moonlacer/revert-10946-amdBlending
Revert "Blacklist EDS3 blending from new AMD drivers"
Diffstat (limited to 'src')
-rw-r--r--src/video_core/vulkan_common/vulkan_device.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/video_core/vulkan_common/vulkan_device.cpp b/src/video_core/vulkan_common/vulkan_device.cpp
index e04852e01..9c6fbb918 100644
--- a/src/video_core/vulkan_common/vulkan_device.cpp
+++ b/src/video_core/vulkan_common/vulkan_device.cpp
@@ -554,14 +554,6 @@ Device::Device(VkInstance instance_, vk::PhysicalDevice physical_, VkSurfaceKHR
554 } 554 }
555 555
556 sets_per_pool = 64; 556 sets_per_pool = 64;
557 if (extensions.extended_dynamic_state3 && is_amd_driver &&
558 properties.properties.driverVersion >= VK_MAKE_API_VERSION(0, 2, 0, 270)) {
559 LOG_WARNING(Render_Vulkan,
560 "AMD drivers after 23.5.2 have broken extendedDynamicState3ColorBlendEquation");
561 features.extended_dynamic_state3.extendedDynamicState3ColorBlendEnable = false;
562 features.extended_dynamic_state3.extendedDynamicState3ColorBlendEquation = false;
563 dynamic_state3_blending = false;
564 }
565 if (is_amd_driver) { 557 if (is_amd_driver) {
566 // AMD drivers need a higher amount of Sets per Pool in certain circumstances like in XC2. 558 // AMD drivers need a higher amount of Sets per Pool in certain circumstances like in XC2.
567 sets_per_pool = 96; 559 sets_per_pool = 96;