diff options
author | Eric Anholt <eric@anholt.net> | 2007-10-25 11:31:15 -0700 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2007-11-16 15:36:18 -0800 |
commit | f7e0513d700167a7eff39e40c855027096f1db1d (patch) | |
tree | 54eca35d07bee0d05745c9955f9efbd77ee221f1 | |
parent | 152aa6350d473128422991342c0a4509f4b37bc6 (diff) |
[i915] Reenable batchbuffer debug under INTEL_DEBUG=bat.
-rw-r--r-- | src/mesa/drivers/dri/intel/intel_batchbuffer.c | 8 |
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 8ece6d276..9ec60fcff 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); } } |