intel: Don't tile-align pitch for untiled buffers.
This allows Mesa to use drm_intel_bo_alloc_tiled() for its tiled buffers, since it makes its decision about pitch before telling libdrm. They happen to be the same choices for the tiled case.main
parent
acbaff24e0
commit
292a5d73a2
|
@ -258,7 +258,7 @@ drm_intel_gem_bo_tile_pitch(drm_intel_bufmgr_gem *bufmgr_gem,
|
||||||
unsigned long i;
|
unsigned long i;
|
||||||
|
|
||||||
if (tiling_mode == I915_TILING_NONE)
|
if (tiling_mode == I915_TILING_NONE)
|
||||||
return ROUND_UP_TO(pitch, tile_width);
|
return pitch;
|
||||||
|
|
||||||
/* 965 is flexible */
|
/* 965 is flexible */
|
||||||
if (bufmgr_gem->gen >= 4)
|
if (bufmgr_gem->gen >= 4)
|
||||||
|
|
Loading…
Reference in New Issue