Skip to content

Commit

Permalink
OpenGLDevice: Don't force-disable dual source blending
Browse files Browse the repository at this point in the history
  • Loading branch information
stenzek committed Nov 4, 2023
1 parent 0e2c667 commit 1717110
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/util/opengl_device.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 1717110

Please sign in to comment.