Home | History | Annotate | Download | only in libhwcomposer

Lines Matching refs:fbRect

447 void MDPCompNonSplit::trimAgainstROI(hwc_context_t *ctx, hwc_rect_t& fbRect) {
449 fbRect = getIntersection(fbRect, roi);
535 void MDPCompSplit::trimAgainstROI(hwc_context_t *ctx, hwc_rect_t& fbRect) {
539 hwc_rect_t l_fbRect = getIntersection(fbRect, l_roi);
540 hwc_rect_t r_fbRect = getIntersection(fbRect, r_roi);
541 fbRect = getUnion(l_fbRect, r_fbRect);
1270 hwc_rect_t fbRect = (struct hwc_rect){0, 0, 0, 0};
1277 fbRect = getUnion(fbRect, dst);
1280 trimAgainstROI(ctx, fbRect);
1281 return fbRect;
1301 hwc_rect_t fbRect = getUpdatingFBRect(ctx, list);
1302 if(!ctx->mFBUpdate[mDpy]->prepare(ctx, list, fbRect, mCurrentFrame.fbZ))