aboutsummaryrefslogtreecommitdiff
path: root/src/video_core/renderer_opengl/gl_rasterizer.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-08-23 12:04:08 -0400
committerGitHub <noreply@github.com>2018-08-23 12:04:08 -0400
commit3ed0115e36a8b563aa40b32cd645165e12b1ba81 (patch)
tree37c8529b9f2037dfb2072a248e4d257edc6144d7 /src/video_core/renderer_opengl/gl_rasterizer.h
parentc7f2fb2151a5cff3e7626a0ec3cb75c553f41aef (diff)
parenta4ac3bed6cfd8ea8c2f13eacc73412a3f7395d58 (diff)
Merge pull request #1153 from bunnei/stencil-clear
gl_rasterizer: Implement partial color clear, stencil clear, and stencil test.
Diffstat (limited to 'src/video_core/renderer_opengl/gl_rasterizer.h')
-rw-r--r--src/video_core/renderer_opengl/gl_rasterizer.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/video_core/renderer_opengl/gl_rasterizer.h b/src/video_core/renderer_opengl/gl_rasterizer.h
index 59b727de0..531b04046 100644
--- a/src/video_core/renderer_opengl/gl_rasterizer.h
+++ b/src/video_core/renderer_opengl/gl_rasterizer.h
@@ -141,6 +141,9 @@ private:
/// Syncs the depth test state to match the guest state
void SyncDepthTestState();
+ /// Syncs the stencil test state to match the guest state
+ void SyncStencilTestState();
+
/// Syncs the blend state to match the guest state
void SyncBlendState();