summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_opengl/gl_state.h
diff options
context:
space:
mode:
authorRodolfo Bogado <rodolfoosvaldobogado@gmail.com>2018-11-14 00:13:16 +0100
committerRodolfo Bogado <rodolfoosvaldobogado@gmail.com>2018-11-17 23:59:32 +0100
commit1881e86c434edfc17f78f68f07443bef1120cda1 (patch)
tree3694a8acdc510e4d17e124b0c4285c99c14ccfd4 /src/video_core/renderer_opengl/gl_state.h
parentMerge pull request #1722 from MysticExile/enable-applictation-crash-report (diff)
downloadyuzu-1881e86c434edfc17f78f68f07443bef1120cda1.tar
yuzu-1881e86c434edfc17f78f68f07443bef1120cda1.tar.gz
yuzu-1881e86c434edfc17f78f68f07443bef1120cda1.tar.bz2
yuzu-1881e86c434edfc17f78f68f07443bef1120cda1.tar.lz
yuzu-1881e86c434edfc17f78f68f07443bef1120cda1.tar.xz
yuzu-1881e86c434edfc17f78f68f07443bef1120cda1.tar.zst
yuzu-1881e86c434edfc17f78f68f07443bef1120cda1.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/renderer_opengl/gl_state.h22
1 files changed, 12 insertions, 10 deletions
diff --git a/src/video_core/renderer_opengl/gl_state.h b/src/video_core/renderer_opengl/gl_state.h
index e5d1baae6..da487461f 100644
--- a/src/video_core/renderer_opengl/gl_state.h
+++ b/src/video_core/renderer_opengl/gl_state.h
@@ -40,6 +40,10 @@ public:
} framebuffer_srgb;
struct {
+ bool enabled; // viewports arrays are only supported when geometry shaders are enabled.
+ } geometry_shaders;
+
+ struct {
bool enabled; // GL_CULL_FACE
GLenum mode; // GL_CULL_FACE_MODE
GLenum front_face; // GL_FRONT_FACE
@@ -150,16 +154,15 @@ public:
GLfloat height;
GLfloat depth_range_near; // GL_DEPTH_RANGE
GLfloat depth_range_far; // GL_DEPTH_RANGE
+ struct {
+ bool enabled; // GL_SCISSOR_TEST
+ GLint x;
+ GLint y;
+ GLsizei width;
+ GLsizei height;
+ } scissor;
};
- std::array<viewport, Tegra::Engines::Maxwell3D::Regs::NumRenderTargets> viewports;
-
- struct {
- bool enabled; // GL_SCISSOR_TEST
- GLint x;
- GLint y;
- GLsizei width;
- GLsizei height;
- } scissor;
+ std::array<viewport, Tegra::Engines::Maxwell3D::Regs::NumViewports> viewports;
struct {
float size; // GL_POINT_SIZE
@@ -214,7 +217,6 @@ private:
void ApplyLogicOp() const;
void ApplyTextures() const;
void ApplySamplers() const;
- void ApplyScissor() const;
};
} // namespace OpenGL