diff options
author | Jakob Bornecrantz <[email protected]> | 2008-06-02 17:22:45 +0200 |
---|---|---|
committer | Jakob Bornecrantz <[email protected]> | 2008-06-02 17:24:30 +0200 |
commit | 7cc23a9eaebc788ae34f6e06c6227524d08a7693 (patch) | |
tree | 2237f882c05d6780a6af5b9c6476626841bdb4ef /src/gallium/drivers/i915simple/i915_debug.c | |
parent | 4ee14279f3a466093869f1f40819e6c6d5af378d (diff) |
i915: Implement and use the reworked batchbuffer code
Diffstat (limited to 'src/gallium/drivers/i915simple/i915_debug.c')
-rw-r--r-- | src/gallium/drivers/i915simple/i915_debug.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/drivers/i915simple/i915_debug.c b/src/gallium/drivers/i915simple/i915_debug.c index a121dc0af48..5e26d1b9057 100644 --- a/src/gallium/drivers/i915simple/i915_debug.c +++ b/src/gallium/drivers/i915simple/i915_debug.c @@ -861,8 +861,9 @@ void i915_dump_batchbuffer( struct i915_context *i915 ) { struct debug_stream stream; + /* TODO fix me */ unsigned *start = 0;/*i915->batch_start;*/ - unsigned *end = i915->winsys->batch_start( i915->winsys, 0, 0 ); + unsigned *end = 0;/*i915->winsys->batch_start( i915->winsys, 0, 0 );*/ unsigned long bytes = (unsigned long) (end - start) * 4; boolean done = FALSE; |