diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2002-04-19 12:32:14 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2002-04-19 12:32:14 +0000 |
commit | 05be7ae1253ad68d80816395c3d09665e5619ebc (patch) | |
tree | aaa634bb60d5cbce9f5da87873ffc36f9b942da3 /src/mesa/tnl/t_imm_exec.h | |
parent | 0c527ab0546eb1de9ee10cc31bc386a40e6b3f98 (diff) |
pass context pointer to _tnl_free_immediate(), removed backref pointer
Diffstat (limited to 'src/mesa/tnl/t_imm_exec.h')
-rw-r--r-- | src/mesa/tnl/t_imm_exec.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/tnl/t_imm_exec.h b/src/mesa/tnl/t_imm_exec.h index 5e586449e8..99b816d82e 100644 --- a/src/mesa/tnl/t_imm_exec.h +++ b/src/mesa/tnl/t_imm_exec.h @@ -1,4 +1,4 @@ -/* $Id: t_imm_exec.h,v 1.7 2001/08/02 22:39:51 keithw Exp $ */ +/* $Id: t_imm_exec.h,v 1.8 2002/04/19 12:32:14 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -38,7 +38,7 @@ extern void _tnl_flush_vertices( GLcontext *ctx, GLuint flush_flags ); /* Called from imm_api.c and _tnl_flush_vertices: */ -extern void _tnl_flush_immediate( struct immediate *IM ); +extern void _tnl_flush_immediate( GLcontext *ctx, struct immediate *IM ); /* Called from imm_dlist.c and _tnl_flush_immediate: */ |