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