aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i965/brw_eu_emit.c
diff options
context:
space:
mode:
authorEric Anholt <[email protected]>2013-12-23 00:56:20 -0800
committerEric Anholt <[email protected]>2014-02-22 19:23:21 -0800
commit83daa88035af978c5158cfe5a196df45ce1555c1 (patch)
tree1d7cfa2f8c0450677acb5a488a9cc089df510bdb /src/mesa/drivers/dri/i965/brw_eu_emit.c
parenta76e5dce4fc8d50f8699c108833f24e80167d706 (diff)
i965: Move the remaining driver debug over to stderr.
Reviewed-by: Ian Romanick <[email protected]> Reviewed-by: Kenneth Graunke <[email protected]> Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_eu_emit.c')
-rw-r--r--src/mesa/drivers/dri/i965/brw_eu_emit.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_eu_emit.c b/src/mesa/drivers/dri/i965/brw_eu_emit.c
index 5360b56bcfe..36279b89be1 100644
--- a/src/mesa/drivers/dri/i965/brw_eu_emit.c
+++ b/src/mesa/drivers/dri/i965/brw_eu_emit.c
@@ -780,8 +780,10 @@ brw_next_insn(struct brw_compile *p, unsigned opcode)
struct brw_instruction *insn;
if (p->nr_insn + 1 > p->store_size) {
- if (0)
- printf("incresing the store size to %d\n", p->store_size << 1);
+ if (0) {
+ fprintf(stderr, "incresing the store size to %d\n",
+ p->store_size << 1);
+ }
p->store_size <<= 1;
p->store = reralloc(p->mem_ctx, p->store,
struct brw_instruction, p->store_size);