Home
last modified time | relevance | path

Searched refs:isDataspaceSupported (Results 1 – 7 of 7) sorted by relevance

/frameworks/native/services/surfaceflinger/CompositionEngine/tests/
DDisplayColorProfileTest.cpp586 EXPECT_TRUE(profile.isDataspaceSupported(Dataspace::UNKNOWN)); in TEST_F()
587 EXPECT_TRUE(profile.isDataspaceSupported(Dataspace::V0_SRGB)); in TEST_F()
588 EXPECT_FALSE(profile.isDataspaceSupported(Dataspace::BT2020_PQ)); in TEST_F()
589 EXPECT_FALSE(profile.isDataspaceSupported(Dataspace::BT2020_ITU_PQ)); in TEST_F()
590 EXPECT_FALSE(profile.isDataspaceSupported(Dataspace::BT2020_HLG)); in TEST_F()
591 EXPECT_FALSE(profile.isDataspaceSupported(Dataspace::BT2020_ITU_HLG)); in TEST_F()
597 EXPECT_TRUE(profile.isDataspaceSupported(Dataspace::UNKNOWN)); in TEST_F()
598 EXPECT_TRUE(profile.isDataspaceSupported(Dataspace::V0_SRGB)); in TEST_F()
599 EXPECT_TRUE(profile.isDataspaceSupported(Dataspace::BT2020_PQ)); in TEST_F()
600 EXPECT_TRUE(profile.isDataspaceSupported(Dataspace::BT2020_ITU_PQ)); in TEST_F()
[all …]
DOutputLayerTest.cpp563 EXPECT_CALL(mDisplayColorProfile, isDataspaceSupported(_)).WillRepeatedly(Return(true)); in OutputLayerUpdateCompositionStateTest()
743 EXPECT_CALL(mDisplayColorProfile, isDataspaceSupported(_)).WillRepeatedly(Return(false)); in TEST_F()
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/mock/
DDisplayColorProfile.h45 MOCK_CONST_METHOD1(isDataspaceSupported, bool(ui::Dataspace));
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/
DDisplayColorProfile.h88 virtual bool isDataspaceSupported(ui::Dataspace) const = 0;
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/impl/
DDisplayColorProfile.h57 bool isDataspaceSupported(ui::Dataspace) const override;
/frameworks/native/services/surfaceflinger/CompositionEngine/src/
DDisplayColorProfile.cpp368 bool DisplayColorProfile::isDataspaceSupported(Dataspace dataspace) const { in isDataspaceSupported() function in android::compositionengine::impl::DisplayColorProfile
DOutputLayer.cpp368 if (layerFEState->forceClientComposition || !profile.isDataspaceSupported(state.dataspace) || in updateCompositionState()