summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIgor Murashkin <iam@google.com>2013-02-11 19:46:21 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2013-02-11 19:46:22 +0000
commit6711f76d244b22d8c39c33963d2d81504816eaf4 (patch)
treef03524c037979bcf334a7b36b08d9bc9e13de1c1
parentfba6c12a3e6ac5fabe91270293b1115f72fd48a1 (diff)
parentd755b52b43913913e0915c50b5ff0d03c96eed49 (diff)
downloadsystem_core-6711f76d244b22d8c39c33963d2d81504816eaf4.zip
system_core-6711f76d244b22d8c39c33963d2d81504816eaf4.tar.gz
system_core-6711f76d244b22d8c39c33963d2d81504816eaf4.tar.bz2
Merge "graphics.h: Remove unnecessary comments for Y8/Y16 formats" into jb-mr1-aah-dev
-rw-r--r--include/system/graphics.h14
1 files changed, 2 insertions, 12 deletions
diff --git a/include/system/graphics.h b/include/system/graphics.h
index c8b9d40..ab064db 100644
--- a/include/system/graphics.h
+++ b/include/system/graphics.h
@@ -106,12 +106,7 @@ enum {
* - a horizontal stride multiple of 16 pixels
* - a vertical stride equal to the height
*
- * y_size = stride * height
- * c_stride = ALIGN(stride/2, 16)
- * c_size = c_stride * height/2
- * size = y_size + c_size * 2
- * cr_offset = y_size
- * cb_offset = y_size + c_size
+ * size = stride * height
*
*/
HAL_PIXEL_FORMAT_Y8 = 0x20203859,
@@ -135,12 +130,7 @@ enum {
* - a vertical stride equal to the height
* - strides are specified in pixels, not in bytes
*
- * y_size = stride * height
- * c_stride = ALIGN(stride/2, 16)
- * c_size = c_stride * height/2
- * size = y_size + c_size * 2
- * cr_offset = y_size
- * cb_offset = y_size + c_size
+ * size = stride * height * 2
*
*/
HAL_PIXEL_FORMAT_Y16 = 0x20363159,