diff options
author | Brian Paul <[email protected]> | 2000-05-24 15:04:45 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2000-05-24 15:04:45 +0000 |
commit | 5fb84d263b8068467a2429942ecf113a0a4c8a60 (patch) | |
tree | 2b92222e07d0e5d34a59428c88c2ac52beea3579 /src/mesa/main/dlist.c | |
parent | f658ab0e2e9c4f319c0e6e77e7d08031be74f93b (diff) |
changed allocation/initialization of API dispatch tables
Diffstat (limited to 'src/mesa/main/dlist.c')
-rw-r--r-- | src/mesa/main/dlist.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/main/dlist.c b/src/mesa/main/dlist.c index 9d80cb5004e..2f291a6bdee 100644 --- a/src/mesa/main/dlist.c +++ b/src/mesa/main/dlist.c @@ -1,4 +1,4 @@ -/* $Id: dlist.c,v 1.40 2000/05/23 20:10:49 brianp Exp $ */ +/* $Id: dlist.c,v 1.41 2000/05/24 15:04:45 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -4723,13 +4723,13 @@ _mesa_ListBase( GLuint base ) /* - * Assign all the pointers in 'table' to point to Mesa's display list + * Assign all the pointers in <table> to point to Mesa's display list * building functions. */ void -_mesa_init_dlist_table( struct _glapi_table *table ) +_mesa_init_dlist_table( struct _glapi_table *table, GLuint tableSize ) { - _mesa_init_no_op_table(table); + _mesa_init_no_op_table(table, tableSize); /* GL 1.0 */ table->Accum = save_Accum; |