summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2023-06-29 16:01:11 +0200
committerGitHub <noreply@github.com>2023-06-29 16:01:11 +0200
commit7de778ad39c761eddf8a40094dae61aa125b5c38 (patch)
tree6b33e73d1049caf99e434a676a4c8d5bb78466d9
parentMerge pull request #10945 from t895/android-14 (diff)
parentBlacklist EDS3 blending from new AMD drivers (diff)
downloadyuzu-7de778ad39c761eddf8a40094dae61aa125b5c38.tar
yuzu-7de778ad39c761eddf8a40094dae61aa125b5c38.tar.gz
yuzu-7de778ad39c761eddf8a40094dae61aa125b5c38.tar.bz2
yuzu-7de778ad39c761eddf8a40094dae61aa125b5c38.tar.lz
yuzu-7de778ad39c761eddf8a40094dae61aa125b5c38.tar.xz
yuzu-7de778ad39c761eddf8a40094dae61aa125b5c38.tar.zst
yuzu-7de778ad39c761eddf8a40094dae61aa125b5c38.zip
-rw-r--r--src/video_core/vulkan_common/vulkan_device.cpp8
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
}
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;