diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 1999-12-11 09:54:33 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 1999-12-11 09:54:33 +0000 |
commit | ff06c837b5c743d2fe6cec4ca3474245861b699c (patch) | |
tree | bd2e56eaab8ece4495d0d950484a17ea0d18bb87 /include/GL | |
parent | 97febca0f3b589fb8c245640ac4a5dd45633784c (diff) |
added GLX_ARB_get_proc_address
Diffstat (limited to 'include/GL')
-rw-r--r-- | include/GL/glx.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/include/GL/glx.h b/include/GL/glx.h index d6389453cd..b9c494697e 100644 --- a/include/GL/glx.h +++ b/include/GL/glx.h @@ -1,4 +1,4 @@ -/* $Id: glx.h,v 1.9 1999/11/24 17:04:46 brianp Exp $ */ +/* $Id: glx.h,v 1.10 1999/12/11 09:54:33 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -185,12 +185,12 @@ extern "C" { * Compile-time extension tests */ #define GLX_EXT_visual_info 1 -#define GLX_EXT_get_proc_address 1 #define GLX_MESA_pixmap_colormap 1 #define GLX_MESA_release_buffers 1 #define GLX_MESA_copy_sub_buffer 1 #define GLX_MESA_set_3dfx_mode 1 #define GLX_SGI_video_sync 1 +#define GLX_ARB_get_proc_address 1 @@ -339,6 +339,10 @@ extern int glXWaitVideoSyncSGI(int divisor, int remainder, unsigned int *count); +/* GLX_ARB_get_proc_address */ +extern void (*glXGetProcAddressARB(const GLubyte *procName))(); + + #ifdef __cplusplus } |