Lines Matching defs:width
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)
232 unsigned aligned_width = ALIGN_POT(width, tile_width);
250 unsigned width,
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)
341 best_w = MAX2(best_w, util_next_power_of_two(width / 63));
360 unsigned width, unsigned height,
369 return panfrost_choose_tile_size(width, height, vertex_count);