diff options
author | Brian Paul <[email protected]> | 1999-09-11 11:33:45 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 1999-09-11 11:33:45 +0000 |
commit | 89a42b7e736bd9b0ab090906cab0cd047a6ec12e (patch) | |
tree | 2ef1ae3f412e62d7709375d1be306e2a34b2d66f /src/mesa/drivers/x11/glxapi.c | |
parent | 585a68c82b9d87ea094143e91fab722070b3dc73 (diff) |
added GLX_EXT_get_proc_address
Diffstat (limited to 'src/mesa/drivers/x11/glxapi.c')
-rw-r--r-- | src/mesa/drivers/x11/glxapi.c | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/src/mesa/drivers/x11/glxapi.c b/src/mesa/drivers/x11/glxapi.c index b65bada72b9..23b23b90cb4 100644 --- a/src/mesa/drivers/x11/glxapi.c +++ b/src/mesa/drivers/x11/glxapi.c @@ -1,4 +1,4 @@ -/* $Id: glxapi.c,v 1.1 1999/08/19 00:55:42 jtg Exp $ */ +/* $Id: glxapi.c,v 1.2 1999/09/11 11:35:11 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -403,3 +403,14 @@ int glXWaitVideoSyncSGI(int divisor, int remainder, unsigned int *count) } #endif + + +#ifdef GLX_EXT_get_proc_address +GLfunction glXGetProcAddressEXT( const GLubyte *procName ) +{ +#ifdef REALGLX + return 0; /* XXX todo */ +#endif + return Fake_glXGetProcAddress( procName ); +} +#endif |