Home | History | Annotate | Download | only in libhwcomposer

Lines Matching refs:fbRect

528 void MDPCompNonSplit::trimAgainstROI(hwc_context_t *ctx, hwc_rect_t& fbRect) {
530 fbRect = getIntersection(fbRect, roi);
625 void MDPCompSplit::trimAgainstROI(hwc_context_t *ctx, hwc_rect_t& fbRect) {
629 hwc_rect_t l_fbRect = getIntersection(fbRect, l_roi);
630 hwc_rect_t r_fbRect = getIntersection(fbRect, r_roi);
631 fbRect = getUnion(l_fbRect, r_fbRect);
1754 hwc_rect_t fbRect = (struct hwc_rect){0, 0, 0, 0};
1761 fbRect = getUnion(fbRect, dst);
1764 trimAgainstROI(ctx, fbRect);
1765 return fbRect;
1785 hwc_rect_t fbRect = getUpdatingFBRect(ctx, list);
1786 if(!ctx->mFBUpdate[mDpy]->prepare(ctx, list, fbRect, mCurrentFrame.fbZ))