Lines Matching refs:overlap
230 hwc_rect_t overlap = list->hwLayers[ovlapIndex].displayFrame; in prepareOverlap() local
234 finalW = max(finalW, ALIGN((overlap.right - overlap.left), 32)); in prepareOverlap()
235 finalH += ALIGN((overlap.bottom - overlap.top), 32); in prepareOverlap()
236 if(finalH > ALIGN((overlap.bottom - overlap.top), 32)) { in prepareOverlap()
239 (ALIGN((overlap.bottom - overlap.top), 32))); in prepareOverlap()
243 (overlap.right - overlap.left); in prepareOverlap()
245 (overlap.bottom - overlap.top); in prepareOverlap()
615 hwc_rect_t overlap = list->hwLayers[ovlapIndex].displayFrame; in drawOverlap() local
626 hwc_rect_t commonRect = getIntersection(prevOvlap, overlap); in drawOverlap()
628 overlap = deductRect(overlap, commonRect); in drawOverlap()
636 overlap))) { in drawOverlap()
657 hwc_rect_t destRect = getIntersection(overlap, layer->displayFrame); in drawOverlap()
658 destRect.left = destRect.left - overlap.left + in drawOverlap()
660 destRect.right = destRect.right- overlap.left + in drawOverlap()
662 destRect.top = destRect.top - overlap.top + in drawOverlap()
664 destRect.bottom = destRect.bottom - overlap.top + in drawOverlap()
668 overlap, destRect); in drawOverlap()
688 private_handle_t *renderBuffer, hwc_rect_t overlap, in drawRectUsingCopybit() argument
721 hwc_rect_t iRect = getIntersection(dispFrame, overlap); in drawRectUsingCopybit()