mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
ogl: ceil viewport, rounding isn't supported on vs and this is more like the old behavior
This commit is contained in:
@ -1134,7 +1134,7 @@ void Renderer::UpdateViewport(Matrix44& vpCorrection)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
glViewport(round(X), round(Y), round(Width), round(Height));
|
glViewport(ceil(X), ceil(Y), ceil(Width), ceil(Height));
|
||||||
}
|
}
|
||||||
glDepthRangef(GLNear, GLFar);
|
glDepthRangef(GLNear, GLFar);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user