summaryrefslogtreecommitdiff
path: root/src/mesa/main/dlist.c
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>1999-09-11 11:31:34 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>1999-09-11 11:31:34 +0000
commit585a68c82b9d87ea094143e91fab722070b3dc73 (patch)
tree67e751f2e54f4bb8cb3f82f7db351a15389ab245 /src/mesa/main/dlist.c
parented3453350a8567184975182abddd7e4008f7518d (diff)
added GL_EXT_get_proc_address
Diffstat (limited to 'src/mesa/main/dlist.c')
-rw-r--r--src/mesa/main/dlist.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mesa/main/dlist.c b/src/mesa/main/dlist.c
index f08b3b7fec..e88f4f8edc 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 */
}