summaryrefslogtreecommitdiff
path: root/src/mesa/tnl/t_imm_alloc.h
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2002-04-19 12:32:14 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2002-04-19 12:32:14 +0000
commit05be7ae1253ad68d80816395c3d09665e5619ebc (patch)
treeaaa634bb60d5cbce9f5da87873ffc36f9b942da3 /src/mesa/tnl/t_imm_alloc.h
parent0c527ab0546eb1de9ee10cc31bc386a40e6b3f98 (diff)
pass context pointer to _tnl_free_immediate(), removed backref pointer
Diffstat (limited to 'src/mesa/tnl/t_imm_alloc.h')
-rw-r--r--src/mesa/tnl/t_imm_alloc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/tnl/t_imm_alloc.h b/src/mesa/tnl/t_imm_alloc.h
index 37512cc219..862daf224d 100644
--- a/src/mesa/tnl/t_imm_alloc.h
+++ b/src/mesa/tnl/t_imm_alloc.h
@@ -1,4 +1,4 @@
-/* $Id: t_imm_alloc.h,v 1.2 2001/03/12 00:48:43 gareth Exp $ */
+/* $Id: t_imm_alloc.h,v 1.3 2002/04/19 12:32:14 brianp Exp $ */
/*
* Mesa 3-D graphics library
@@ -34,7 +34,7 @@
extern struct immediate *_tnl_alloc_immediate( GLcontext *ctx );
-extern void _tnl_free_immediate( struct immediate *im );
+extern void _tnl_free_immediate( GLcontext *ctx, struct immediate *im );
#endif