summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Lockwood <lockwood@android.com>2009-11-10 07:51:33 -0500
committerMike Lockwood <lockwood@android.com>2009-11-10 07:51:33 -0500
commitbaf21439df7b4e641dfa990f12c287dc53c40f09 (patch)
treef77f26e42117df22de602dc695dfd9e3541bc11c
parenta58556d7d8919ca193ec894b3f8553357bbbccc4 (diff)
downloadlibhardware-eclair-release.tar.gz
This is to allow the framework to inform the lights HAL of the current lighting mode for the LCD backlight. Change-Id: I665653c4b9097c4dd92bf0aaa5d83953e134a886 Signed-off-by: Mike Lockwood <lockwood@android.com>
-rwxr-xr-xinclude/hardware/lights.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/include/hardware/lights.h b/include/hardware/lights.h
index e8b22943..2cf55193 100755
--- a/include/hardware/lights.h
+++ b/include/hardware/lights.h
@@ -72,6 +72,16 @@ __BEGIN_DECLS
#define LIGHT_FLASH_HARDWARE 2
/**
+ * Light brightness is managed by a user setting.
+ */
+#define BRIGHTNESS_MODE_USER 0
+
+/**
+ * Light brightness is managed by a light sensor.
+ */
+#define BRIGHTNESS_MODE_SENSOR 1
+
+/**
* The parameters that can be set for a given light.
*
* Not all lights must support all parameters. If you
@@ -100,6 +110,12 @@ struct light_state_t {
int flashMode;
int flashOnMS;
int flashOffMS;
+
+ /**
+ * Policy used by the framework to manage the light's brightness.
+ * Currently the values are BRIGHTNESS_MODE_USER and BRIGHTNESS_MODE_SENSOR.
+ */
+ int brightnessMode;
};
struct light_device_t {