Home
last modified time | relevance | path

Searched refs:hasHDR10Support (Results 1 – 8 of 8) sorted by relevance

/frameworks/native/services/surfaceflinger/CompositionEngine/src/
DDisplayColorProfile.cpp226 if (!hasHDR10Support()) { in DisplayColorProfile()
256 bool DisplayColorProfile::hasHDR10Support() const { in hasHDR10Support() function in android::compositionengine::impl::DisplayColorProfile
347 if ((dataspace == Dataspace::BT2020_PQ && hasHDR10Support()) || in hasLegacyHdrSupport()
383 return hasHDR10Support(); in isDataspaceSupported()
412 dumpVal(out, "hdr10", hasHDR10Support()); in dump()
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/mock/
DDisplayColorProfile.h40 MOCK_CONST_METHOD0(hasHDR10Support, bool());
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/
DDisplayColorProfile.h75 virtual bool hasHDR10Support() const = 0;
/frameworks/native/services/surfaceflinger/CompositionEngine/tests/
DDisplayColorProfileTest.cpp203 EXPECT_FALSE(profile.hasHDR10Support()); in TEST_F()
214 EXPECT_FALSE(profile.hasHDR10Support()); in TEST_F()
225 EXPECT_TRUE(profile.hasHDR10Support()); in TEST_F()
236 EXPECT_FALSE(profile.hasHDR10Support()); in TEST_F()
246 EXPECT_FALSE(profile.hasHDR10Support()); in TEST_F()
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/impl/
DDisplayColorProfile.h52 bool hasHDR10Support() const override;
/frameworks/native/services/surfaceflinger/
DDisplayDevice.cpp329 bool DisplayDevice::hasHDR10Support() const { in hasHDR10Support() function in android::DisplayDevice
330 return mCompositionDisplay->getDisplayColorProfile()->hasHDR10Support(); in hasHDR10Support()
DDisplayDevice.h118 bool hasHDR10Support() const;
/frameworks/native/services/surfaceflinger/tests/unittests/
DDisplayTransactionTest.cpp1818 EXPECT_EQ(Case::HdrSupport::HDR10_SUPPORTED, device->hasHDR10Support()); in setupNewDisplayDeviceInternalTest()