mirror of https://github.com/PCSX2/pcsx2.git
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:
parent
d0b34dc04c
commit
e1d2d4b863
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue