diff options
author | Ian Romanick <idr@us.ibm.com> | 2004-01-27 21:40:35 +0000 |
---|---|---|
committer | Ian Romanick <idr@us.ibm.com> | 2004-01-27 21:40:35 +0000 |
commit | 74cf25b0816f7b8e00ed9cbe2e028e943a92170f (patch) | |
tree | 61560c8b656a87e4f3419a3d0bce983b33f9459c /include/GL | |
parent | c93105eb9e2499efb237fd89dba0cebd48f18375 (diff) |
Missed this commit as part of the addition of
GL_EXT_blend_equation_separate / GL_ATI_blend_equation_separate.
Diffstat (limited to 'include/GL')
-rw-r--r-- | include/GL/gl.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/GL/gl.h b/include/GL/gl.h index 5be9bb4f84..b1cbb0e530 100644 --- a/include/GL/gl.h +++ b/include/GL/gl.h @@ -2212,6 +2212,17 @@ glGetProgramRegisterfvMESA(GLenum target, GLsizei len, const GLubyte *name, #endif /* GL_MESA_program_debug */ +#ifndef GL_ATI_blend_equation_separate +#define GL_ATI_blend_equation_separate 1 + +#define GL_ALPHA_BLEND_EQUATION_ATI 0x883D + +GLAPI void GLAPIENTRY glBlendEquationSeparateATI( GLenum modeRGB, GLenum modeA ); +typedef void (APIENTRYP PFNGLBLENDEQUATIONSEPARATEATIPROC) (GLenum modeRGB, GLenum modeA); + +#endif /* GL_ATI_blend_equation_separate */ + + /********************************************************************** * Begin system-specific stuff */ |