GLES: Properly stub out logic ops

This commit is contained in:
wheremyfoodat
2024-12-29 14:28:04 +02:00
committed by GitHub
parent bde51b6d27
commit 59f51f7d0c

View File

@@ -1263,5 +1263,7 @@ void RendererGL::setupGLES() {
} }
// Stub out logic operations so that calling them doesn't crash the emulator // Stub out logic operations so that calling them doesn't crash the emulator
glLogicOp = [](GLenum) {}; if (!glLogicOp) {
} glLogicOp = [](GLenum) {};
}
}