diff --git a/src/freedreno/fdl/fd6_layout.c b/src/freedreno/fdl/fd6_layout.c index cc677364861..67491abe611 100644 --- a/src/freedreno/fdl/fd6_layout.c +++ b/src/freedreno/fdl/fd6_layout.c @@ -88,19 +88,7 @@ fdl6_tile_alignment(struct fdl_layout *layout, uint32_t *heightalign) layout->pitchalign = 2; } - /* Empirical evidence suggests that images with UBWC could have much - * looser alignment requirements, however the validity of alignment is - * heavily undertested and the "officially" supported alignment is 4096b. - */ - if (layout->ubwc || util_format_is_depth_or_stencil(layout->format) || - fdl6_is_r8g8_layout(layout)) - layout->base_align = 4096; - else if (layout->cpp == 1) - layout->base_align = 64; - else if (layout->cpp == 2) - layout->base_align = 128; - else - layout->base_align = 256; + layout->base_align = 4096; } /* NOTE: good way to test this is: (for example)