Remove some warnings in ProgramShadercache, Was using wrong variable for checking dual source blending.
This commit is contained in:
parent
4c1fef8f98
commit
4cd748bbec
|
@ -48,7 +48,7 @@ public:
|
|||
ShaderUID uid;
|
||||
GLint UniformLocations[NUM_UNIFORMS];
|
||||
|
||||
PCacheEntry() : prog_id(0), vsid(0), psid(0), binary(NULL), binary_size(0) { }
|
||||
PCacheEntry() : prog_id(0), binary(NULL), binary_size(0), vsid(0), psid(0) { }
|
||||
|
||||
~PCacheEntry()
|
||||
{
|
||||
|
|
|
@ -957,8 +957,8 @@ void Renderer::SetBlendMode(bool forceUpdate)
|
|||
u32 changes = forceUpdate ? 0xFFFFFFFF : newval ^ s_blendMode;
|
||||
|
||||
bool useDstAlpha = !g_ActiveConfig.bDstAlphaPass && bpmem.dstalpha.enable && bpmem.blendmode.alphaupdate
|
||||
&& bpmem.zcontrol.pixel_format == PIXELFMT_RGBA6_Z24 && g_ActiveConfig.bUseGLSL;
|
||||
bool useDualSource = useDstAlpha;
|
||||
&& bpmem.zcontrol.pixel_format == PIXELFMT_RGBA6_Z24;
|
||||
bool useDualSource = g_ActiveConfig.bUseGLSL && g_ActiveConfig.backend_info.bSupportsGLSLBind;
|
||||
|
||||
if (changes & 1)
|
||||
// blend enable change
|
||||
|
|
|
@ -170,7 +170,7 @@ void VertexManager::vFlush()
|
|||
&& bpmem.zcontrol.pixel_format == PIXELFMT_RGBA6_Z24;
|
||||
|
||||
// Makes sure we can actually do Dual source blending
|
||||
bool dualSourcePossible = g_ActiveConfig.bUseGLSL && g_ActiveConfig.backend_info.bSupportsGLSLATTRBind;
|
||||
bool dualSourcePossible = g_ActiveConfig.bUseGLSL && g_ActiveConfig.backend_info.bSupportsGLSLBind;
|
||||
|
||||
// finally bind
|
||||
FRAGMENTSHADER* ps;
|
||||
|
|
Loading…
Reference in New Issue