Home
last modified time | relevance | path

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

/frameworks/native/services/surfaceflinger/CompositionEngine/tests/
DDisplayColorProfileTest.cpp292 EXPECT_FALSE(profile.hasRenderIntent(RenderIntent::COLORIMETRIC)); in TEST_F()
293 EXPECT_FALSE(profile.hasRenderIntent(RenderIntent::ENHANCE)); in TEST_F()
294 EXPECT_FALSE(profile.hasRenderIntent(RenderIntent::TONE_MAP_COLORIMETRIC)); in TEST_F()
295 EXPECT_FALSE(profile.hasRenderIntent(RenderIntent::TONE_MAP_ENHANCE)); in TEST_F()
296 EXPECT_FALSE(profile.hasRenderIntent(VendorRenderIntent)); in TEST_F()
302 EXPECT_TRUE(profile.hasRenderIntent(RenderIntent::COLORIMETRIC)); in TEST_F()
303 EXPECT_TRUE(profile.hasRenderIntent(RenderIntent::ENHANCE)); in TEST_F()
304 EXPECT_FALSE(profile.hasRenderIntent(RenderIntent::TONE_MAP_COLORIMETRIC)); in TEST_F()
305 EXPECT_FALSE(profile.hasRenderIntent(RenderIntent::TONE_MAP_ENHANCE)); in TEST_F()
306 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.cpp302 bool DisplayDevice::hasRenderIntent(ui::RenderIntent intent) const { in hasRenderIntent() function in android::DisplayDevice
303 return mCompositionDisplay->getDisplayColorProfile()->hasRenderIntent(intent); in hasRenderIntent()
DDisplayDevice.h160 bool hasRenderIntent(ui::RenderIntent intent) const;
DSurfaceFlinger.cpp7330 reply->writeBool(display->hasRenderIntent(RenderIntent::ENHANCE)); in onTransact()
7334 display->hasRenderIntent(static_cast<RenderIntent>(setting))); in onTransact()
/frameworks/native/services/surfaceflinger/CompositionEngine/src/
DDisplayColorProfile.cpp328 bool DisplayColorProfile::hasRenderIntent(RenderIntent intent) const { in hasRenderIntent() function in android::compositionengine::impl::DisplayColorProfile