summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>1999-09-11 11:34:21 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>1999-09-11 11:34:21 +0000
commitc3acb9e00f7a170a22dfddeede050c00abc13669 (patch)
treea86a9496b1df21809052acadf0c9b57ac085e295 /include
parente826d4e65de044f41e42b50a32f37f183a6c7af3 (diff)
downloadglu-c3acb9e00f7a170a22dfddeede050c00abc13669.tar.gz
added GLU_EXT_get_proc_address
Diffstat (limited to 'include')
-rw-r--r--include/GL/glu.h21
1 files changed, 20 insertions, 1 deletions
diff --git a/include/GL/glu.h b/include/GL/glu.h
index 1123705..a2dfbfa 100644
--- a/include/GL/glu.h
+++ b/include/GL/glu.h
@@ -1,4 +1,4 @@
-/* $Id: glu.h,v 1.2 1999/09/10 02:08:18 gareth Exp $ */
+/* $Id: glu.h,v 1.3 1999/09/11 11:34:21 brianp Exp $ */
/*
* Mesa 3-D graphics library
@@ -23,6 +23,9 @@
/*
* $Log: glu.h,v $
+ * Revision 1.3 1999/09/11 11:34:21 brianp
+ * added GLU_EXT_get_proc_address
+ *
* Revision 1.2 1999/09/10 02:08:18 gareth
* Added GLU 1.3 tessellation (except winding rule code).
*
@@ -481,6 +484,22 @@ GLUAPI void GLAPIENTRY gluEndPolygon( GLUtesselator *tobj );
GLUAPI const GLubyte* GLAPIENTRY gluGetString( GLenum name );
+
+/*
+ * GLU_EXT_get_proc_address extensions
+ */
+
+#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
+
+#endif /* GL_EXT_get_proc_address */
+
+
+
#if defined(__BEOS__) || defined(__QUICKDRAW__)
#pragma export off
#endif