Modified Files:
authorJouk Jansen <joukj@hrem.stm.tudelft.nl>
Mon, 27 Nov 2000 09:05:52 +0000 (09:05 +0000)
committerJouk Jansen <joukj@hrem.stm.tudelft.nl>
Mon, 27 Nov 2000 09:05:52 +0000 (09:05 +0000)
  Mesa/src/tnl/t_context.c Mesa/src/tnl/t_debug.c
  Mesa/src/tnl/t_pipeline.c

 Some updates to silence warnings on my VMS-machine

----------------------------------------------------------------------

src/mesa/tnl/t_context.c
src/mesa/tnl/t_pipeline.c

index b8b608e356cd9531934291df48508a61e123243d..d27a48b296073a55826c2c2987e23689e7104376 100644 (file)
@@ -219,8 +219,10 @@ _tnl_wakeup_exec( GLcontext *ctx )
 {
    TNLcontext *tnl = TNL_CONTEXT(ctx);
    
+#ifndef VMS
    fprintf(stderr, "%s\n", __FUNCTION__);
-
+#endif
+   
    install_driver_callbacks(ctx);
 
    /* Hook our functions into exec and compile dispatch tables.
@@ -252,8 +254,10 @@ _tnl_wakeup_save_exec( GLcontext *ctx )
 {
    TNLcontext *tnl = TNL_CONTEXT(ctx);
 
+#ifndef VMS
    fprintf(stderr, "%s\n", __FUNCTION__);
-
+#endif
+   
    _tnl_wakeup_exec( ctx );
    _mesa_install_save_vtxfmt( ctx, &tnl->vtxfmt );
    ctx->Save->EvalMesh1 = _mesa_save_EvalMesh1;        /* fixme */
index 082f53a43ab2a6dff7f27cd64e27cadf3f6990f9..60e375d753042a90554b54a1bdf31709940172e0 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: t_pipeline.c,v 1.5 2000/11/24 15:22:00 keithw Exp $ */
+/* $Id: t_pipeline.c,v 1.6 2000/11/27 09:05:52 joukj Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -59,7 +59,7 @@
 void _tnl_print_pipe_ops( const char *msg, GLuint flags )
 {
    fprintf(stderr,
-          "%s: (0x%x) %s%s%s%s%s%s%s%s%s%s%s%s\n",
+          "%s: (0x%x) %s%s%s%s%s%s%s%s%s\n",
           msg,
           flags,
           (flags & PIPE_OP_CVA_PREPARE)   ? "cva-prepare, " : "",