Lines Matching refs:height
167 * - The tile width/height is at most the framebuffer w/h (clamp up to 16 pix)
223 /* If the width-x-height framebuffer is divided into tile_size-x-tile_size
231 pan_tile_count(unsigned width, unsigned height, unsigned tile_width, unsigned tile_height)
234 unsigned aligned_height = ALIGN_POT(height, tile_height);
252 unsigned height,
268 unsigned tile_count = pan_tile_count(width, height, tile_size, tile_size);
288 panfrost_flat_size(unsigned width, unsigned height, unsigned dim, unsigned bytes_per_tile)
296 unsigned raw = pan_tile_count(width, height, tw, th) * bytes_per_tile;
305 panfrost_tiler_header_size(unsigned width, unsigned height, unsigned mask, bool hierarchy)
308 return panfrost_hierarchy_size(width, height, mask, HEADER_BYTES_PER_TILE);
310 return panfrost_flat_size(width, height, mask, HEADER_BYTES_PER_TILE);
319 panfrost_tiler_full_size(unsigned width, unsigned height, unsigned mask, bool hierarchy)
322 return panfrost_hierarchy_size(width, height, mask, FULL_BYTES_PER_TILE);
324 return panfrost_flat_size(width, height, mask, FULL_BYTES_PER_TILE);
332 unsigned width, unsigned height, unsigned vertex_count)
343 best_h = MAX2(best_h, util_next_power_of_two(height / 63));
361 unsigned width, unsigned height,
370 return panfrost_choose_tile_size(width, height, vertex_count);