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.cpp173 outputState.orientedDisplaySpace.setBounds(orientedSize); in setProjection()
174 outputState.orientedDisplaySpace.setContent(orientedDisplaySpaceRect); in setProjection()
228 state.orientedDisplaySpace.setBounds(newOrientedBounds); in setDisplaySize()
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/impl/
DOutputCompositionState.h75 ProjectionSpace orientedDisplaySpace; member
/frameworks/native/services/surfaceflinger/CompositionEngine/tests/
DOutputTest.cpp326 EXPECT_EQ(frame, mOutput->getState().orientedDisplaySpace.getContent()); in TEST_F()
334 EXPECT_EQ(ui::ROTATION_0, state.orientedDisplaySpace.getOrientation()); in TEST_F()
335 EXPECT_EQ(frame, state.orientedDisplaySpace.getContent()); in TEST_F()
336 EXPECT_EQ(Rect(0, 0, 2000, 1000), state.orientedDisplaySpace.getBoundsAsRect()); in TEST_F()
367 EXPECT_EQ(frame, mOutput->getState().orientedDisplaySpace.getContent()); in TEST_F()
375 EXPECT_EQ(ui::ROTATION_0, state.orientedDisplaySpace.getOrientation()); in TEST_F()
376 EXPECT_EQ(frame, state.orientedDisplaySpace.getContent()); in TEST_F()
377 EXPECT_EQ(Rect(0, 0, 2000, 1000), state.orientedDisplaySpace.getBoundsAsRect()); in TEST_F()
398 mOutput->editState().orientedDisplaySpace.setContent(Rect(0, 0, 1800, 900)); in TEST_F()
399 mOutput->editState().orientedDisplaySpace.setBounds(ui::Size(2000, 1000)); in TEST_F()
[all …]
/frameworks/native/services/surfaceflinger/
DDisplayDevice.cpp438 return mCompositionDisplay->getState().orientedDisplaySpace.getContent(); in getOrientedDisplaySpaceRect()