Home
last modified time | relevance | path

Searched refs:hasWideColorDisplay (Results 1 – 12 of 12) sorted by relevance

/aosp12/hardware/interfaces/configstore/1.0/vts/functional/
H A DVtsHalConfigstoreV1_0TargetTest.cpp69 status = sfConfigs->hasWideColorDisplay( in TEST_P()
127 bool hasWideColorDisplay; in TEST_P() local
130 Return<void> status = sfConfigs->hasWideColorDisplay( in TEST_P()
131 [&](OptionalBool arg) { hasWideColorDisplay = arg.specified; }); in TEST_P()
139 ASSERT_TRUE(hasWideColorDisplay); in TEST_P()
/aosp12/frameworks/native/opengl/tests/EGLTest/
H A DEGL_test.cpp56 static bool hasWideColorDisplay = android::sysprop::has_wide_color_display(false); variable
210 if (!hasWideColorDisplay) { in TEST_F()
296 if (!hasWideColorDisplay) { in TEST_F()
350 if (!hasWideColorDisplay) { in TEST_F()
664 if (!hasWideColorDisplay) { in TEST_F()
729 if (!hasWideColorDisplay) { in TEST_F()
767 if (!hasWideColorDisplay) { in TEST_F()
/aosp12/hardware/interfaces/configstore/1.1/default/
H A DSurfaceFlingerConfigs.h40 Return<void> hasWideColorDisplay(hasWideColorDisplay_cb _hidl_cb) override;
H A DSurfaceFlingerConfigs.cpp66 Return<void> SurfaceFlingerConfigs::hasWideColorDisplay(hasWideColorDisplay_cb _hidl_cb) { in hasWideColorDisplay() function in android::hardware::configstore::V1_1::implementation::SurfaceFlingerConfigs
/aosp12/hardware/interfaces/configstore/1.0/
H A DISurfaceFlingerConfigs.hal50 * hasWideColorDisplay indicates that the device has
61 hasWideColorDisplay() generates (OptionalBool value);
/aosp12/frameworks/native/services/surfaceflinger/sysprop/
H A DSurfaceFlingerProperties.sysprop90 # hasWideColorDisplay indicates that the device has
250 # When hasWideColorDisplay returns true, this API must return a
254 # color gamut, meaning hasWideColorDisplay returns false.
/aosp12/frameworks/native/services/surfaceflinger/
H A DSurfaceFlingerProperties.cpp96 return getBool<ISurfaceFlingerConfigs, &ISurfaceFlingerConfigs::hasWideColorDisplay>( in has_wide_color_display()
H A DSurfaceFlinger.cpp333 bool SurfaceFlinger::hasWideColorDisplay; member in android::SurfaceFlinger
398 hasWideColorDisplay = has_wide_color_display(false); in SurfaceFlinger()
407 hasWideColorDisplay ? Dataspace::DISPLAY_P3 : Dataspace::V0_SRGB)); in SurfaceFlinger()
1315 if (isInternalDisplay && !hasWideColorDisplay) { in getDisplayColorModes()
1492 display->isPrimary() ? hasWideColorDisplay : display->hasWideColorGamut(); in isWideColorDisplay()
4979 StringAppendF(&result, "Device has wide color built-in display: %d\n", hasWideColorDisplay); in dumpWideColorInfo()
H A DSurfaceFlinger.h241 static bool hasWideColorDisplay; variable
/aosp12/frameworks/native/services/surfaceflinger/tests/unittests/
H A DTestableSurfaceFlinger.h421 auto& mutableHasWideColorDisplay() { return SurfaceFlinger::hasWideColorDisplay; } in mutableHasWideColorDisplay()
/aosp12/frameworks/native/libs/gui/tests/
H A DSurface_test.cpp52 static bool hasWideColorDisplay = android::sysprop::has_wide_color_display(false); variable
437 ASSERT_EQ(hasWideColorDisplay, supported); in TEST_F()
/aosp12/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowManagerService.java4974 OptionalBool hasWideColor = surfaceFlinger.hasWideColorDisplay(); in queryWideColorGamutSupport()