From 585a68c82b9d87ea094143e91fab722070b3dc73 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Sat, 11 Sep 1999 11:31:34 +0000 Subject: added GL_EXT_get_proc_address --- src/mesa/main/dlist.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/mesa/main/dlist.c') 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 */ } -- cgit v1.2.3