sm7125-common: overlay: decouple interactive mode from display

Change-Id: Ie7bb010c1ce00e7fda28b639d859d8b536772f47
fourteen-wip
Demon000 4 years ago committed by Simon1511
parent f09e496196
commit aa1ed8cd81
  1. 19
      overlay/frameworks/base/core/res/res/values/config.xml

@ -306,4 +306,23 @@
May be less than the minimum allowed brightness setting
that can be set by the user. -->
<integer name="config_screenBrightnessDoze">17</integer>
<!-- Power Management: Specifies whether to decouple the interactive state of the
device from the display on/off state.
When false, setInteractive(..., true) will be called before the display is turned on
and setInteractive(..., false) will be called after the display is turned off.
This mode provides best compatibility for devices that expect the interactive
state to be tied to the display state.
When true, setInteractive(...) will be called independently of whether the display
is being turned on or off. This mode enables the power manager to reduce
clocks and disable the touch controller while the display is on.
This resource should be set to "true" when a doze component has been specified
to maximize power savings but not all devices support it.
Refer to power.h for details.
-->
<bool name="config_powerDecoupleInteractiveModeFromDisplay">false</bool>
</resources>

Loading…
Cancel
Save