diff options
author | Adnan Begovic <adnan@cyngn.com> | 2015-11-10 18:10:54 -0800 |
---|---|---|
committer | Adnan Begovic <adnan@cyngn.com> | 2015-11-10 18:10:54 -0800 |
commit | a09defa3c908589ad47cac7cd0de80c02832d532 (patch) | |
tree | 393a1c6d8d580316bde5c6bfdc3be1bb144ed120 /src | |
parent | b006e980e73b60a71139fda3c4fb9e6e1f97d9c8 (diff) | |
download | vendor_cmsdk-a09defa3c908589ad47cac7cd0de80c02832d532.zip vendor_cmsdk-a09defa3c908589ad47cac7cd0de80c02832d532.tar.gz vendor_cmsdk-a09defa3c908589ad47cac7cd0de80c02832d532.tar.bz2 |
cmsdk: Move LiveDisplay settings and resources.
Change-Id: I6d0c3f8b645e2c8cca059ff343a774eab1933a9b
Diffstat (limited to 'src')
-rw-r--r-- | src/java/cyanogenmod/providers/CMSettings.java | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/src/java/cyanogenmod/providers/CMSettings.java b/src/java/cyanogenmod/providers/CMSettings.java index a143fa2..a71295f 100644 --- a/src/java/cyanogenmod/providers/CMSettings.java +++ b/src/java/cyanogenmod/providers/CMSettings.java @@ -977,6 +977,55 @@ public final class CMSettings { * @hide */ public static final String WIFI_AUTO_CONNECT_TYPE = "wifi_auto_connect_type"; + + /** + * Color temperature of the display during the day + * @hide + */ + public static final String DISPLAY_TEMPERATURE_DAY = "display_temperature_day"; + + /** + * Color temperature of the display at night + * @hide + */ + public static final String DISPLAY_TEMPERATURE_NIGHT = "display_temperature_night"; + + /** + * Display color temperature adjustment mode, one of DAY (default), NIGHT, or AUTO. + * @hide + */ + public static final String DISPLAY_TEMPERATURE_MODE = "display_temperature_mode"; + + /** + * Automatic outdoor mode + * @hide + */ + public static final String DISPLAY_AUTO_OUTDOOR_MODE = "display_auto_outdoor_mode"; + + /** + * Use display power saving features such as CABC or CABL + * @hide + */ + public static final String DISPLAY_LOW_POWER = "display_low_power"; + + /** + * Use color enhancement feature of display + * @hide + */ + public static final String DISPLAY_COLOR_ENHANCE = "display_color_enhance"; + + /** + * Manual display color adjustments (RGB values as floats, separated by spaces) + * @hide + */ + public static final String DISPLAY_COLOR_ADJUSTMENT = "display_color_adjustment"; + + /** + * Did we tell about how they can stop breaking their eyes? + * @hide + */ + public static final String LIVE_DISPLAY_HINTED = "live_display_hinted"; + } /** |