diff options
author | Brian Paul <[email protected]> | 2002-04-19 12:32:14 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2002-04-19 12:32:14 +0000 |
commit | 05be7ae1253ad68d80816395c3d09665e5619ebc (patch) | |
tree | aaa634bb60d5cbce9f5da87873ffc36f9b942da3 /src/mesa/tnl/t_eval_api.c | |
parent | 0c527ab0546eb1de9ee10cc31bc386a40e6b3f98 (diff) |
pass context pointer to _tnl_free_immediate(), removed backref pointer
Diffstat (limited to 'src/mesa/tnl/t_eval_api.c')
-rw-r--r-- | src/mesa/tnl/t_eval_api.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/tnl/t_eval_api.c b/src/mesa/tnl/t_eval_api.c index fc6e671bfe2..aa068032e16 100644 --- a/src/mesa/tnl/t_eval_api.c +++ b/src/mesa/tnl/t_eval_api.c @@ -1,4 +1,4 @@ -/* $Id: t_eval_api.c,v 1.9 2002/04/09 16:56:52 keithw Exp $ */ +/* $Id: t_eval_api.c,v 1.10 2002/04/19 12:32:14 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -129,7 +129,7 @@ _tnl_exec_EvalMesh1( GLenum mode, GLint i1, GLint i2 ) if (compiling) { TNL_CURRENT_IM(ctx)->ref_count--; ASSERT( TNL_CURRENT_IM(ctx)->ref_count == 0 ); - _tnl_free_immediate( TNL_CURRENT_IM(ctx) ); + _tnl_free_immediate( ctx, TNL_CURRENT_IM(ctx) ); SET_IMMEDIATE( ctx, im ); ctx->CompileFlag = GL_TRUE; } @@ -228,7 +228,7 @@ _tnl_exec_EvalMesh2( GLenum mode, GLint i1, GLint i2, GLint j1, GLint j2 ) if (compiling) { TNL_CURRENT_IM(ctx)->ref_count--; - _tnl_free_immediate( TNL_CURRENT_IM( ctx ) ); + _tnl_free_immediate( ctx, TNL_CURRENT_IM( ctx ) ); SET_IMMEDIATE( ctx, im ); ctx->CompileFlag = GL_TRUE; } |