diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2008-08-07 13:31:57 -0600 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2008-08-07 13:32:43 -0600 |
commit | ae2195caf56d2eb782475254c68858a25ee7c857 (patch) | |
tree | d33cc95442f459be30e8ab075d8a26dd9eb1c089 /src/gallium/drivers/softpipe/sp_tex_sample.c | |
parent | b1ff7dac537947d412bf423a73e7eacd76f90d84 (diff) |
gallium: s/printf/debug_printf/
Diffstat (limited to 'src/gallium/drivers/softpipe/sp_tex_sample.c')
-rw-r--r-- | src/gallium/drivers/softpipe/sp_tex_sample.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/softpipe/sp_tex_sample.c b/src/gallium/drivers/softpipe/sp_tex_sample.c index 5d7a8cc61a..508db5aa61 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); } } } |