Lines Matching refs:mPreprocessedInfo

1014             mLayers[i]->mPreprocessedInfo.preProcessed) {  in checkDynamicReCompMode()
1029 w = WIDTH(mLayers[i]->mPreprocessedInfo.displayFrame); in checkDynamicReCompMode()
1030 h = HEIGHT(mLayers[i]->mPreprocessedInfo.displayFrame); in checkDynamicReCompMode()
1501 uint32_t w = WIDTH(layer.mPreprocessedInfo.displayFrame); in configureHandle()
1502 uint32_t h = HEIGHT(layer.mPreprocessedInfo.displayFrame); in configureHandle()
1530 if (layer.mPreprocessedInfo.displayFrame.left < 0) { in configureHandle()
1531 unsigned int crop = -layer.mPreprocessedInfo.displayFrame.left; in configureHandle()
1537 x = layer.mPreprocessedInfo.displayFrame.left; in configureHandle()
1540 if (layer.mPreprocessedInfo.displayFrame.right > (int)mXres) { in configureHandle()
1541 unsigned int crop = layer.mPreprocessedInfo.displayFrame.right - mXres; in configureHandle()
1547 if (layer.mPreprocessedInfo.displayFrame.top < 0) { in configureHandle()
1548 unsigned int crop = -layer.mPreprocessedInfo.displayFrame.top; in configureHandle()
1554 y = layer.mPreprocessedInfo.displayFrame.top; in configureHandle()
1557 if (layer.mPreprocessedInfo.displayFrame.bottom > (int)mYres) { in configureHandle()
1558 int crop = layer.mPreprocessedInfo.displayFrame.bottom - mYres; in configureHandle()
1592 if (!layer.mPreprocessedInfo.mUsePrivateFormat) in configureHandle()
1595 cfg.format = layer.mPreprocessedInfo.mPrivateFormat; in configureHandle()
1678 cfg.src.x = layer.mPreprocessedInfo.sourceCrop.left; in configureHandle()
1679 cfg.src.y = layer.mPreprocessedInfo.sourceCrop.top; in configureHandle()
1680 …cfg.src.w = WIDTH(layer.mPreprocessedInfo.sourceCrop) - (cfg.src.x - (uint32_t)layer.mPreprocessed… in configureHandle()
1681 …cfg.src.h = HEIGHT(layer.mPreprocessedInfo.sourceCrop) - (cfg.src.y - (uint32_t)layer.mPreprocesse… in configureHandle()