From 432fbe30d1513a4cefd18057ec45a65732880893 Mon Sep 17 00:00:00 2001 From: Henrik Rydgard Date: Sat, 5 Mar 2016 01:00:59 +0100 Subject: [PATCH] Vulkan: We're doing dual src blending wrong (GLSL part, not sure how to do it right) so disable it. --- Common/Vulkan/VulkanContext.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Common/Vulkan/VulkanContext.cpp b/Common/Vulkan/VulkanContext.cpp index a6cc02c50e..378958a1b8 100644 --- a/Common/Vulkan/VulkanContext.cpp +++ b/Common/Vulkan/VulkanContext.cpp @@ -613,7 +613,7 @@ VkResult VulkanContext::CreateDevice(int physical_device) { // Enable a few safe ones if they are available. if (featuresAvailable_.dualSrcBlend) { - featuresEnabled_.dualSrcBlend = true; + // featuresEnabled_.dualSrcBlend = true; } if (featuresAvailable_.largePoints) { featuresEnabled_.largePoints = true;