summaryrefslogtreecommitdiffstats
path: root/include/hardware/gralloc.h
diff options
context:
space:
mode:
authorJamie Gennis <jgennis@google.com>2010-07-01 16:49:07 -0700
committerJamie Gennis <jgennis@google.com>2010-07-01 16:49:07 -0700
commitaabb70292351f231bfd4daae8b73edb788eeba1a (patch)
tree68f4f2a4a40139a68da0bbf1104ca09ed6384de9 /include/hardware/gralloc.h
parent00758793ab2803ddb463260dbbb0479f254a3959 (diff)
downloadhardware_libhardware-aabb70292351f231bfd4daae8b73edb788eeba1a.zip
hardware_libhardware-aabb70292351f231bfd4daae8b73edb788eeba1a.tar.gz
hardware_libhardware-aabb70292351f231bfd4daae8b73edb788eeba1a.tar.bz2
Fix a typo in the GRALLOC_USAGE_HW_2D constant.
Change-Id: I3de500455715298765b2e27bc8c59e2ec6c7a34f
Diffstat (limited to 'include/hardware/gralloc.h')
-rw-r--r--include/hardware/gralloc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/hardware/gralloc.h b/include/hardware/gralloc.h
index d50c895..bbb22cf 100644
--- a/include/hardware/gralloc.h
+++ b/include/hardware/gralloc.h
@@ -64,7 +64,7 @@ enum {
/* buffer will be used as an OpenGL ES render target */
GRALLOC_USAGE_HW_RENDER = 0x00000200,
/* buffer will be used by the 2D hardware blitter */
- GRALLOC_USAGE_HW_2D = 0x00000C00,
+ GRALLOC_USAGE_HW_2D = 0x00000400,
/* buffer will be used with the framebuffer device */
GRALLOC_USAGE_HW_FB = 0x00001000,
/* mask for the software usage bit-mask */