gsdx-ogl: Comment out pabe bit, not yet used.

This commit is contained in:
lightningterror 2019-07-09 20:40:02 +02:00
parent 6f09cd9b81
commit 8e3b34bce6
3 changed files with 4 additions and 4 deletions

View File

@ -982,7 +982,7 @@ GLuint GSDeviceOGL::CompilePS(PSSelector sel)
+ format("#define PS_WRITE_RG %d\n", sel.write_rg)
+ format("#define PS_FBMASK %d\n", sel.fbmask)
+ format("#define PS_HDR %d\n", sel.hdr)
+ format("#define PS_PABE %d\n", sel.pabe);
// + format("#define PS_PABE %d\n", sel.pabe)
;
if (GLLoader::buggy_sso_dual_src)

View File

@ -280,9 +280,9 @@ public:
uint32 blend_c:2;
uint32 blend_d:2;
uint32 clr1:1; // useful?
uint32 pabe:1;
uint32 hdr:1;
uint32 colclip:1;
// uint32 pabe:1;
// Others ways to fetch the texture
uint32 channel:3;
@ -297,7 +297,7 @@ public:
uint32 point_sampler:1;
uint32 invalid_tex0:1; // Lupin the 3rd
uint32 _free2:9;
uint32 _free2:10;
};
uint64 key;

View File

@ -468,7 +468,7 @@ void GSRendererOGL::EmulateBlending(bool DATE_GL42)
{
GL_INS("!!! ENV PABE not supported !!!");
if (m_sw_blending >= ACC_BLEND_CCLIP_DALPHA) {
m_ps_sel.pabe = 1;
// m_ps_sel.pabe = 1;
m_require_full_barrier |= (ALPHA.C == 1);
sw_blending = true;
}