OpenGLDevice: Persist GL_SCISSOR_TEST enabled

This commit is contained in:
Stenzek
2023-09-23 13:16:03 +10:00
parent 8dc9c225d7
commit c986d0ea78
2 changed files with 3 additions and 3 deletions

View File

@ -333,6 +333,9 @@ bool OpenGLDevice::CreateDevice(const std::string_view& adapter, bool threaded_p
if (!CreateBuffers(buggy_pbo))
return false;
// Scissor test should always be enabled.
glEnable(GL_SCISSOR_TEST);
return true;
}