diff options
author | Aapo Tahkola <aet@rasterburn.org> | 2005-11-18 17:57:27 +0000 |
---|---|---|
committer | Aapo Tahkola <aet@rasterburn.org> | 2005-11-18 17:57:27 +0000 |
commit | 40ca5b455f0710db3e8ceb65c8d8d2f047672e4c (patch) | |
tree | e79a7ba7fdd612c96eb29b45c8c1f3bc71d31c5e /src/mesa/main | |
parent | 311bcf5090f8ba0cc09c66f2507dccdf6546ac3c (diff) |
Reduce stderr noise.
Diffstat (limited to 'src/mesa/main')
-rw-r--r-- | src/mesa/main/texenvprogram.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/texenvprogram.c b/src/mesa/main/texenvprogram.c index 9e04181147..2de60698d3 100644 --- a/src/mesa/main/texenvprogram.c +++ b/src/mesa/main/texenvprogram.c @@ -1140,7 +1140,7 @@ void _mesa_UpdateTexEnvProgram( GLcontext *ctx ) search_cache(ctx->Texture.env_fp_cache, hash, key, sizeof(*key)); if (!ctx->_TexEnvProgram) { - if (1) _mesa_printf("Building new texenv proggy for key %x\n", hash); + if (0) _mesa_printf("Building new texenv proggy for key %x\n", hash); ctx->FragmentProgram._Current = ctx->_TexEnvProgram = (struct fragment_program *) @@ -1151,7 +1151,7 @@ void _mesa_UpdateTexEnvProgram( GLcontext *ctx ) cache_item(&ctx->Texture.env_fp_cache, hash, key, ctx->_TexEnvProgram); } else { FREE(key); - if (1) _mesa_printf("Found existing texenv program for key %x\n", hash); + if (0) _mesa_printf("Found existing texenv program for key %x\n", hash); } } else { |