Lines Matching refs:area
375 /* Checks whether the render area rectangle covers a region that is aligned to
377 * all tiles in that area (except for pixels on edge tiles that are outside
383 * original pixel values in each tile for that area need to be preserved.
385 * tiles so we can't use them if the render area is not aligned.
394 * In that case, we can't flag the area as being aligned.
398 const VkRect2D *area,
408 return area->offset.x % granularity.width == 0 &&
409 area->offset.y % granularity.height == 0 &&
410 (area->extent.width % granularity.width == 0 ||
412 area->offset.x + area->extent.width >= fb->width)) &&
413 (area->extent.height % granularity.height == 0 ||
415 area->offset.y + area->extent.height >= fb->height));