diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 1999-09-11 11:33:45 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 1999-09-11 11:33:45 +0000 |
commit | 89a42b7e736bd9b0ab090906cab0cd047a6ec12e (patch) | |
tree | 2ef1ae3f412e62d7709375d1be306e2a34b2d66f /include/GL/glx.h | |
parent | 585a68c82b9d87ea094143e91fab722070b3dc73 (diff) |
added GLX_EXT_get_proc_address
Diffstat (limited to 'include/GL/glx.h')
-rw-r--r-- | include/GL/glx.h | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/include/GL/glx.h b/include/GL/glx.h index 4b27880eba..4163fe2857 100644 --- a/include/GL/glx.h +++ b/include/GL/glx.h @@ -1,4 +1,4 @@ -/* $Id: glx.h,v 1.1 1999/08/19 00:55:40 jtg Exp $ */ +/* $Id: glx.h,v 1.2 1999/09/11 11:33:45 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -27,8 +27,11 @@ /* * $Log: glx.h,v $ - * Revision 1.1 1999/08/19 00:55:40 jtg - * Initial revision + * Revision 1.2 1999/09/11 11:33:45 brianp + * added GLX_EXT_get_proc_address + * + * Revision 1.1.1.1 1999/08/19 00:55:40 jtg + * Imported sources * * Revision 3.3 1999/02/14 03:39:09 brianp * new copyright @@ -154,13 +157,12 @@ enum _GLX_CONFIGS { /* * Compile-time extension tests */ -#ifdef MESA #define GLX_EXT_visual_info 1 #define GLX_MESA_pixmap_colormap 1 #define GLX_MESA_release_buffers 1 #define GLX_MESA_copy_sub_buffer 1 #define GLX_SGI_video_sync 1 -#endif +#define GLX_EXT_get_proc_address 1 @@ -227,6 +229,9 @@ extern const char *glXQueryServerString( Display *dpy, int screen, int name ); extern const char *glXGetClientString( Display *dpy, int name ); +/* GLX_EXT_get_proc_address */ +extern GLfunction glXGetProcAddressEXT(const GLubyte *procName); + /* * Mesa GLX Extensions |