From 0c7da9b81530f399b082677899e9bffc3fcd8e2a Mon Sep 17 00:00:00 2001 From: Subv Date: Fri, 21 Aug 2015 11:05:56 -0500 Subject: [PATCH] HWRasterizer: Implemented stencil ops 6 and 7. --- src/video_core/renderer_opengl/pica_to_gl.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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) { GL_REPLACE, // StencilAction::Replace GL_INCR, // StencilAction::Increment GL_DECR, // StencilAction::Decrement - GL_INVERT // StencilAction::Invert + GL_INVERT, // StencilAction::Invert + GL_INCR_WRAP, // StencilAction::IncrementWrap + GL_DECR_WRAP // StencilAction::DecrementWrap }; // Range check table for input