summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_opengl/gl_state.h
diff options
context:
space:
mode:
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, 1 insertions, 5 deletions
diff --git a/src/video_core/renderer_opengl/gl_state.h b/src/video_core/renderer_opengl/gl_state.h
index 3d0f6747f..2860a2c82 100644
--- a/src/video_core/renderer_opengl/gl_state.h
+++ b/src/video_core/renderer_opengl/gl_state.h
@@ -195,6 +195,7 @@ public:
s_rgb_used = false;
}
+ void DefaultViewports();
/// Apply this state as the current OpenGL state
void Apply();
@@ -245,10 +246,6 @@ public:
dirty.stencil_state = is_dirty;
}
- void MarkDirtyViewportState(const bool is_dirty) {
- dirty.viewport_state = is_dirty;
- }
-
void MarkDirtyPolygonOffset(const bool is_dirty) {
dirty.polygon_offset = is_dirty;
}
@@ -260,7 +257,6 @@ public:
void AllDirty() {
dirty.blend_state = true;
dirty.stencil_state = true;
- dirty.viewport_state = true;
dirty.polygon_offset = true;
dirty.color_mask = true;
}