Scissor test fix (#563)
* Handle negative viewport coordinates * Disable scissor before framebuffer blit * Comment to explain scissor disable will be reenabled if needed * Comma and spelling mistake
This commit is contained in:
parent
d191b256a6
commit
f5b4f6ccc4
3 changed files with 20 additions and 14 deletions
|
@ -367,6 +367,9 @@ namespace Ryujinx.Graphics.Gal.OpenGL
|
|||
|
||||
GL.Disable(EnableCap.FramebufferSrgb);
|
||||
|
||||
// Will be re-enabled if needed while binding, called before any game GL calls
|
||||
GL.Disable(EnableCap.ScissorTest);
|
||||
|
||||
GL.BlitFramebuffer(
|
||||
SrcX0,
|
||||
SrcY0,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue