diff options
author | Brian Paul <[email protected]> | 2006-08-15 14:28:03 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2006-08-15 14:28:03 +0000 |
commit | 37b5b01217ab725a91c9dbb600dfe9e21c34151b (patch) | |
tree | 08b53f87872b97a686d01661f55ec477e69d7634 /include | |
parent | 061a3fe34051327fba418cc99599ecff0016ee15 (diff) |
s/GLvoid/void/ to fix gcc 4.2 issue (bug 7875)
Diffstat (limited to 'include')
-rw-r--r-- | include/GL/gl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/GL/gl.h b/include/GL/gl.h index 9dfec325f54..25f90e30860 100644 --- a/include/GL/gl.h +++ b/include/GL/gl.h @@ -2161,7 +2161,7 @@ typedef void (APIENTRYP PFNGLMULTITEXCOORD4SVARBPROC) (GLenum target, const GLsh #define GL_DEBUG_PRINT_MESA 0x875A #define GL_DEBUG_ASSERT_MESA 0x875B -GLAPI GLhandleARB APIENTRY glCreateDebugObjectMESA (GLvoid); +GLAPI GLhandleARB APIENTRY glCreateDebugObjectMESA (void); GLAPI GLvoid APIENTRY glClearDebugLogMESA (GLhandleARB obj, GLenum logType, GLenum shaderType); GLAPI GLvoid APIENTRY glGetDebugLogMESA (GLhandleARB obj, GLenum logType, GLenum shaderType, GLsizei maxLength, GLsizei *length, GLcharARB *debugLog); |