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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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