summaryrefslogtreecommitdiff
path: root/src/mesa/pipe/draw/draw_vertex_fetch.c
diff options
context:
space:
mode:
authorZack Rusin <zack@tungstengraphics.com>2007-10-12 13:57:53 -0400
committerZack Rusin <zack@tungstengraphics.com>2007-10-24 11:21:03 -0400
commit2dbba8b024720c11cb2d812b5ccb61ecb9887faa (patch)
treeed3fd1386378a7e64bf2a2ba7521930f9c973b86 /src/mesa/pipe/draw/draw_vertex_fetch.c
parent11bc1f015a781760c419bdd53b326132b5146971 (diff)
Implement the conversion and do the initial execution pass.
Diffstat (limited to 'src/mesa/pipe/draw/draw_vertex_fetch.c')
-rw-r--r--src/mesa/pipe/draw/draw_vertex_fetch.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/pipe/draw/draw_vertex_fetch.c b/src/mesa/pipe/draw/draw_vertex_fetch.c
index de1cd06da6..1b093b7342 100644
--- a/src/mesa/pipe/draw/draw_vertex_fetch.c
+++ b/src/mesa/pipe/draw/draw_vertex_fetch.c
@@ -96,7 +96,7 @@ void draw_vertex_fetch( struct draw_context *draw,
for (j = 0; j < count; j++) {
uint attr;
- /*printf("fetch vertex %u: \n", j);*/
+ printf("fetch vertex %u: \n", j);
/* loop over vertex attributes (vertex shader inputs) */
for (attr = 0; attr < draw->vertex_shader->state->num_inputs; attr++) {
@@ -111,7 +111,7 @@ 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]);*/
+ printf("> %u: %f %f %f %f\n", attr, p[0], p[1], p[2], p[3]);
/* Transform to AoS xxxx/yyyy/zzzz/wwww representation:
*/