summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2000-01-18 17:38:40 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2000-01-18 17:38:40 +0000
commitffebe69866b0ca99a135ee778ad461bc52b00230 (patch)
tree07034e09ba4122119b171deb69edc776574d12f9 /src
parent5666c636936be761e7928566e82b5af2e95a11ce (diff)
generic_noop() now returns 0
Diffstat (limited to 'src')
-rw-r--r--src/mesa/main/dispatch.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/mesa/main/dispatch.c b/src/mesa/main/dispatch.c
index 870823a8a6..5f71d94309 100644
--- a/src/mesa/main/dispatch.c
+++ b/src/mesa/main/dispatch.c
@@ -1,4 +1,4 @@
-/* $Id: dispatch.c,v 1.9 2000/01/13 00:31:10 brianp Exp $ */
+/* $Id: dispatch.c,v 1.10 2000/01/18 17:38:40 brianp Exp $ */
/*
* Mesa 3-D graphics library
@@ -75,17 +75,18 @@
-static void
+static int
generic_noop(void)
{
#ifdef DEBUG
gl_problem(NULL, "undefined function dispatch");
#endif
+ return 0;
}
void
-_mesa_init_no_op_table(struct _glapi_table *exec)
+_mesa_init_no_op_table(struct _glapi_table *table)
{
/* Check to be sure the dispatcher's table is at least as big as Mesa's. */
const GLuint size = sizeof(struct _glapi_table) / sizeof(void *);
@@ -94,7 +95,7 @@ _mesa_init_no_op_table(struct _glapi_table *exec)
{
const GLuint n = _glapi_get_dispatch_table_size();
GLuint i;
- void **dispatch = (void **) exec;
+ void **dispatch = (void **) table;
for (i = 0; i < n; i++) {
dispatch[i] = (void *) generic_noop;
}