Home
last modified time | relevance | path

Searched refs:orientedDisplaySpace (Results 1 – 6 of 6) sorted by relevance

/frameworks/native/services/surfaceflinger/tests/unittests/
DDisplayDevice_SetProjectionTest.cpp104 EXPECT_EQ(Rect(expectedLogicalSize), compositionState.orientedDisplaySpace.getContent()); in expectDefaultState()
105 EXPECT_EQ(expectedLogicalSize, compositionState.orientedDisplaySpace.getBounds()); in expectDefaultState()
119 EXPECT_EQ(Rect(mHardwareDisplaySize), compositionState.orientedDisplaySpace.getContent()); in expectStateForHardwareTransform0()
134 compositionState.orientedDisplaySpace.getContent()); in expectStateForHardwareTransform90()
146 EXPECT_EQ(Rect(mHardwareDisplaySize), compositionState.orientedDisplaySpace.getContent()); in expectStateForHardwareTransform180()
161 compositionState.orientedDisplaySpace.getContent()); in expectStateForHardwareTransform270()
/frameworks/native/services/surfaceflinger/CompositionEngine/src/
DOutputCompositionState.cpp45 dumpVal(out, "orientedDisplaySpace", to_string(orientedDisplaySpace)); in dump()
DOutput.cpp183 outputState.orientedDisplaySpace.setBounds(orientedSize); in setProjection()
184 outputState.orientedDisplaySpace.setContent(orientedDisplaySpaceRect); in setProjection()
238 state.orientedDisplaySpace.setBounds(newOrientedBounds); in setDisplaySize()
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/impl/
DOutputCompositionState.h79 ProjectionSpace orientedDisplaySpace; member
/frameworks/native/services/surfaceflinger/CompositionEngine/tests/
DOutputTest.cpp329 EXPECT_EQ(frame, mOutput->getState().orientedDisplaySpace.getContent()); in TEST_F()
337 EXPECT_EQ(ui::ROTATION_0, state.orientedDisplaySpace.getOrientation()); in TEST_F()
338 EXPECT_EQ(frame, state.orientedDisplaySpace.getContent()); in TEST_F()
339 EXPECT_EQ(Rect(0, 0, 2000, 1000), state.orientedDisplaySpace.getBoundsAsRect()); in TEST_F()
370 EXPECT_EQ(frame, mOutput->getState().orientedDisplaySpace.getContent()); in TEST_F()
378 EXPECT_EQ(ui::ROTATION_0, state.orientedDisplaySpace.getOrientation()); in TEST_F()
379 EXPECT_EQ(frame, state.orientedDisplaySpace.getContent()); in TEST_F()
380 EXPECT_EQ(Rect(0, 0, 2000, 1000), state.orientedDisplaySpace.getBoundsAsRect()); in TEST_F()
401 mOutput->editState().orientedDisplaySpace.setContent(Rect(0, 0, 1800, 900)); in TEST_F()
402 mOutput->editState().orientedDisplaySpace.setBounds(ui::Size(2000, 1000)); in TEST_F()
[all …]
/frameworks/native/services/surfaceflinger/
DDisplayDevice.cpp343 return mCompositionDisplay->getState().orientedDisplaySpace.getContent(); in getOrientedDisplaySpaceRect()