diff options
author | Brian <brian.paul@tungstengraphics.com> | 2008-03-14 10:23:39 -0600 |
---|---|---|
committer | Brian <brian.paul@tungstengraphics.com> | 2008-03-14 10:23:56 -0600 |
commit | 3088eb59497ec8621e003ce3bc87025f257c0a92 (patch) | |
tree | 4488a6f86fee550efa310eb16810608303808622 /src/gallium | |
parent | 027433176cddec58821d625fb2df45cfd95f1e33 (diff) |
gallium: added some debug code (disabled)
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/auxiliary/draw/draw_vs_exec.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/draw/draw_vs_exec.c b/src/gallium/auxiliary/draw/draw_vs_exec.c index 55bec14116..364693e0b4 100644 --- a/src/gallium/auxiliary/draw/draw_vs_exec.c +++ b/src/gallium/auxiliary/draw/draw_vs_exec.c @@ -166,6 +166,19 @@ vs_exec_run( struct draw_vertex_shader *shader, vOut[j]->data[slot][2] = machine->Outputs[slot].xyzw[2].f[j]; vOut[j]->data[slot][3] = machine->Outputs[slot].xyzw[3].f[j]; } + +#if 0 /*DEBUG*/ + printf("Post xform vert:\n"); + for (slot = 0; slot < draw->num_vs_outputs; slot++) { + printf("%d: %f %f %f %f\n", slot, + vOut[j]->data[slot][0], + vOut[j]->data[slot][1], + vOut[j]->data[slot][2], + vOut[j]->data[slot][3]); + } +#endif + + } /* loop over vertices */ } |