diff options
author | Michal Krol <[email protected]> | 2008-04-05 10:22:47 +0200 |
---|---|---|
committer | Michal Krol <[email protected]> | 2008-04-05 10:22:47 +0200 |
commit | a8ca54955322b34c77a7459246e5639d3f8610cd (patch) | |
tree | d7614dde4a2a314112f2f368c58316034ef392f2 | |
parent | fdff063343ddfbfb1b2fa921e2efcc2fae35d0ad (diff) |
draw: Use debug_printf().
-rw-r--r-- | src/gallium/auxiliary/draw/draw_clip.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/auxiliary/draw/draw_clip.c b/src/gallium/auxiliary/draw/draw_clip.c index fd1c71152e1..e24c5d80322 100644 --- a/src/gallium/auxiliary/draw/draw_clip.c +++ b/src/gallium/auxiliary/draw/draw_clip.c @@ -184,10 +184,10 @@ static void emit_poly( struct draw_stage *stage, if (0) { const struct draw_vertex_shader *vs = stage->draw->vertex_shader; uint j, k; - printf("Clipped tri:\n"); + debug_printf("Clipped tri:\n"); for (j = 0; j < 3; j++) { for (k = 0; k < vs->info.num_outputs; k++) { - printf(" Vert %d: Attr %d: %f %f %f %f\n", j, k, + debug_printf(" Vert %d: Attr %d: %f %f %f %f\n", j, k, header.v[j]->data[k][0], header.v[j]->data[k][1], header.v[j]->data[k][2], |