mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-31 01:10:16 +01:00
i965/drm: Use ALIGN, not ROUND_UP_TO.
ROUND_UP_TO handles a NPOT alignment, but all the alignments we use are power of two anyway, so there's no need. Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk> Acked-by: Jason Ekstrand <jason@jlekstrand.net>
This commit is contained in:
parent
1d476e64e5
commit
c5cdb0f405
1 changed files with 2 additions and 2 deletions
|
|
@ -319,7 +319,7 @@ drm_bacon_gem_bo_tile_size(drm_bacon_bufmgr_gem *bufmgr_gem, unsigned long size,
|
|||
return size;
|
||||
|
||||
/* 965+ just need multiples of page size for tiling */
|
||||
return ROUND_UP_TO(size, 4096);
|
||||
return ALIGN(size, 4096);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
@ -345,7 +345,7 @@ drm_bacon_gem_bo_tile_pitch(drm_bacon_bufmgr_gem *bufmgr_gem,
|
|||
tile_width = 128;
|
||||
|
||||
/* 965 is flexible */
|
||||
return ROUND_UP_TO(pitch, tile_width);
|
||||
return ALIGN(pitch, tile_width);
|
||||
}
|
||||
|
||||
static struct drm_bacon_gem_bo_bucket *
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue