summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Subv2015-08-21 11:05:56 -0500
committerGravatar Subv2015-08-21 11:05:56 -0500
commit0c7da9b81530f399b082677899e9bffc3fcd8e2a (patch)
tree93b253cfa46402a96d639bed213bfb7bb069a18f
parentSWRasterizer: Implemented stencil ops 6 and 7. (diff)
downloadyuzu-0c7da9b81530f399b082677899e9bffc3fcd8e2a.tar.gz
yuzu-0c7da9b81530f399b082677899e9bffc3fcd8e2a.tar.xz
yuzu-0c7da9b81530f399b082677899e9bffc3fcd8e2a.zip
HWRasterizer: Implemented stencil ops 6 and 7.
-rw-r--r--src/video_core/renderer_opengl/pica_to_gl.h4
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