Home
last modified time | relevance | path

Searched refs:mOutputLayer (Results 1 – 5 of 5) sorted by relevance

/frameworks/native/services/surfaceflinger/CompositionEngine/tests/
DOutputLayerTest.cpp109 OutputLayer mOutputLayer{mOutput, mLayerFE}; member
128 mOutputLayer.setHwcLayer(nullptr); in TEST_F()
130 EXPECT_FALSE(mOutputLayer.getState().hwc); in TEST_F()
136 mOutputLayer.setHwcLayer(hwcLayer); in TEST_F()
138 const auto& outputLayerState = mOutputLayer.getState(); in TEST_F()
167 return mOutputLayer.calculateOutputSourceCrop(); in calculateOutputSourceCrop()
275 return mOutputLayer.calculateOutputDisplayFrame(); in calculateOutputDisplayFrame()
405 const auto actual = mOutputLayer.calculateOutputRelativeBufferTransform(entry.display); in TEST_F()
517 const auto actual = mOutputLayer.calculateOutputRelativeBufferTransform(entry.internal); in TEST_F()
561 EXPECT_CALL(mOutputLayer, calculateOutputSourceCrop()).WillOnce(Return(kSourceCrop)); in setupGeometryChildCallValues()
[all …]
DOutputTest.cpp1810 EXPECT_CALL(mOutputLayer, getLayerFE()).WillRepeatedly(ReturnRef(*mLayerFE)); in Layer()
1814 StrictMock<mock::OutputLayer> mOutputLayer; member
1825 .WillRepeatedly(Return(&mLayer1.mOutputLayer)); in OutputUpdateColorProfileTest()
1827 .WillRepeatedly(Return(&mLayer2.mOutputLayer)); in OutputUpdateColorProfileTest()
1829 .WillRepeatedly(Return(&mLayer3.mOutputLayer)); in OutputUpdateColorProfileTest()
3450 EXPECT_CALL(mOutputLayer, getLayerFE()).WillRepeatedly(ReturnRef(*mLayerFE)); in Layer()
3453 StrictMock<mock::OutputLayer> mOutputLayer; member
3464 .WillRepeatedly(Return(&mLayer1.mOutputLayer)); in OutputComposeSurfacesTest_HandlesProtectedContent()
3466 .WillRepeatedly(Return(&mLayer2.mOutputLayer)); in OutputComposeSurfacesTest_HandlesProtectedContent()
3664 EXPECT_CALL(mOutputLayer, getState()).WillRepeatedly(ReturnRef(mOutputLayerState)); in Layer()
[all …]
/frameworks/native/services/surfaceflinger/CompositionEngine/tests/planner/
DLayerStateTest.cpp107 mock::OutputLayer mOutputLayer; member
114 setupMocksForLayer(mOutputLayer, mLayerFE, outputLayerCompositionState, in TEST_F()
116 mLayerState = std::make_unique<LayerState>(&mOutputLayer); in TEST_F()
117 EXPECT_EQ(&mOutputLayer, mLayerState->getOutputLayer()); in TEST_F()
123 setupMocksForLayer(mOutputLayer, mLayerFE, outputLayerCompositionState, in TEST_F()
125 mLayerState = std::make_unique<LayerState>(&mOutputLayer); in TEST_F()
126 EXPECT_EQ(&mOutputLayer, mLayerState->getOutputLayer()); in TEST_F()
139 setupMocksForLayer(mOutputLayer, mLayerFE, outputLayerCompositionState, in TEST_F()
141 mLayerState = std::make_unique<LayerState>(&mOutputLayer); in TEST_F()
148 setupMocksForLayer(mOutputLayer, mLayerFE, outputLayerCompositionState, in TEST_F()
[all …]
/frameworks/native/services/surfaceflinger/CompositionEngine/src/planner/
DLayerState.cpp28 : mOutputLayer(layer), in LayerState()
45 ALOGE_IF(mOutputLayer != layer && layer->getLayerFE().getSequence() != mId.get(), in update()
51 mOutputLayer = layer; in update()
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/impl/planner/
DLayerState.h226 compositionengine::OutputLayer* getOutputLayer() const { return mOutputLayer; }
257 compositionengine::OutputLayer* mOutputLayer = nullptr;