mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 00:58:05 +02:00
tu: Fix tile_align_h on a650
This matches what the blob on a650 does and fixes errors when
calculating the tile size due to tile_align_h not being a power of two.
Fixes: 60bc7c0e ("freedreno: Specify GMEM tile alignment per GPU")
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/22088>
This commit is contained in:
parent
f5d325a8d0
commit
c54b8dfe67
1 changed files with 1 additions and 1 deletions
|
|
@ -393,7 +393,7 @@ add_gpus([
|
|||
a6xx_gen3,
|
||||
num_ccu = 3,
|
||||
tile_align_w = 96,
|
||||
tile_align_h = 48,
|
||||
tile_align_h = 16,
|
||||
magic_regs = dict(
|
||||
PC_POWER_CNTL = 2,
|
||||
# this seems to be a chicken bit that fixes cubic filtering:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue