From eba6c00a8ab2631409301b03549496caab16e9be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Rydg=C3=A5rd?= Date: Sat, 6 Oct 2018 22:57:23 +0200 Subject: [PATCH] Experimental commit trying to solve #10421: Blacklist dual src blending on Adreno/Vulkan --- GPU/Vulkan/GPU_Vulkan.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/GPU/Vulkan/GPU_Vulkan.cpp b/GPU/Vulkan/GPU_Vulkan.cpp index 839cf1328..be0648352 100644 --- a/GPU/Vulkan/GPU_Vulkan.cpp +++ b/GPU/Vulkan/GPU_Vulkan.cpp @@ -217,6 +217,9 @@ void GPU_Vulkan::CheckGPUFeatures() { case VULKAN_VENDOR_INTEL: // Workaround for Intel driver bug. break; + case VULKAN_VENDOR_QUALCOMM: + // Workaround for possible Adreno driver bug, see #10421 + break; case VULKAN_VENDOR_AMD: // See issue #10074, and also #10065 (AMD) and #10109 for the choice of the driver version to check for if (vulkan_->GetPhysicalDeviceProperties(vulkan_->GetCurrentPhysicalDevice()).driverVersion >= 0x00407000)