Home
last modified time | relevance | path

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

/frameworks/native/services/surfaceflinger/CompositionEngine/tests/
DDisplayColorProfileTest.cpp354 EXPECT_FALSE(profile.hasRenderIntent(RenderIntent::COLORIMETRIC)); in TEST_F()
355 EXPECT_FALSE(profile.hasRenderIntent(RenderIntent::ENHANCE)); in TEST_F()
356 EXPECT_FALSE(profile.hasRenderIntent(RenderIntent::TONE_MAP_COLORIMETRIC)); in TEST_F()
357 EXPECT_FALSE(profile.hasRenderIntent(RenderIntent::TONE_MAP_ENHANCE)); in TEST_F()
358 EXPECT_FALSE(profile.hasRenderIntent(VendorRenderIntent)); in TEST_F()
364 EXPECT_TRUE(profile.hasRenderIntent(RenderIntent::COLORIMETRIC)); in TEST_F()
365 EXPECT_TRUE(profile.hasRenderIntent(RenderIntent::ENHANCE)); in TEST_F()
366 EXPECT_FALSE(profile.hasRenderIntent(RenderIntent::TONE_MAP_COLORIMETRIC)); in TEST_F()
367 EXPECT_FALSE(profile.hasRenderIntent(RenderIntent::TONE_MAP_ENHANCE)); in TEST_F()
368 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.h46 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.cpp306 bool DisplayDevice::hasRenderIntent(ui::RenderIntent intent) const { in hasRenderIntent() function in android::DisplayDevice
307 return mCompositionDisplay->getDisplayColorProfile()->hasRenderIntent(intent); in hasRenderIntent()
DDisplayDevice.h131 bool hasRenderIntent(ui::RenderIntent intent) const;
DSurfaceFlinger.cpp5400 reply->writeBool(display->hasRenderIntent(RenderIntent::ENHANCE)); in onTransact()
5404 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