diff options
| author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2018-09-28 01:31:01 -0300 |
|---|---|---|
| committer | ReinUsesLisp <reinuseslisp@airmail.cc> | 2018-09-28 02:13:29 -0300 |
| commit | e3e51d3ddb45597b843ae710d8d9a33caec6931f (patch) | |
| tree | 63a4125d1102bdec94d1772e11f824d98a0f68c8 /src/video_core/renderer_opengl/gl_state.h | |
| parent | f7da74d18e977aa94d19e7dc6a19e75df48708e4 (diff) | |
video_core: Implement point_size and add point state sync
Diffstat (limited to 'src/video_core/renderer_opengl/gl_state.h')
| -rw-r--r-- | src/video_core/renderer_opengl/gl_state.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/video_core/renderer_opengl/gl_state.h b/src/video_core/renderer_opengl/gl_state.h index 9a93029d8..ac4bb0555 100644 --- a/src/video_core/renderer_opengl/gl_state.h +++ b/src/video_core/renderer_opengl/gl_state.h @@ -141,6 +141,10 @@ public: GLsizei height; } viewport; + struct { + float size; // GL_POINT_SIZE + } point; + std::array<bool, 2> clip_distance; // GL_CLIP_DISTANCE OpenGLState(); |
