mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 18:18:06 +02:00
panfrost: Fix checksumming typo
Fixes: 3e6c6bb0 ("panfrost: Merge checksum buffer with main BO")
Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
This commit is contained in:
parent
ab009b7d6e
commit
0979ea9de8
1 changed files with 1 additions and 1 deletions
|
|
@ -193,7 +193,7 @@ panfrost_compute_checksum_sizes(
|
|||
unsigned height)
|
||||
{
|
||||
unsigned aligned_width = ALIGN(width, CHECKSUM_TILE_WIDTH);
|
||||
unsigned aligned_height = ALIGN(width, CHECKSUM_TILE_HEIGHT);
|
||||
unsigned aligned_height = ALIGN(height, CHECKSUM_TILE_HEIGHT);
|
||||
|
||||
unsigned tile_count_x = aligned_width / CHECKSUM_TILE_WIDTH;
|
||||
unsigned tile_count_y = aligned_height / CHECKSUM_TILE_HEIGHT;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue