diff options
author | Brian Paul <[email protected]> | 2002-06-29 19:48:15 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2002-06-29 19:48:15 +0000 |
commit | 4e9676fb13f60ecdbc247b120031f18cd3febcb0 (patch) | |
tree | 9f310d4b547592b025b5a7063aaf2b629bef6676 /src/mesa/tnl/t_vtx_api.c | |
parent | f1ad551604122dd2679dbd31ae6b2fa1197e9848 (diff) |
Applied Matt Sealey's patch to remove/isolate all stdio.h function calls.
Instead of mstdio.[ch], use imports.[ch] to isolate these functions.
Diffstat (limited to 'src/mesa/tnl/t_vtx_api.c')
-rw-r--r-- | src/mesa/tnl/t_vtx_api.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/tnl/t_vtx_api.c b/src/mesa/tnl/t_vtx_api.c index b957f336691..4076051c87c 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; \ } \ \ |