From: Brian Paul Date: Thu, 7 Aug 2008 19:31:57 +0000 (-0600) Subject: gallium: s/printf/debug_printf/ X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ae2195caf56d2eb782475254c68858a25ee7c857;p=mesa.git gallium: s/printf/debug_printf/ --- diff --git a/src/gallium/drivers/softpipe/sp_tex_sample.c b/src/gallium/drivers/softpipe/sp_tex_sample.c index 5d7a8cc61a4..508db5aa619 100644 --- a/src/gallium/drivers/softpipe/sp_tex_sample.c +++ b/src/gallium/drivers/softpipe/sp_tex_sample.c @@ -623,8 +623,8 @@ get_texel(struct tgsi_sampler *sampler, { char fmt[100]; pf_sprint_name( fmt, sampler->texture->format); - printf("Get texel %f %f %f %f from %s\n", - rgba[0][j], rgba[1][j], rgba[2][j], rgba[3][j], fmt); + debug_printf("Get texel %f %f %f %f from %s\n", + rgba[0][j], rgba[1][j], rgba[2][j], rgba[3][j], fmt); } } }