summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>1999-09-16 16:54:22 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>1999-09-16 16:54:22 +0000
commit26aef1949ee8701aee0d8066336c954474f3d114 (patch)
tree81b8cb2b3912e25418f55a9330c1b901d07dccf8 /include
parent005ac16be162f94d620bccab5531ef90293c561f (diff)
downloadglu-26aef1949ee8701aee0d8066336c954474f3d114.tar.gz
GLU_EXT_get_proc_address clean-up
Diffstat (limited to 'include')
-rw-r--r--include/GL/glu.h19
1 files changed, 10 insertions, 9 deletions
diff --git a/include/GL/glu.h b/include/GL/glu.h
index b7d94ba..3ed121f 100644
--- a/include/GL/glu.h
+++ b/include/GL/glu.h
@@ -1,4 +1,4 @@
-/* $Id: glu.h,v 1.5 1999/09/14 03:23:08 gareth Exp $ */
+/* $Id: glu.h,v 1.6 1999/09/16 16:54:22 brianp Exp $ */
/*
* Mesa 3-D graphics library
@@ -23,6 +23,9 @@
/*
* $Log: glu.h,v $
+ * Revision 1.6 1999/09/16 16:54:22 brianp
+ * GLU_EXT_get_proc_address clean-up
+ *
* Revision 1.5 1999/09/14 03:23:08 gareth
* Fixed GLUtriangulatorObj again (spelling).
*
@@ -493,17 +496,15 @@ GLUAPI const GLubyte* GLAPIENTRY gluGetString( GLenum name );
/*
- * GLU_EXT_get_proc_address extensions
+ * GLU_EXT_get_proc_address extension
+ */
+/*
+ * WARNING: this extension is not finalized yet! Do not release code
+ * which uses this extension yet! It may change!
*/
-
-#ifdef GL_EXT_get_proc_address
-/* This extension requires GL_EXT_get_proc_address */
-
-GLUAPI GLfunction GLAPIENTRY gluGetProcAddressEXT( const GLubyte *procName );
-
#define GLU_EXT_get_proc_address 1
+GLUAPI void GLAPIENTRY (*gluGetProcAddressEXT(const GLubyte *procName))();
-#endif /* GL_EXT_get_proc_address */