Lines Matching refs:height
166 * - The tile width/height is at most the framebuffer w/h (clamp up to 16 pix)
222 /* If the width-x-height framebuffer is divided into tile_size-x-tile_size
230 pan_tile_count(unsigned width, unsigned height, unsigned tile_width, unsigned tile_height)
233 unsigned aligned_height = ALIGN_POT(height, tile_height);
251 unsigned height,
267 unsigned tile_count = pan_tile_count(width, height, tile_size, tile_size);
287 panfrost_flat_size(unsigned width, unsigned height, unsigned dim, unsigned bytes_per_tile)
295 unsigned raw = pan_tile_count(width, height, tw, th) * bytes_per_tile;
304 panfrost_tiler_header_size(unsigned width, unsigned height, unsigned mask, bool hierarchy)
307 return panfrost_hierarchy_size(width, height, mask, HEADER_BYTES_PER_TILE);
309 return panfrost_flat_size(width, height, mask, HEADER_BYTES_PER_TILE);
318 panfrost_tiler_full_size(unsigned width, unsigned height, unsigned mask, bool hierarchy)
321 return panfrost_hierarchy_size(width, height, mask, FULL_BYTES_PER_TILE);
323 return panfrost_flat_size(width, height, mask, FULL_BYTES_PER_TILE);
331 unsigned width, unsigned height, unsigned vertex_count)
342 best_h = MAX2(best_h, util_next_power_of_two(height / 63));
360 unsigned width, unsigned height,
369 return panfrost_choose_tile_size(width, height, vertex_count);