Home
last modified time | relevance | path

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

/frameworks/native/services/surfaceflinger/CompositionEngine/tests/
DDisplayColorProfileTest.cpp325 EXPECT_FALSE(profile.hasRenderIntent(RenderIntent::COLORIMETRIC)); in TEST_F()
326 EXPECT_FALSE(profile.hasRenderIntent(RenderIntent::ENHANCE)); in TEST_F()
327 EXPECT_FALSE(profile.hasRenderIntent(RenderIntent::TONE_MAP_COLORIMETRIC)); in TEST_F()
328 EXPECT_FALSE(profile.hasRenderIntent(RenderIntent::TONE_MAP_ENHANCE)); in TEST_F()
329 EXPECT_FALSE(profile.hasRenderIntent(VendorRenderIntent)); in TEST_F()
335 EXPECT_TRUE(profile.hasRenderIntent(RenderIntent::COLORIMETRIC)); in TEST_F()
336 EXPECT_TRUE(profile.hasRenderIntent(RenderIntent::ENHANCE)); in TEST_F()
337 EXPECT_FALSE(profile.hasRenderIntent(RenderIntent::TONE_MAP_COLORIMETRIC)); in TEST_F()
338 EXPECT_FALSE(profile.hasRenderIntent(RenderIntent::TONE_MAP_ENHANCE)); in TEST_F()
339 EXPECT_FALSE(profile.hasRenderIntent(VendorRenderIntent)); in TEST_F()
[all …]
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/mock/
DDisplayColorProfile.h32 MOCK_CONST_METHOD1(hasRenderIntent, bool(ui::RenderIntent));
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/
DDisplayColorProfile.h55 virtual bool hasRenderIntent(ui::RenderIntent) const = 0;
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/impl/
DDisplayColorProfile.h41 bool hasRenderIntent(ui::RenderIntent intent) const override;
/frameworks/native/services/surfaceflinger/
DDisplayDevice.cpp297 bool DisplayDevice::hasRenderIntent(ui::RenderIntent intent) const { in hasRenderIntent() function in android::DisplayDevice
298 return mCompositionDisplay->getDisplayColorProfile()->hasRenderIntent(intent); in hasRenderIntent()
DDisplayDevice.h146 bool hasRenderIntent(ui::RenderIntent intent) const;
DSurfaceFlinger.cpp5589 reply->writeBool(display->hasRenderIntent(RenderIntent::ENHANCE)); in onTransact()
5593 display->hasRenderIntent(static_cast<RenderIntent>(setting))); in onTransact()
/frameworks/native/services/surfaceflinger/CompositionEngine/src/
DDisplayColorProfile.cpp339 bool DisplayColorProfile::hasRenderIntent(RenderIntent intent) const { in hasRenderIntent() function in android::compositionengine::impl::DisplayColorProfile