diff options
author | Jakob Bornecrantz <[email protected]> | 2011-02-20 12:52:55 +0100 |
---|---|---|
committer | Jakob Bornecrantz <[email protected]> | 2011-02-21 23:42:53 +0000 |
commit | 27b49e91c982638497f7a92f7d611c29dd9cad18 (patch) | |
tree | 1a6873999a52de89721716260a1e07cd45df69ef /src/gallium/drivers/i915/i915_debug.c | |
parent | fe6800a1bbd2f22fc3b3921765491d9ba179c4ff (diff) |
i915g: Move debug fields to screen
Diffstat (limited to 'src/gallium/drivers/i915/i915_debug.c')
-rw-r--r-- | src/gallium/drivers/i915/i915_debug.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/i915/i915_debug.c b/src/gallium/drivers/i915/i915_debug.c index 8dbd36cc318..d11da83eb29 100644 --- a/src/gallium/drivers/i915/i915_debug.c +++ b/src/gallium/drivers/i915/i915_debug.c @@ -51,10 +51,10 @@ boolean i915_tiling = TRUE; DEBUG_GET_ONCE_FLAGS_OPTION(i915_debug, "I915_DEBUG", debug_options, 0); DEBUG_GET_ONCE_BOOL_OPTION(i915_no_tiling, "I915_NO_TILING", FALSE); -void i915_debug_init(struct i915_screen *screen) +void i915_debug_init(struct i915_screen *is) { i915_debug = debug_get_option_i915_debug(); - i915_tiling = !debug_get_option_i915_no_tiling(); + is->debug.tiling = !debug_get_option_i915_no_tiling(); } |