summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBilly Laws <blaws05@gmail.com>2023-02-18 18:44:06 +0100
committerbunnei <bunneidev@gmail.com>2023-06-03 09:05:31 +0200
commit206f1304d61535224d442a155f9cc356bf95baf3 (patch)
tree8ebb80ee9a7ee77895bfd2540633e0a3a459e641
parentDisable VK_EXT_extended_dynamic_state on mali (diff)
downloadyuzu-206f1304d61535224d442a155f9cc356bf95baf3.tar
yuzu-206f1304d61535224d442a155f9cc356bf95baf3.tar.gz
yuzu-206f1304d61535224d442a155f9cc356bf95baf3.tar.bz2
yuzu-206f1304d61535224d442a155f9cc356bf95baf3.tar.lz
yuzu-206f1304d61535224d442a155f9cc356bf95baf3.tar.xz
yuzu-206f1304d61535224d442a155f9cc356bf95baf3.tar.zst
yuzu-206f1304d61535224d442a155f9cc356bf95baf3.zip
-rw-r--r--src/video_core/vulkan_common/vulkan_device.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/video_core/vulkan_common/vulkan_device.cpp b/src/video_core/vulkan_common/vulkan_device.cpp
index 0e182b4a0..01540c10b 100644
--- a/src/video_core/vulkan_common/vulkan_device.cpp
+++ b/src/video_core/vulkan_common/vulkan_device.cpp
@@ -367,6 +367,10 @@ Device::Device(VkInstance instance_, vk::PhysicalDevice physical_, VkSurfaceKHR
extensions.extended_dynamic_state = false;
loaded_extensions.erase(VK_EXT_EXTENDED_DYNAMIC_STATE_EXTENSION_NAME);
+ LOG_WARNING(Render_Vulkan, "Adreno drivers have a slow VK_KHR_push_descriptor implementation");
+ extensions.push_descriptor = false;
+ loaded_extensions.erase(VK_KHR_PUSH_DESCRIPTOR_EXTENSION_NAME);
+
// Patch the driver to enable BCn textures.
const auto major = (properties.properties.driverVersion >> 24) << 2;
const auto minor = (properties.properties.driverVersion >> 12) & 0xFFFU;