summaryrefslogtreecommitdiff
path: root/src/mesa/tnl/t_imm_api.c
diff options
context:
space:
mode:
authorJouk Jansen <joukj@hrem.stm.tudelft.nl>2001-12-17 09:02:55 +0000
committerJouk Jansen <joukj@hrem.stm.tudelft.nl>2001-12-17 09:02:55 +0000
commitaea09490f5fc23a1fb65cd1f113912b9c5cb0924 (patch)
treea157fba596bf4dfb5f187530b7da9e06f78f6d98 /src/mesa/tnl/t_imm_api.c
parent3ade8af7ffce434bb612df67f8e5a780885f991c (diff)
Committing in .
Update OpenVMS makefile for vertex-routines #ifndef __VMS added for one print statement containing __FUNCTION__ Modified Files: Mesa/src/descrip.mms Mesa/src/tnl/t_imm_api.c ----------------------------------------------------------------------
Diffstat (limited to 'src/mesa/tnl/t_imm_api.c')
-rw-r--r--src/mesa/tnl/t_imm_api.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mesa/tnl/t_imm_api.c b/src/mesa/tnl/t_imm_api.c
index d79f962269..94dab9acb1 100644
--- a/src/mesa/tnl/t_imm_api.c
+++ b/src/mesa/tnl/t_imm_api.c
@@ -1,4 +1,4 @@
-/* $Id: t_imm_api.c,v 1.21 2001/12/15 02:13:32 brianp Exp $ */
+/* $Id: t_imm_api.c,v 1.22 2001/12/17 09:02:55 joukj Exp $ */
/*
* Mesa 3-D graphics library
@@ -1121,7 +1121,9 @@ static void
_tnl_VertexAttrib4fNV(GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w)
{
/* no-op? */
+#ifndef __VMS
printf("%s(%d, %f, %f, %f, %f)\n", __FUNCTION__, index, x, y, z, w);
+#endif
(void) index;
(void) x;
(void) y;