diff options
author | Steve Kondik <steve@cyngn.com> | 2015-02-18 03:52:24 -0800 |
---|---|---|
committer | Steve Kondik <steve@cyngn.com> | 2015-10-18 22:37:44 -0700 |
commit | 815d19d74a713e62247c970416fb40774ee797dd (patch) | |
tree | 34f3e4e55e966450665de9953c22b79f9a138c5a /packages/SystemUI/AndroidManifest.xml | |
parent | a17a01aa535cc8b669b4f0574a72c25ed82541dc (diff) | |
download | frameworks_base-815d19d74a713e62247c970416fb40774ee797dd.zip frameworks_base-815d19d74a713e62247c970416fb40774ee797dd.tar.gz frameworks_base-815d19d74a713e62247c970416fb40774ee797dd.tar.bz2 |
livedisplay: Implement active display adjustment
* LiveDisplay is our new name for the various display technologies
which adjust the screen based on environmental conditions other
than the standard automatic backlight controls.
* This patch implements automatic color temperature adjustment based
on time of day. This is similar to f.lux or Redshift. My eyes are
so happy now!
* Automatic outdoor/SRE feature is now handled here.
* Handling of CABC/CABL and color enhancements also handled here.
* Manual RGB tweaking is handled here.
* Can delegate to DisplayColor HAL if available, otherwise uses
SurfaceFlinger's 1015 operation to apply changes.
* Happily coexists with the new accessibility features for color
blindness correction and color inversion.
* All postprocessing will be disabled when powersave mode is
activated.
Change-Id: Iac1b74f410957f8e2d8290465c4ce9cc1fd97a88
Diffstat (limited to 'packages/SystemUI/AndroidManifest.xml')
-rw-r--r-- | packages/SystemUI/AndroidManifest.xml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/packages/SystemUI/AndroidManifest.xml b/packages/SystemUI/AndroidManifest.xml index 02abdb1..8375197 100644 --- a/packages/SystemUI/AndroidManifest.xml +++ b/packages/SystemUI/AndroidManifest.xml @@ -132,6 +132,9 @@ android:protectionLevel="signature" /> <uses-permission android:name="com.android.systemui.permission.SELF" /> + <!-- LiveDisplay --> + <uses-permission android:name="android.permission.HARDWARE_ABSTRACTION_ACCESS" /> + <application android:name=".SystemUIApplication" android:persistent="true" |