disable debug
authorKeith Whitwell <keith@tungstengraphics.com>
Wed, 26 Sep 2007 11:08:08 +0000 (12:08 +0100)
committerKeith Whitwell <keith@tungstengraphics.com>
Thu, 27 Sep 2007 06:56:23 +0000 (07:56 +0100)
src/mesa/pipe/draw/draw_prim.c
src/mesa/pipe/draw/draw_vertex_shader.c

index a497a35..698557d 100644 (file)
@@ -374,7 +374,6 @@ draw_prim( struct draw_context *draw, unsigned start, unsigned count )
 static void
 draw_set_prim( struct draw_context *draw, unsigned prim )
 {
-   _mesa_printf("%s %d\n", __FUNCTION__, prim);
    assert(prim >= PIPE_PRIM_POINTS);
    assert(prim <= PIPE_PRIM_POLYGON);
 
index b9e4cc1..fe4f124 100644 (file)
@@ -169,12 +169,13 @@ run_vertex_program(struct draw_context *draw,
          vOut[j]->data[slot][1] = machine.Outputs[slot].xyzw[1].f[j];
          vOut[j]->data[slot][2] = machine.Outputs[slot].xyzw[2].f[j];
          vOut[j]->data[slot][3] = machine.Outputs[slot].xyzw[3].f[j];
-         
+         /*
          printf("output %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]);
+         */
       }
    } /* loop over vertices */
 }
@@ -188,7 +189,7 @@ void draw_vertex_shader_queue_flush( struct draw_context *draw )
 {
    unsigned i, j;
 
-   fprintf(stderr, " q(%d) ", draw->vs.queue_nr );
+//   fprintf(stderr, " q(%d) ", draw->vs.queue_nr );
 
    /* run vertex shader on vertex cache entries, four per invokation */
    for (i = 0; i < draw->vs.queue_nr; i += 4) {