Home | History | Annotate | Download | only in libhwcomposer

Lines Matching refs:fbRect

440 void MDPCompNonSplit::trimAgainstROI(hwc_context_t *ctx, hwc_rect_t& fbRect) {
442 fbRect = getIntersection(fbRect, roi);
536 void MDPCompSplit::trimAgainstROI(hwc_context_t *ctx, hwc_rect_t& fbRect) {
540 hwc_rect_t l_fbRect = getIntersection(fbRect, l_roi);
541 hwc_rect_t r_fbRect = getIntersection(fbRect, r_roi);
542 fbRect = getUnion(l_fbRect, r_fbRect);
1445 hwc_rect_t fbRect = (struct hwc_rect){0, 0, 0, 0};
1452 fbRect = getUnion(fbRect, dst);
1455 trimAgainstROI(ctx, fbRect);
1456 return fbRect;
1476 hwc_rect_t fbRect = getUpdatingFBRect(ctx, list);
1477 if(!ctx->mFBUpdate[mDpy]->prepare(ctx, list, fbRect, mCurrentFrame.fbZ))