summaryrefslogtreecommitdiff
path: root/src/mesa/main/state.h
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2000-05-24 15:04:45 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2000-05-24 15:04:45 +0000
commit5fb84d263b8068467a2429942ecf113a0a4c8a60 (patch)
tree2b92222e07d0e5d34a59428c88c2ac52beea3579 /src/mesa/main/state.h
parentf658ab0e2e9c4f319c0e6e77e7d08031be74f93b (diff)
changed allocation/initialization of API dispatch tables
Diffstat (limited to 'src/mesa/main/state.h')
-rw-r--r--src/mesa/main/state.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/mesa/main/state.h b/src/mesa/main/state.h
index fc0b63cda4..55d7b4c1c4 100644
--- a/src/mesa/main/state.h
+++ b/src/mesa/main/state.h
@@ -1,4 +1,4 @@
-/* $Id: state.h,v 1.1 2000/02/02 19:15:19 brianp Exp $ */
+/* $Id: state.h,v 1.2 2000/05/24 15:04:45 brianp Exp $ */
/*
* Mesa 3-D graphics library
@@ -31,6 +31,13 @@
#include "types.h"
+extern void
+_mesa_init_no_op_table(struct _glapi_table *exec, GLuint tableSize);
+
+extern void
+_mesa_init_exec_table(struct _glapi_table *exec, GLuint tableSize);
+
+
extern void gl_update_state( GLcontext *ctx );