Formatting fix

This commit is contained in:
wheremyfoodat 2025-07-06 03:04:40 +03:00
parent cf321b1ed8
commit 4b90239ae7

View file

@ -269,7 +269,9 @@ void RendererGL::setupStencilTest(bool stencilEnable) {
return;
}
static constexpr std::array<GLenum, 8> stencilFuncs = {GL_NEVER, GL_ALWAYS, GL_EQUAL, GL_NOTEQUAL, GL_LESS, GL_LEQUAL, GL_GREATER, GL_GEQUAL};
static constexpr std::array<GLenum, 8> stencilFuncs = {
GL_NEVER, GL_ALWAYS, GL_EQUAL, GL_NOTEQUAL, GL_LESS, GL_LEQUAL, GL_GREATER, GL_GEQUAL,
};
gl.enableStencil();
const u32 stencilConfig = regs[PICA::InternalRegs::StencilTest];