Lines Matching refs:rot
1517 int configRotator(Rotator *rot, Whf& whf, in configRotator() argument
1527 rot->setSource(whf); in configRotator()
1533 rot->setCrop(rotCrop); in configRotator()
1536 rot->setFlags(mdpFlags); in configRotator()
1537 rot->setTransform(orient); in configRotator()
1538 rot->setDownscale(downscale); in configRotator()
1539 if(!rot->commit()) return -1; in configRotator()
1607 hwc_rect_t& crop, Rotator *rot) { in updateSource() argument
1615 whf = rot->getDstWhf(); in updateSource()
1616 transformedCrop = rot->getDstDimensions(); in updateSource()
1632 eIsFg& isFg, const eDest& dest, Rotator **rot) { in configureNonSplit() argument
1682 *rot = ctx->mRotMgr->getNext(); in configureNonSplit()
1683 if(*rot == NULL) return -1; in configureNonSplit()
1684 ctx->mLayerRotMap[dpy]->add(layer, *rot); in configureNonSplit()
1689 if(configRotator(*rot, whf, crop, mdpFlags, orient, downscale) < 0) { in configureNonSplit()
1693 updateSource(orient, whf, crop, *rot); in configureNonSplit()
1743 Rotator **rot) { in configureSplit() argument
1790 (*rot) = ctx->mRotMgr->getNext(); in configureSplit()
1791 if((*rot) == NULL) return -1; in configureSplit()
1792 ctx->mLayerRotMap[dpy]->add(layer, *rot); in configureSplit()
1794 if(configRotator(*rot, whf, crop, mdpFlagsL, orient, downscale) < 0) { in configureSplit()
1798 updateSource(orient, whf, crop, *rot); in configureSplit()
1834 (dst.right > lSplit) && (*rot) == NULL) { in configureSplit()
1889 Rotator **rot) { in configureSourceSplit() argument
1920 (*rot) = ctx->mRotMgr->getNext(); in configureSourceSplit()
1921 if((*rot) == NULL) return -1; in configureSourceSplit()
1922 ctx->mLayerRotMap[dpy]->add(layer, *rot); in configureSourceSplit()
1927 if(configRotator(*rot, whf, crop, mdpFlagsL, orient, downscale) < 0) { in configureSourceSplit()
1931 updateSource(orient, whf, crop, *rot); in configureSourceSplit()
1960 && rDest != OV_INVALID && (*rot) == NULL) { in configureSourceSplit()
2206 void LayerRotMap::add(hwc_layer_1_t* layer, Rotator *rot) { in add() argument
2209 mRot[mCount] = rot; in add()