summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_opengl/gl_state.h
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2019-12-26 05:50:38 +0100
committerReinUsesLisp <reinuseslisp@airmail.cc>2020-02-28 21:25:18 +0100
commitd3e433a38048c5d32c0929446008586e975ccd0e (patch)
tree06ac0719687b366f6c82b3c78d8df99b7bf33a69 /src/video_core/renderer_opengl/gl_state.h
parentgl_state: Remove scissor test tracking (diff)
downloadyuzu-d3e433a38048c5d32c0929446008586e975ccd0e.tar
yuzu-d3e433a38048c5d32c0929446008586e975ccd0e.tar.gz
yuzu-d3e433a38048c5d32c0929446008586e975ccd0e.tar.bz2
yuzu-d3e433a38048c5d32c0929446008586e975ccd0e.tar.lz
yuzu-d3e433a38048c5d32c0929446008586e975ccd0e.tar.xz
yuzu-d3e433a38048c5d32c0929446008586e975ccd0e.tar.zst
yuzu-d3e433a38048c5d32c0929446008586e975ccd0e.zip
Diffstat (limited to 'src/video_core/renderer_opengl/gl_state.h')
-rw-r--r--src/video_core/renderer_opengl/gl_state.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/video_core/renderer_opengl/gl_state.h b/src/video_core/renderer_opengl/gl_state.h
index 44eb35dd5..b4c957c0d 100644
--- a/src/video_core/renderer_opengl/gl_state.h
+++ b/src/video_core/renderer_opengl/gl_state.h
@@ -56,16 +56,6 @@ public:
GLuint program_pipeline = 0; // GL_PROGRAM_PIPELINE_BINDING
} draw;
- struct Viewport {
- GLint x = 0;
- GLint y = 0;
- GLint width = 0;
- GLint height = 0;
- GLfloat depth_range_near = 0.0f; // GL_DEPTH_RANGE
- GLfloat depth_range_far = 1.0f; // GL_DEPTH_RANGE
- };
- std::array<Viewport, Tegra::Engines::Maxwell3D::Regs::NumViewports> viewports;
-
std::array<bool, 8> clip_distance = {}; // GL_CLIP_DISTANCE
struct {
@@ -82,7 +72,6 @@ public:
return cur_state;
}
- void SetDefaultViewports();
/// Apply this state as the current OpenGL state
void Apply();
@@ -92,7 +81,6 @@ public:
void ApplyClipDistances();
void ApplyRasterizerDiscard();
void ApplyStencilTest();
- void ApplyViewport();
void ApplyTargetBlending(std::size_t target, bool force);
void ApplyGlobalBlending();
void ApplyBlending();