From 17171101cf621735cfeaf4ae97f1eb5322d3b611 Mon Sep 17 00:00:00 2001 From: Stenzek Date: Wed, 1 Nov 2023 01:32:42 +1000 Subject: [PATCH] OpenGLDevice: Don't force-disable dual source blending --- src/util/opengl_device.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/util/opengl_device.cpp b/src/util/opengl_device.cpp index 0784779dd..4dd968df0 100644 --- a/src/util/opengl_device.cpp +++ b/src/util/opengl_device.cpp @@ -427,7 +427,6 @@ bool OpenGLDevice::CheckFeatures(bool* buggy_pbo) m_features.dual_source_blend = (max_dual_source_draw_buffers > 0) && (GLAD_GL_VERSION_3_3 || GLAD_GL_ARB_blend_func_extended || GLAD_GL_EXT_blend_func_extended); - m_features.dual_source_blend = false; #ifdef __APPLE__ // Partial texture buffer uploads appear to be broken in macOS's OpenGL driver.