i915g: use y-tiling when the blitter is not used

The blitter is broken. Who'd have guessed?

Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
This commit is contained in:
Daniel Vetter
2011-03-11 16:08:11 +01:00
parent f0c56e2a23
commit d46c6084ce
@@ -184,7 +184,10 @@ i915_texture_tiling(struct i915_screen *is, struct i915_texture *tex)
/* XXX X-tiling might make sense */
return I915_TILE_NONE;
return I915_TILE_X;
if (is->debug.use_blitter)
return I915_TILE_X;
else
return I915_TILE_Y;
}