panfrost: Remove line_stride

There are no more users. This eliminates a class of issues.

Signed-off-by: Alyssa Rosenzweig <alyssa@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/16201>
This commit is contained in:
Alyssa Rosenzweig 2022-04-27 12:12:05 -04:00 committed by Marge Bot
parent 61100e7011
commit 1842e14a73
2 changed files with 0 additions and 2 deletions

View File

@ -258,7 +258,6 @@ pan_image_layout_init(struct pan_image_layout *layout,
row_stride = ALIGN_POT(row_stride, 64);
}
slice->line_stride = row_stride / block_size.height;
slice->row_stride = row_stride;
unsigned slice_one_size = row_stride * (effective_height / block_size.height);

View File

@ -49,7 +49,6 @@ extern uint64_t pan_best_modifiers[PAN_MODIFIER_COUNT];
struct pan_image_slice_layout {
unsigned offset;
unsigned line_stride;
unsigned row_stride;
unsigned surface_stride;