summaryrefslogtreecommitdiff
path: root/src/mesa
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2001-05-17 11:33:33 +0000
committerKeith Whitwell <keith@tungstengraphics.com>2001-05-17 11:33:33 +0000
commit5439ab0683d38b000ef2e5aa1dfc5088e6ffc957 (patch)
tree1c75b7447eb01e1ffd6fb9b498db1243a3f0988e /src/mesa
parent89dae684aa1d74b06a4f70cb76b33671d0cef9e6 (diff)
Comment out __FUNCTION__ usage.
Diffstat (limited to 'src/mesa')
-rw-r--r--src/mesa/tnl/t_array_import.c14
1 files changed, 6 insertions, 8 deletions
diff --git a/src/mesa/tnl/t_array_import.c b/src/mesa/tnl/t_array_import.c
index 77fa8a4b97..56b4641de0 100644
--- a/src/mesa/tnl/t_array_import.c
+++ b/src/mesa/tnl/t_array_import.c
@@ -1,4 +1,4 @@
-/* $Id: t_array_import.c,v 1.16 2001/05/11 15:53:06 keithw Exp $ */
+/* $Id: t_array_import.c,v 1.17 2001/05/17 11:33:33 keithw Exp $ */
/*
* Mesa 3-D graphics library
@@ -308,13 +308,11 @@ void _tnl_vb_bind_arrays( GLcontext *ctx, GLint start, GLsizei count )
struct vertex_arrays *tmp = &tnl->array_inputs;
GLuint i;
- if (0) {
- fprintf(stderr, "%s %d..%d // %d..%d\n", __FUNCTION__,
- start, count, ctx->Array.LockFirst, ctx->Array.LockCount);
- _tnl_print_vert_flags(" inputs", inputs);
- _tnl_print_vert_flags(" _Enabled", ctx->Array._Enabled);
- _tnl_print_vert_flags(" importable", inputs & VERT_FIXUP);
- }
+/* fprintf(stderr, "%s %d..%d // %d..%d\n", __FUNCTION__, */
+/* start, count, ctx->Array.LockFirst, ctx->Array.LockCount); */
+/* _tnl_print_vert_flags(" inputs", inputs); */
+/* _tnl_print_vert_flags(" _Enabled", ctx->Array._Enabled); */
+/* _tnl_print_vert_flags(" importable", inputs & VERT_FIXUP); */
VB->Count = count - start;
VB->FirstClipped = VB->Count;