diff options
| author | Jannik Vogel <email@jannikvogel.de> | 2016-05-12 22:57:15 +0200 |
|---|---|---|
| committer | Jannik Vogel <email@jannikvogel.de> | 2016-05-12 22:57:40 +0200 |
| commit | 5864cb7e00d241473b43f8895449f8cebb9e7ec5 (patch) | |
| tree | 64decd59c20ccb7f8c3326758fabe2552f469827 /src/video_core/renderer_opengl/gl_state.h | |
| parent | f6eb62d0628d31efc4f93a0057ebd85bb39bc0fe (diff) | |
OpenGL: Support blend equation
Diffstat (limited to 'src/video_core/renderer_opengl/gl_state.h')
| -rw-r--r-- | src/video_core/renderer_opengl/gl_state.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/video_core/renderer_opengl/gl_state.h b/src/video_core/renderer_opengl/gl_state.h index 24f20e47c..228727054 100644 --- a/src/video_core/renderer_opengl/gl_state.h +++ b/src/video_core/renderer_opengl/gl_state.h @@ -40,6 +40,8 @@ public: struct { bool enabled; // GL_BLEND + GLenum rgb_equation; // GL_BLEND_EQUATION_RGB + GLenum a_equation; // GL_BLEND_EQUATION_ALPHA GLenum src_rgb_func; // GL_BLEND_SRC_RGB GLenum dst_rgb_func; // GL_BLEND_DST_RGB GLenum src_a_func; // GL_BLEND_SRC_ALPHA |
