summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJamie Gennis <jgennis@google.com>2011-08-10 12:54:46 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2011-08-10 12:54:46 -0700
commit2f94535daa4f470e05602a029864247f36e9d496 (patch)
treed730542ec702d471ae498932648b90b326401fe4
parent54c673d30a23bdd428f7e5700590f69b9f0910b6 (diff)
parent4b560d5563ee4699cd24938c2f13b4a416408273 (diff)
downloadlibhardware-2f94535daa4f470e05602a029864247f36e9d496.tar.gz
Merge "Gralloc: add a HWComposer usage bit"
-rw-r--r--include/hardware/gralloc.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/hardware/gralloc.h b/include/hardware/gralloc.h
index 8ee02401..9daad1c8 100644
--- a/include/hardware/gralloc.h
+++ b/include/hardware/gralloc.h
@@ -70,6 +70,8 @@ enum {
GRALLOC_USAGE_HW_RENDER = 0x00000200,
/* buffer will be used by the 2D hardware blitter */
GRALLOC_USAGE_HW_2D = 0x00000400,
+ /* buffer will be used by the HWComposer HAL module */
+ GRALLOC_USAGE_HW_COMPOSER = 0x00000800,
/* buffer will be used with the framebuffer device */
GRALLOC_USAGE_HW_FB = 0x00001000,
/* mask for the software usage bit-mask */