diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 1999-09-11 11:26:34 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 1999-09-11 11:26:34 +0000 |
commit | ed3453350a8567184975182abddd7e4008f7518d (patch) | |
tree | 411e3ef088205ab2c09cb3d7693704b70893e4b2 /include/GL | |
parent | 6c8657fa5f64044783dc22c20e7b89f188c877eb (diff) |
added GL_EXT_get_proc_address
Diffstat (limited to 'include/GL')
-rw-r--r-- | include/GL/gl.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/include/GL/gl.h b/include/GL/gl.h index 58b51d5abf..23aa596d37 100644 --- a/include/GL/gl.h +++ b/include/GL/gl.h @@ -1,4 +1,4 @@ -/* $Id: gl.h,v 1.1 1999/08/19 00:55:40 jtg Exp $ */ +/* $Id: gl.h,v 1.2 1999/09/11 11:26:34 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -1859,7 +1859,7 @@ GLAPI void GLAPIENTRY glPopName( void ); /* - * 1.0 Extensions + * Extensions */ /* GL_EXT_blend_minmax */ @@ -2187,6 +2187,12 @@ GLAPI void GLAPIENTRY glLockArraysEXT( GLint first, GLsizei count ); GLAPI void GLAPIENTRY glUnlockArraysEXT( void ); +/* GL_EXT_get_proc_address */ +typedef void (*GLfunction)(); +GLAPI GLfunction GLAPIENTRY glGetProcAddressEXT( const GLubyte *procName ); + + + #if defined(__BEOS__) || defined(__QUICKDRAW__) #pragma export off #endif @@ -2218,6 +2224,7 @@ GLAPI void GLAPIENTRY glUnlockArraysEXT( void ); #define GL_PGI_misc_hints 1 #define GL_EXT_compiled_vertex_array 1 #define GL_EXT_clip_volume_hint 1 +#define GL_EXT_get_proc_address 1 #ifdef macintosh |