summaryrefslogtreecommitdiffstats
path: root/include/hardware/gralloc.h
diff options
context:
space:
mode:
authorGreg Hackmann <ghackmann@google.com>2012-12-07 10:32:58 -0800
committerGreg Hackmann <ghackmann@google.com>2012-12-07 10:39:11 -0800
commitd6f7aad8de5d122d4189ecc608c749a63de4983d (patch)
tree9aee8a73e1620bdb77ee1c0909c1c0ca0ffaad43 /include/hardware/gralloc.h
parent39e03be075e31237b71508663a98c4b8506fe1b0 (diff)
downloadhardware_libhardware-d6f7aad8de5d122d4189ecc608c749a63de4983d.zip
hardware_libhardware-d6f7aad8de5d122d4189ecc608c749a63de4983d.tar.gz
hardware_libhardware-d6f7aad8de5d122d4189ecc608c749a63de4983d.tar.bz2
Fix GRALLOC_USAGE_SW_WRITE flag documentation
Change-Id: Ie553c521290358bf37c6954f65f790162aa43730 Signed-off-by: Greg Hackmann <ghackmann@google.com>
Diffstat (limited to 'include/hardware/gralloc.h')
-rw-r--r--include/hardware/gralloc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/hardware/gralloc.h b/include/hardware/gralloc.h
index 7c819f0..a6d9c1f 100644
--- a/include/hardware/gralloc.h
+++ b/include/hardware/gralloc.h
@@ -57,9 +57,9 @@ enum {
/* buffer is never written in software */
GRALLOC_USAGE_SW_WRITE_NEVER = 0x00000000,
- /* buffer is never written in software */
+ /* buffer is rarely written in software */
GRALLOC_USAGE_SW_WRITE_RARELY = 0x00000020,
- /* buffer is never written in software */
+ /* buffer is often written in software */
GRALLOC_USAGE_SW_WRITE_OFTEN = 0x00000030,
/* mask for the software write values */
GRALLOC_USAGE_SW_WRITE_MASK = 0x000000F0,