summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2007-10-25 11:31:15 -0700
committerEric Anholt <eric@anholt.net>2007-11-16 15:36:18 -0800
commitf7e0513d700167a7eff39e40c855027096f1db1d (patch)
tree54eca35d07bee0d05745c9955f9efbd77ee221f1
parent152aa6350d473128422991342c0a4509f4b37bc6 (diff)
[i915] Reenable batchbuffer debug under INTEL_DEBUG=bat.
-rw-r--r--src/mesa/drivers/dri/intel/intel_batchbuffer.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/drivers/dri/intel/intel_batchbuffer.c b/src/mesa/drivers/dri/intel/intel_batchbuffer.c
index 8ece6d2760..9ec60fcff3 100644
--- a/src/mesa/drivers/dri/intel/intel_batchbuffer.c
+++ b/src/mesa/drivers/dri/intel/intel_batchbuffer.c
@@ -168,10 +168,10 @@ do_flush_locked(struct intel_batchbuffer *batch,
}
if (INTEL_DEBUG & DEBUG_BATCH) {
- // dri_bo_map(batch->buf, GL_FALSE);
- // intel_decode(ptr, used / 4, batch->buf->offset,
- // intel->intelScreen->deviceID);
- // dri_bo_unmap(batch->buf);
+ dri_bo_map(batch->buf, GL_FALSE);
+ intel_decode(batch->buf->virtual, used / 4, batch->buf->offset,
+ intel->intelScreen->deviceID);
+ dri_bo_unmap(batch->buf);
}
}