diff options
author | Brian Paul <[email protected]> | 1999-09-11 11:31:34 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 1999-09-11 11:31:34 +0000 |
commit | 585a68c82b9d87ea094143e91fab722070b3dc73 (patch) | |
tree | 67e751f2e54f4bb8cb3f82f7db351a15389ab245 /src/mesa/main/dlist.c | |
parent | ed3453350a8567184975182abddd7e4008f7518d (diff) |
added GL_EXT_get_proc_address
Diffstat (limited to 'src/mesa/main/dlist.c')
-rw-r--r-- | src/mesa/main/dlist.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mesa/main/dlist.c b/src/mesa/main/dlist.c index f08b3b7fecc..e88f4f8edc8 100644 --- a/src/mesa/main/dlist.c +++ b/src/mesa/main/dlist.c @@ -1,4 +1,4 @@ -/* $Id: dlist.c,v 1.3 1999/09/04 14:40:49 keithw Exp $ */ +/* $Id: dlist.c,v 1.4 1999/09/11 11:31:34 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -48,6 +48,7 @@ #include "enable.h" #include "enums.h" #include "eval.h" +#include "extensions.h" #include "feedback.h" #include "fog.h" #include "get.h" @@ -3336,6 +3337,9 @@ void gl_init_dlist_pointers( struct gl_api_table *table ) /* GL_ARB_multitexture */ table->ActiveTexture = save_ActiveTexture; table->ClientActiveTexture = save_ClientActiveTexture; + + /* GL_EXT_get_proc_address */ + table->GetProcAddress = gl_GetProcAddress; /* NOT SAVED */ } |