diff options
author | bunnei <bunneidev@gmail.com> | 2023-04-02 01:15:57 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2023-06-03 09:05:48 +0200 |
commit | b2aeb50229fe06e93fbdb52e00d18e62173df2a4 (patch) | |
tree | 93504cce0e94ae0ccac9a08ffb6f669fd72eb9d8 /src/video_core/vulkan_common | |
parent | android: Add toggle controls option to input overlay (diff) | |
download | yuzu-b2aeb50229fe06e93fbdb52e00d18e62173df2a4.tar yuzu-b2aeb50229fe06e93fbdb52e00d18e62173df2a4.tar.gz yuzu-b2aeb50229fe06e93fbdb52e00d18e62173df2a4.tar.bz2 yuzu-b2aeb50229fe06e93fbdb52e00d18e62173df2a4.tar.lz yuzu-b2aeb50229fe06e93fbdb52e00d18e62173df2a4.tar.xz yuzu-b2aeb50229fe06e93fbdb52e00d18e62173df2a4.tar.zst yuzu-b2aeb50229fe06e93fbdb52e00d18e62173df2a4.zip |
Diffstat (limited to 'src/video_core/vulkan_common')
-rw-r--r-- | src/video_core/vulkan_common/vulkan_device.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/video_core/vulkan_common/vulkan_device.cpp b/src/video_core/vulkan_common/vulkan_device.cpp index 9e2dee097..8aba29245 100644 --- a/src/video_core/vulkan_common/vulkan_device.cpp +++ b/src/video_core/vulkan_common/vulkan_device.cpp @@ -362,6 +362,13 @@ Device::Device(VkInstance instance_, vk::PhysicalDevice physical_, VkSurfaceKHR CollectToolingInfo(); #ifdef ANDROID + if (is_qualcomm || is_turnip) { + LOG_WARNING(Render_Vulkan, + "Qualcomm and Turnip drivers have broken VK_EXT_custom_border_color"); + extensions.custom_border_color = false; + loaded_extensions.erase(VK_EXT_CUSTOM_BORDER_COLOR_EXTENSION_NAME); + } + if (is_qualcomm) { must_emulate_scaled_formats = true; |