Browse Source

HWRasterizer: Implemented stencil ops 6 and 7.

nce_cpp
Subv 10 years ago
parent
commit
c0ddc0df52
  1. 4
      src/video_core/renderer_opengl/pica_to_gl.h

4
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

Loading…
Cancel
Save