From 4e9676fb13f60ecdbc247b120031f18cd3febcb0 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Sat, 29 Jun 2002 19:48:15 +0000 Subject: Applied Matt Sealey's patch to remove/isolate all stdio.h function calls. Instead of mstdio.[ch], use imports.[ch] to isolate these functions. --- src/mesa/tnl/t_vtx_api.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/mesa/tnl/t_vtx_api.c') diff --git a/src/mesa/tnl/t_vtx_api.c b/src/mesa/tnl/t_vtx_api.c index b957f33669..4076051c87 100644 --- a/src/mesa/tnl/t_vtx_api.c +++ b/src/mesa/tnl/t_vtx_api.c @@ -619,13 +619,13 @@ static void choose_##FN ARGS1 \ if (dfn == 0) \ dfn = tnl->codegen.FN( &vb, key ); \ else if (MESA_VERBOSE & DEBUG_CODEGEN) \ - fprintf(stderr, "%s -- cached codegen\n", __FUNCTION__ ); \ + _mesa_debug(NULL, "%s -- cached codegen\n", __FUNCTION__ ); \ \ if (dfn) \ tnl->context->Exec->FN = (FNTYPE)(dfn->code); \ else { \ if (MESA_VERBOSE & DEBUG_CODEGEN) \ - fprintf(stderr, "%s -- generic version\n", __FUNCTION__ ); \ + _mesa_debug(NULL, "%s -- generic version\n", __FUNCTION__ ); \ tnl->context->Exec->FN = tnl_##FN; \ } \ \ -- cgit v1.2.3