diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/video_core/renderer_opengl/pica_to_gl.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/video_core/renderer_opengl/pica_to_gl.h b/src/video_core/renderer_opengl/pica_to_gl.h index af5e66e88..12806fad5 100644 --- a/src/video_core/renderer_opengl/pica_to_gl.h +++ b/src/video_core/renderer_opengl/pica_to_gl.h | |||
| @@ -159,7 +159,9 @@ inline GLenum StencilOp(Pica::Regs::StencilAction action) { | |||
| 159 | GL_REPLACE, // StencilAction::Replace | 159 | GL_REPLACE, // StencilAction::Replace |
| 160 | GL_INCR, // StencilAction::Increment | 160 | GL_INCR, // StencilAction::Increment |
| 161 | GL_DECR, // StencilAction::Decrement | 161 | GL_DECR, // StencilAction::Decrement |
| 162 | GL_INVERT // StencilAction::Invert | 162 | GL_INVERT, // StencilAction::Invert |
| 163 | GL_INCR_WRAP, // StencilAction::IncrementWrap | ||
| 164 | GL_DECR_WRAP // StencilAction::DecrementWrap | ||
| 163 | }; | 165 | }; |
| 164 | 166 | ||
| 165 | // Range check table for input | 167 | // Range check table for input |