panfrost: Simplify compute_checksum_size formula
authorAlyssa Rosenzweig <alyssa@collabora.com>
Wed, 2 Jun 2021 21:07:10 +0000 (17:07 -0400)
committerMarge Bot <eric+marge@anholt.net>
Thu, 10 Jun 2021 18:06:10 +0000 (18:06 +0000)
Signed-off-by: Alyssa Rosenzweig <alyssa@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11123>

src/panfrost/lib/pan_texture.c

index 80795ca..23a9475 100644 (file)
@@ -516,11 +516,8 @@ panfrost_compute_checksum_size(
         unsigned width,
         unsigned height)
 {
-        unsigned aligned_width = ALIGN_POT(width, CHECKSUM_TILE_WIDTH);
-        unsigned aligned_height = ALIGN_POT(height, CHECKSUM_TILE_HEIGHT);
-
-        unsigned tile_count_x = aligned_width / CHECKSUM_TILE_WIDTH;
-        unsigned tile_count_y = aligned_height / CHECKSUM_TILE_HEIGHT;
+        unsigned tile_count_x = DIV_ROUND_UP(width, CHECKSUM_TILE_WIDTH);
+        unsigned tile_count_y = DIV_ROUND_UP(height, CHECKSUM_TILE_HEIGHT);
 
         slice->crc.stride = tile_count_x * CHECKSUM_BYTES_PER_TILE;