diff options
author | Jakob Bornecrantz <jakob@aurora.(none)> | 2008-06-02 14:55:06 +0200 |
---|---|---|
committer | Jakob Bornecrantz <[email protected]> | 2008-06-02 17:24:30 +0200 |
commit | 4ee14279f3a466093869f1f40819e6c6d5af378d (patch) | |
tree | 1ef05ca525c4bdb073e8b15c22f86274f6df2341 /src/gallium/drivers/i915simple/i915_debug.c | |
parent | 5a67df6d7cc8c74bfb71a8f19b8f6fdfb525091b (diff) |
i915: Rework of batchbuffer code
Diffstat (limited to 'src/gallium/drivers/i915simple/i915_debug.c')
-rw-r--r-- | src/gallium/drivers/i915simple/i915_debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/i915simple/i915_debug.c b/src/gallium/drivers/i915simple/i915_debug.c index 9b9111167f8..a121dc0af48 100644 --- a/src/gallium/drivers/i915simple/i915_debug.c +++ b/src/gallium/drivers/i915simple/i915_debug.c @@ -861,7 +861,7 @@ void i915_dump_batchbuffer( struct i915_context *i915 ) { struct debug_stream stream; - unsigned *start = i915->batch_start; + unsigned *start = 0;/*i915->batch_start;*/ unsigned *end = i915->winsys->batch_start( i915->winsys, 0, 0 ); unsigned long bytes = (unsigned long) (end - start) * 4; boolean done = FALSE; |