GS-hw: Fix interaction with hdr and sw colclip on PABE.

PABE will do full sw blend so we need to disable hdr and enable sw colclip instead.
This commit is contained in:
lightningterror 2022-01-20 04:08:57 +01:00
parent d0b34dc04c
commit e1d2d4b863
1 changed files with 7 additions and 0 deletions

View File

@ -660,6 +660,13 @@ void GSRendererNew::EmulateBlending(bool& DATE_PRIMID, bool& DATE_BARRIER)
accumulation_blend = false;
blend_mix = false;
m_conf.ps.pabe = 1;
// HDR mode should be disabled when doing sw blend, swap with sw colclip.
if (m_conf.ps.hdr)
{
m_conf.ps.hdr = 0;
m_conf.ps.colclip = 1;
}
}
else
{