diff options
author | Brian Paul <[email protected]> | 2014-12-01 13:41:47 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2014-12-01 16:30:17 -0700 |
commit | 1e14aaa8f9ef8258c58b0245635ce5a74f767e26 (patch) | |
tree | 339368aeb5b37dc641b6b507126c85d4dae1dbcb /src/mesa/main/dlist.h | |
parent | c407c6d58891dbb1fcdfc6ef17e6001b53d7e040 (diff) |
mesa: some improvements for print_list()
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/main/dlist.h')
-rw-r--r-- | src/mesa/main/dlist.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/dlist.h b/src/mesa/main/dlist.h index 7726e77d84a..c57eb74da6d 100644 --- a/src/mesa/main/dlist.h +++ b/src/mesa/main/dlist.h @@ -63,7 +63,7 @@ extern void *_mesa_dlist_alloc(struct gl_context *ctx, GLuint opcode, GLuint sz) extern GLint _mesa_dlist_alloc_opcode( struct gl_context *ctx, GLuint sz, void (*execute)( struct gl_context *, void * ), void (*destroy)( struct gl_context *, void * ), - void (*print)( struct gl_context *, void * ) ); + void (*print)( struct gl_context *, void *, FILE * ) ); extern void _mesa_delete_list(struct gl_context *ctx, struct gl_display_list *dlist); |