mirror of https://github.com/PCSX2/pcsx2.git
GS: Don't clamp scissor to fbw
HW tests indicate this doesn't happen
This commit is contained in:
parent
6279ae63ce
commit
e40a93e389
|
@ -3926,8 +3926,6 @@ bool GSRendererHW::SwPrimRender()
|
||||||
bbox.w++;
|
bbox.w++;
|
||||||
}
|
}
|
||||||
|
|
||||||
scissor.z = std::min<int>(scissor.z, (int)context->FRAME.FBW * 64); // TODO: find a game that overflows and check which one is the right behaviour
|
|
||||||
|
|
||||||
data.scissor = scissor;
|
data.scissor = scissor;
|
||||||
data.bbox = bbox;
|
data.bbox = bbox;
|
||||||
data.frame = g_perfmon.GetFrame();
|
data.frame = g_perfmon.GetFrame();
|
||||||
|
|
|
@ -368,8 +368,6 @@ void GSRendererSW::Draw()
|
||||||
|
|
||||||
GSVector4i r = bbox.rintersect(scissor);
|
GSVector4i r = bbox.rintersect(scissor);
|
||||||
|
|
||||||
scissor.z = std::min<int>(scissor.z, (int)context->FRAME.FBW * 64); // TODO: find a game that overflows and check which one is the right behaviour
|
|
||||||
|
|
||||||
sd->scissor = scissor;
|
sd->scissor = scissor;
|
||||||
sd->bbox = bbox;
|
sd->bbox = bbox;
|
||||||
sd->frame = g_perfmon.GetFrame();
|
sd->frame = g_perfmon.GetFrame();
|
||||||
|
|
Loading…
Reference in New Issue