From d09a1d8b29ae5841ae39b5c24c3f4693dd750559 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Thu, 13 Jun 2002 04:49:17 +0000 Subject: more removal of fprintf() calls --- src/mesa/swrast_setup/ss_vb.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/mesa/swrast_setup/ss_vb.c') diff --git a/src/mesa/swrast_setup/ss_vb.c b/src/mesa/swrast_setup/ss_vb.c index 811c3e70d9..5a10afeae3 100644 --- a/src/mesa/swrast_setup/ss_vb.c +++ b/src/mesa/swrast_setup/ss_vb.c @@ -1,4 +1,4 @@ -/* $Id: ss_vb.c,v 1.16 2002/06/06 16:19:25 brianp Exp $ */ +/* $Id: ss_vb.c,v 1.17 2002/06/13 04:49:17 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -298,7 +298,7 @@ static void copy_pv_extras( GLcontext *ctx, GLuint dst, GLuint src ) static void emit_invalid( GLcontext *ctx, GLuint start, GLuint end, GLuint newinputs ) { - fprintf(stderr, "swrast_setup: invalid setup function\n"); + _mesa_debug("swrast_setup: invalid setup function\n"); (void) (ctx && start && end && newinputs); } @@ -307,14 +307,14 @@ interp_invalid( GLcontext *ctx, GLfloat t, GLuint edst, GLuint eout, GLuint ein, GLboolean force_boundary ) { - fprintf(stderr, "swrast_setup: invalid interp function\n"); + _mesa_debug("swrast_setup: invalid interp function\n"); (void) (ctx && t && edst && eout && ein && force_boundary); } static void copy_pv_invalid( GLcontext *ctx, GLuint edst, GLuint esrc ) { - fprintf(stderr, "swrast_setup: invalid copy_pv function\n"); + _mesa_debug("swrast_setup: invalid copy_pv function\n"); (void) (ctx && edst && esrc ); } @@ -361,7 +361,7 @@ static void init_standard( void ) static void printSetupFlags(char *msg, GLuint flags ) { - fprintf(stderr, "%s(%x): %s%s%s%s%s%s%s\n", + _mesa_debug("%s(%x): %s%s%s%s%s%s%s\n", msg, (int)flags, (flags & COLOR) ? "color, " : "", -- cgit v1.2.3