Lines Matching defs:mask
154 * Once we have that mask and the framebuffer dimensions, we can compute the
185 * Once the tile size (w, h) is chosen, we compute the hierarchy "mask":
189 * Of course with no hierarchical tiling, this is not a mask; it's just a field
252 unsigned mask,
261 if (!(mask & (1 << b)))
301 /* Given a hierarchy mask and a framebuffer size, compute the header size */
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);
327 * stuff it into the field otherwise known as hierarchy mask (not a mask). */
352 /* In the future, a heuristic to choose a tiler hierarchy mask would go here.