diff options
author | Michel Dänzer <[email protected]> | 2009-07-03 12:44:02 +0200 |
---|---|---|
committer | Michel Dänzer <[email protected]> | 2009-07-03 12:44:02 +0200 |
commit | 6b2461fec905b7dc25ad051d602b440503f544ea (patch) | |
tree | 14bfc24c293ee967643053fb56658b4432175a40 /src | |
parent | 8ae02a3919bf31bd33f86208472e100eedb58497 (diff) |
r300: Guard debugging output.
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/drivers/dri/r300/r300_cmdbuf.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/r300/r300_cmdbuf.c b/src/mesa/drivers/dri/r300/r300_cmdbuf.c index 19d240f5769..90ca45b3e77 100644 --- a/src/mesa/drivers/dri/r300/r300_cmdbuf.c +++ b/src/mesa/drivers/dri/r300/r300_cmdbuf.c @@ -263,8 +263,9 @@ static void emit_cb_offset(GLcontext *ctx, struct radeon_state_atom * atom) fprintf(stderr, "no rrb\n"); return; } - - fprintf(stderr,"rrb is %p %d %dx%d\n", rrb, offset, rrb->base.Width, rrb->base.Height); + + if (RADEON_DEBUG & DEBUG_STATE) + fprintf(stderr,"rrb is %p %d %dx%d\n", rrb, offset, rrb->base.Width, rrb->base.Height); cbpitch = (rrb->pitch / rrb->cpp); if (rrb->cpp == 4) cbpitch |= R300_COLOR_FORMAT_ARGB8888; |