GS: Partial revert of #5061

This commit is contained in:
refractionpcsx2 2021-11-24 00:33:15 +00:00
parent 03f1617ff5
commit 7ac045b5e2
2 changed files with 4 additions and 4 deletions

View File

@ -446,8 +446,8 @@ void GSRendererDX11::EmulateBlending()
// it requires coverage sample so it's safer to turn it off instead.
const bool aa1 = PRIM->AA1 && (m_vt.m_primclass == GS_LINE_CLASS);
// No blending so early exit
if (aa1 || !(PRIM->ABE || m_env.PABE.PABE))
// No blending or coverage anti-aliasing so early exit
if (!(PRIM->ABE || m_env.PABE.PABE || aa1))
return;
m_om_bsel.abe = 1;

View File

@ -468,8 +468,8 @@ void GSRendererOGL::EmulateBlending(bool& DATE_GL42, bool& DATE_GL45)
// it requires coverage sample so it's safer to turn it off instead.
const bool aa1 = PRIM->AA1 && (m_vt.m_primclass == GS_LINE_CLASS);
// No blending so early exit
if (aa1 || !(PRIM->ABE || m_env.PABE.PABE))
// No blending or coverage anti-aliasing so early exit
if (!(PRIM->ABE || m_env.PABE.PABE || aa1))
{
dev->OMSetBlendState();
return;