Actually have Dual Source blending work for people. Forgot about this change.

This commit is contained in:
Ryan Houdek
2011-12-11 03:10:03 -06:00
parent 2907ffd72c
commit 1724385c8c
2 changed files with 8 additions and 3 deletions

View File

@ -940,8 +940,8 @@ void Renderer::SetBlendMode(bool forceUpdate)
#ifdef USE_DUAL_SOURCE_BLEND
bool useDstAlpha = !g_ActiveConfig.bDstAlphaPass && bpmem.dstalpha.enable && bpmem.blendmode.alphaupdate
&& bpmem.zcontrol.pixel_format == PIXELFMT_RGBA6_Z24;
bool useDualSource = useDstAlpha && GLEW_ARB_blend_func_extended;
&& bpmem.zcontrol.pixel_format == PIXELFMT_RGBA6_Z24 && g_ActiveConfig.bUseGLSL;
bool useDualSource = useDstAlpha;
#endif
if (changes & 1)