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.h | |
parent | f658ab0e2e9c4f319c0e6e77e7d08031be74f93b (diff) |
changed allocation/initialization of API dispatch tables
Diffstat (limited to 'src/mesa/main/dlist.h')
-rw-r--r-- | src/mesa/main/dlist.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/dlist.h b/src/mesa/main/dlist.h index 1d9c0a1ca27..987c2cbab65 100644 --- a/src/mesa/main/dlist.h +++ b/src/mesa/main/dlist.h @@ -1,4 +1,4 @@ -/* $Id: dlist.h,v 1.3 2000/04/05 14:40:04 brianp Exp $ */ +/* $Id: dlist.h,v 1.4 2000/05/24 15:04:45 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -65,7 +65,7 @@ extern void _mesa_ListBase( GLuint base ); extern void _mesa_NewList( GLuint list, GLenum mode ); -extern void _mesa_init_dlist_table( struct _glapi_table *table ); +extern void _mesa_init_dlist_table( struct _glapi_table *table, GLuint tableSize ); extern void gl_compile_cassette( GLcontext *ctx ); |