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

@ -595,9 +595,6 @@ ALWAYS_INLINE static void ApplyRasterizationState(const GPUPipeline::Rasterizati
glEnable(GL_CULL_FACE);
glCullFace((rs.cull_mode == GPUPipeline::CullMode::Front) ? GL_FRONT : GL_BACK);
}
// TODO: always enabled, should be done at init time
glEnable(GL_SCISSOR_TEST);
}
ALWAYS_INLINE static void ApplyDepthState(const GPUPipeline::DepthState& ds)