diff options
author | Jakob Bornecrantz <[email protected]> | 2009-01-29 01:29:26 +0100 |
---|---|---|
committer | Jakob Bornecrantz <[email protected]> | 2009-01-29 03:00:14 +0100 |
commit | 8340a116ea346ee7f11fe150a1439e1d7bd86118 (patch) | |
tree | 95b4d16b438d46a1907a63c1b54829ec3d4e08c2 /src/gallium/drivers/i915simple/i915_debug.h | |
parent | a3b89a39d94d94c5e7f9f5389f852171ad0aeb1f (diff) |
i915: Don't take a context as argument for debug
Diffstat (limited to 'src/gallium/drivers/i915simple/i915_debug.h')
-rw-r--r-- | src/gallium/drivers/i915simple/i915_debug.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/gallium/drivers/i915simple/i915_debug.h b/src/gallium/drivers/i915simple/i915_debug.h index afb63edabf7..c33ee361101 100644 --- a/src/gallium/drivers/i915simple/i915_debug.h +++ b/src/gallium/drivers/i915simple/i915_debug.h @@ -41,7 +41,6 @@ struct debug_stream char *ptr; /* pointer to gtt offset zero */ char *end; /* pointer to gtt offset zero */ unsigned print_addresses; - struct pipe_winsys *winsys; }; @@ -105,9 +104,9 @@ I915_DBG( #endif -void i915_dump_batchbuffer( struct i915_context *i915 ); - +struct i915_batchbuffer; +void i915_dump_batchbuffer( struct i915_batchbuffer *i915 ); void i915_debug_init( struct i915_context *i915 ); |