diff options
author | Brian <brian.paul@tungstengraphics.com> | 2007-11-16 17:13:26 -0700 |
---|---|---|
committer | Brian <brian.paul@tungstengraphics.com> | 2007-11-16 17:13:26 -0700 |
commit | 34a00276c7b2ee8ab88a56905352023f8a435a53 (patch) | |
tree | 9905ff29d02c28354a52a46d8b39ef4bb4127cb2 | |
parent | aa880bdfa05d8ff2486ef8266f93dea983b7c6fd (diff) |
more convenient debug code
-rw-r--r-- | src/mesa/pipe/draw/draw_vertex_fetch.c | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/mesa/pipe/draw/draw_vertex_fetch.c b/src/mesa/pipe/draw/draw_vertex_fetch.c index eca10e89fb..b510a4dbba 100644 --- a/src/mesa/pipe/draw/draw_vertex_fetch.c +++ b/src/mesa/pipe/draw/draw_vertex_fetch.c @@ -37,6 +37,10 @@ #include "pipe/tgsi/exec/tgsi_core.h" + +#define DBG 0 + + /** * Fetch a float[4] vertex attribute from memory, doing format/type * conversion as needed. @@ -96,7 +100,9 @@ void draw_vertex_fetch( struct draw_context *draw, for (j = 0; j < count; j++) { uint attr; - /*printf("fetch vertex %u: \n", j);*/ +#if DBG + printf("fetch vertex %u: \n", j); +#endif /* loop over vertex attributes (vertex shader inputs) */ for (attr = 0; attr < draw->vertex_shader->state->num_inputs; attr++) { @@ -111,7 +117,9 @@ void draw_vertex_fetch( struct draw_context *draw, fetch_attrib4(src, draw->vertex_element[attr].src_format, p); - /*printf(" %u: %f %f %f %f\n", attr, p[0], p[1], p[2], p[3]);*/ +#if DBG + printf(" %u: %f %f %f %f\n", attr, p[0], p[1], p[2], p[3]); +#endif /* Transform to AoS xxxx/yyyy/zzzz/wwww representation: */ |