aboutsummaryrefslogtreecommitdiff
path: root/src/video_core/renderer_opengl/gl_state.h
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2019-12-25 21:00:38 -0300
committerReinUsesLisp <reinuseslisp@airmail.cc>2020-02-28 16:51:45 -0300
commit0f343d32c41efc411fddb1a66a9f11fb68eebf06 (patch)
tree15187a755644c036af4b8463a0ed18b935b9e2f0 /src/video_core/renderer_opengl/gl_state.h
parent42708c762edee4f5bf2fa1d15a4ab764525fb044 (diff)
gl_state: Remove primitive restart tracking
Diffstat (limited to 'src/video_core/renderer_opengl/gl_state.h')
-rw-r--r--src/video_core/renderer_opengl/gl_state.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/video_core/renderer_opengl/gl_state.h b/src/video_core/renderer_opengl/gl_state.h
index 958af5771..938222d38 100644
--- a/src/video_core/renderer_opengl/gl_state.h
+++ b/src/video_core/renderer_opengl/gl_state.h
@@ -37,11 +37,6 @@ public:
GLenum test_func = GL_LESS; // GL_DEPTH_FUNC
} depth;
- struct {
- bool enabled = false;
- GLuint index = 0;
- } primitive_restart; // GL_PRIMITIVE_RESTART
-
bool rasterizer_discard = false; // GL_RASTERIZER_DISCARD
struct ColorMask {
@@ -143,7 +138,6 @@ public:
void ApplyRasterizerDiscard();
void ApplyColorMask();
void ApplyDepth();
- void ApplyPrimitiveRestart();
void ApplyStencilTest();
void ApplyViewport();
void ApplyTargetBlending(std::size_t target, bool force);