Lines Matching defs:area
351 /* Checks whether the render area rectangle covers a region that is aligned to
353 * all tiles in that area (except for pixels on edge tiles that are outside
359 * original pixel values in each tile for that area need to be preserved.
361 * tiles so we can't use them if the render area is not aligned.
370 * In that case, we can't flag the area as being aligned.
374 const VkRect2D *area,
384 return area->offset.x % granularity.width == 0 &&
385 area->offset.y % granularity.height == 0 &&
386 (area->extent.width % granularity.width == 0 ||
388 area->offset.x + area->extent.width >= fb->width)) &&
389 (area->extent.height % granularity.height == 0 ||
391 area->offset.y + area->extent.height >= fb->height));