r600g: disable printing debug info for streamout
authorMarek Olšák <maraeo@gmail.com>
Mon, 30 Jan 2012 00:01:37 +0000 (01:01 +0100)
committerMarek Olšák <maraeo@gmail.com>
Mon, 30 Jan 2012 00:27:25 +0000 (01:27 +0100)
src/gallium/drivers/r600/r600_hw_context.c

index ad568c64f6335f759bfc5d54314c63b717724f33..ef87c37ed13f42fcc3c1ed1041a4850bbe43a395 100644 (file)
@@ -2182,7 +2182,7 @@ void r600_context_streamout_end(struct r600_context *ctx)
 
        ctx->num_cs_dw_streamout_end = 0;
 
-       /* XXX print some debug info */
+#if 0
        for (i = 0; i < ctx->num_so_targets; i++) {
                if (!t[i])
                        continue;
@@ -2191,6 +2191,7 @@ void r600_context_streamout_end(struct r600_context *ctx)
                printf("FILLED_SIZE%i: %u\n", i, *ptr);
                ctx->ws->buffer_unmap(t[i]->filled_size->buf);
        }
+#endif
 }
 
 void r600_context_draw_opaque_count(struct r600_context *ctx, struct r600_so_target *t)