Home
last modified time | relevance | path

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

/aosp12/frameworks/native/services/surfaceflinger/CompositionEngine/tests/
H A DDisplayColorProfileTest.cpp326 EXPECT_FALSE(profile.hasRenderIntent(RenderIntent::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()
339 EXPECT_FALSE(profile.hasRenderIntent(VendorRenderIntent)); in TEST_F()
345 EXPECT_TRUE(profile.hasRenderIntent(RenderIntent::COLORIMETRIC)); in TEST_F()
346 EXPECT_TRUE(profile.hasRenderIntent(RenderIntent::ENHANCE)); in TEST_F()
349 EXPECT_TRUE(profile.hasRenderIntent(VendorRenderIntent)); in TEST_F()
355 EXPECT_TRUE(profile.hasRenderIntent(RenderIntent::COLORIMETRIC)); in TEST_F()
356 EXPECT_FALSE(profile.hasRenderIntent(RenderIntent::ENHANCE)); in TEST_F()
[all …]
/aosp12/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/mock/
H A DDisplayColorProfile.h32 MOCK_CONST_METHOD1(hasRenderIntent, bool(ui::RenderIntent));
/aosp12/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/
H A DDisplayColorProfile.h55 virtual bool hasRenderIntent(ui::RenderIntent) const = 0;
/aosp12/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/impl/
H A DDisplayColorProfile.h41 bool hasRenderIntent(ui::RenderIntent intent) const override;
/aosp12/frameworks/native/services/surfaceflinger/
H A DDisplayDevice.cpp327 bool DisplayDevice::hasRenderIntent(ui::RenderIntent intent) const { in hasRenderIntent() function in android::DisplayDevice
328 return mCompositionDisplay->getDisplayColorProfile()->hasRenderIntent(intent); in hasRenderIntent()
H A DDisplayDevice.h159 bool hasRenderIntent(ui::RenderIntent intent) const;
H A DSurfaceFlinger.cpp5671 reply->writeBool(display->hasRenderIntent(RenderIntent::ENHANCE)); in onTransact()
5675 display->hasRenderIntent(static_cast<RenderIntent>(setting))); in onTransact()
/aosp12/frameworks/native/services/surfaceflinger/CompositionEngine/src/
H A DDisplayColorProfile.cpp339 bool DisplayColorProfile::hasRenderIntent(RenderIntent intent) const { in hasRenderIntent() function in android::compositionengine::impl::DisplayColorProfile