Home
last modified time | relevance | path

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

/frameworks/native/services/surfaceflinger/CompositionEngine/tests/
DRenderSurfaceTest.cpp214 EXPECT_CALL(mHwComposer, hasDeviceComposition(DEFAULT_DISPLAY_ID)).WillOnce(Return(true)); in TEST_F()
226 EXPECT_CALL(mHwComposer, hasDeviceComposition(DEFAULT_DISPLAY_ID)).WillOnce(Return(false)); in TEST_F()
238 EXPECT_CALL(mHwComposer, hasDeviceComposition(DEFAULT_DISPLAY_ID)).WillOnce(Return(true)); in TEST_F()
250 EXPECT_CALL(mHwComposer, hasDeviceComposition(DEFAULT_DISPLAY_ID)).WillOnce(Return(false)); in TEST_F()
DMockHWComposer.h52 MOCK_CONST_METHOD1(hasDeviceComposition, bool(const std::optional<DisplayId>&));
/frameworks/native/services/surfaceflinger/DisplayHardware/
DHWComposer.h97 virtual bool hasDeviceComposition(const std::optional<DisplayId>& displayId) const = 0;
235 bool hasDeviceComposition(const std::optional<DisplayId>& displayId) const override;
334 bool hasDeviceComposition = false; member
DHWComposer.cpp465 displayData.hasDeviceComposition = false; in prepare()
487 displayData.hasDeviceComposition = true; in prepare()
511 bool HWComposer::hasDeviceComposition(const std::optional<DisplayId>& displayId) const { in hasDeviceComposition() function in android::impl::HWComposer
519 return mDisplayData.at(*displayId).hasDeviceComposition; in hasDeviceComposition()
/frameworks/native/services/surfaceflinger/CompositionEngine/src/
DRenderSurface.cpp125 const bool hasDevice = hwc.hasDeviceComposition(id); in prepareFrame()
/frameworks/native/services/surfaceflinger/
DSurfaceFlinger.cpp1757 mHadDeviceComposition || getHwComposer().hasDeviceComposition(displayId); in handleMessageRefresh()
3387 const bool hasDeviceComposition = getHwComposer().hasDeviceComposition(displayId); in doComposeSurfaces() local
3394 applyColorMatrix = !hasDeviceComposition && !skipClientColorTransform; in doComposeSurfaces()