// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "ui/display/display_features.h" #include "base/feature_list.h" #include "build/build_config.h" #include "build/chromeos_buildflags.h" namespace display { namespace features { #if BUILDFLAG(IS_CHROMEOS_ASH) // Enables the rounded corners for the internal display. BASE_FEATURE(kRoundedDisplay, "RoundedDisplay", base::FEATURE_DISABLED_BY_DEFAULT); bool IsRoundedDisplayEnabled() { return base::FeatureList::IsEnabled(kRoundedDisplay); } // Enables using HDR transfer function if the monitor says it supports it. BASE_FEATURE(kUseHDRTransferFunction, "UseHDRTransferFunction", // TODO(b/168843009): Temporarily disable on ARM while investigating. #if defined(ARCH_CPU_ARM_FAMILY) base::FEATURE_DISABLED_BY_DEFAULT #else base::FEATURE_ENABLED_BY_DEFAULT #endif ); // Enables using HDR10(PQ) mode if the monitor says it supports it. BASE_FEATURE(kEnableExternalDisplayHDR10Mode, "EnableExternalDisplayHDR10Mode", base::FEATURE_DISABLED_BY_DEFAULT); #endif #if BUILDFLAG(IS_CHROMEOS) // Feature to control if the CTM is dynamically set to the primary transform // from plane color space to output color space. BASE_FEATURE(kCtmColorManagement, "CtmColorManagement", base::FEATURE_ENABLED_BY_DEFAULT); #endif // This features allows listing all display modes of external displays in the // display settings and setting any one of them exactly as requested, which can // be very useful for debugging and development purposes. BASE_FEATURE(…); bool IsListAllDisplayModesEnabled() { … } // TODO(gildekel): A temporary flag to control whether EDID-based (vs. // port-based) display IDs are generated per display. Remove once the migration // process it complete (b/193019614). BASE_FEATURE(…); bool IsEdidBasedDisplayIdsEnabled() { … } // Enable display scale factor meant for OLED display. BASE_FEATURE(…); bool IsOledScaleFactorEnabled() { … } // A temporary flag to control hardware mirroring until it is decided whether to // permanently remove hardware mirroring support. See crbug.com/1161556 for // details. BASE_FEATURE(…); bool IsHardwareMirrorModeEnabled() { … } // A temporary flag to require Content Protection to use provisioned key as the // kernel doesn't expose that it requires this yet.(b/112172923) BASE_FEATURE(…); bool IsHdcpKeyProvisioningRequired() { … } BASE_FEATURE(…); bool IsPanelSelfRefresh2Enabled() { … } BASE_FEATURE(…); bool IsTiledDisplaySupportEnabled() { … } } // namespace features } // namespace display