summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_opengl/gl_state.h
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2015-08-20 17:11:09 +0200
committerSubv <subv2112@gmail.com>2015-08-20 17:11:09 +0200
commit46f660a789ff02f9cd86600ed82e0936b049b176 (patch)
treeddb2c54c86025ac338549922c7c548844e38a68e /src/video_core/renderer_opengl/gl_state.h
parentGPU/Rasterizer: Corrected the stencil implementation. (diff)
downloadyuzu-46f660a789ff02f9cd86600ed82e0936b049b176.tar
yuzu-46f660a789ff02f9cd86600ed82e0936b049b176.tar.gz
yuzu-46f660a789ff02f9cd86600ed82e0936b049b176.tar.bz2
yuzu-46f660a789ff02f9cd86600ed82e0936b049b176.tar.lz
yuzu-46f660a789ff02f9cd86600ed82e0936b049b176.tar.xz
yuzu-46f660a789ff02f9cd86600ed82e0936b049b176.tar.zst
yuzu-46f660a789ff02f9cd86600ed82e0936b049b176.zip
Diffstat (limited to 'src/video_core/renderer_opengl/gl_state.h')
-rw-r--r--src/video_core/renderer_opengl/gl_state.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/video_core/renderer_opengl/gl_state.h b/src/video_core/renderer_opengl/gl_state.h
index 3e2379021..81e7e0877 100644
--- a/src/video_core/renderer_opengl/gl_state.h
+++ b/src/video_core/renderer_opengl/gl_state.h
@@ -32,6 +32,9 @@ public:
GLint test_ref; // GL_STENCIL_REF
GLuint test_mask; // GL_STENCIL_VALUE_MASK
GLuint write_mask; // GL_STENCIL_WRITEMASK
+ GLenum action_stencil_fail; // GL_STENCIL_FAIL
+ GLenum action_depth_fail; // GL_STENCIL_PASS_DEPTH_FAIL
+ GLenum action_depth_pass; // GL_STENCIL_PASS_DEPTH_PASS
} stencil;
struct {