diff options
Diffstat (limited to 'src')
| -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 | |||
| 362 | CollectToolingInfo(); | 362 | CollectToolingInfo(); |
| 363 | 363 | ||
| 364 | #ifdef ANDROID | 364 | #ifdef ANDROID |
| 365 | if (is_qualcomm || is_turnip) { | ||
| 366 | LOG_WARNING(Render_Vulkan, | ||
| 367 | "Qualcomm and Turnip drivers have broken VK_EXT_custom_border_color"); | ||
| 368 | extensions.custom_border_color = false; | ||
| 369 | loaded_extensions.erase(VK_EXT_CUSTOM_BORDER_COLOR_EXTENSION_NAME); | ||
| 370 | } | ||
| 371 | |||
| 365 | if (is_qualcomm) { | 372 | if (is_qualcomm) { |
| 366 | must_emulate_scaled_formats = true; | 373 | must_emulate_scaled_formats = true; |
| 367 | 374 | ||