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/swrast_setup/ss_vb.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/swrast_setup/ss_vb.c')
-rw-r--r-- | src/mesa/swrast_setup/ss_vb.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mesa/swrast_setup/ss_vb.c b/src/mesa/swrast_setup/ss_vb.c index fce1d489a0c..69fa10b3eb2 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.19 2002/06/15 03:03:12 brianp Exp $ */ +/* $Id: ss_vb.c,v 1.20 2002/06/29 19:48:17 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -361,6 +361,7 @@ static void init_standard( void ) /* debug only */ +#if 0 static void printSetupFlags(const GLcontext *ctx, char *msg, GLuint flags ) { @@ -375,7 +376,7 @@ printSetupFlags(const GLcontext *ctx, char *msg, GLuint flags ) (flags & FOG) ? "fog, " : "", (flags & POINT) ? "point, " : ""); } - +#endif void _swsetup_choose_rastersetup_func(GLcontext *ctx) |