summaryrefslogtreecommitdiff
path: root/include/android/system/core/include/system/graphics-sw.h
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2021-05-27 03:46:34 +0300
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2021-05-31 19:26:59 +0300
commit1ac84feab8ace4b147023e36867dadb6e6e9a082 (patch)
tree90669f7f774940b29747373369bf0709ca67f4cf /include/android/system/core/include/system/graphics-sw.h
parentb602bbe8116695779abc246929b4a8b8949e59d4 (diff)
android: Update Android headers
Import the latest version of the Android headers from Chrome OS (commit a30340e77ec8 ("camera: Uprev Android camera headers")). This brings in the Camera HAL v3.5 support. The headers are imported verbatim, except for the addition of the SPDX headers. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Hirokazu Honda <hiroh@chromium.org> Tested-by: Paul Elder <paul.elder@ideasonboard.com>
Diffstat (limited to 'include/android/system/core/include/system/graphics-sw.h')
-rw-r--r--include/android/system/core/include/system/graphics-sw.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/include/android/system/core/include/system/graphics-sw.h b/include/android/system/core/include/system/graphics-sw.h
new file mode 100644
index 00000000..9e1a88e9
--- /dev/null
+++ b/include/android/system/core/include/system/graphics-sw.h
@@ -0,0 +1,16 @@
+#ifndef SYSTEM_CORE_GRAPHICS_SW_H_
+#define SYSTEM_CORE_GRAPHICS_SW_H_
+
+/* Software formats not in the HAL definitions. */
+typedef enum {
+ HAL_PIXEL_FORMAT_YCBCR_422_888 = 39, // 0x27
+ HAL_PIXEL_FORMAT_YCBCR_444_888 = 40, // 0x28
+ HAL_PIXEL_FORMAT_FLEX_RGB_888 = 41, // 0x29
+ HAL_PIXEL_FORMAT_FLEX_RGBA_8888 = 42, // 0x2A
+} android_pixel_format_sw_t;
+
+/* for compatibility */
+#define HAL_PIXEL_FORMAT_YCbCr_422_888 HAL_PIXEL_FORMAT_YCBCR_422_888
+#define HAL_PIXEL_FORMAT_YCbCr_444_888 HAL_PIXEL_FORMAT_YCBCR_444_888
+
+#endif // SYSTEM_CORE_GRAPHICS_SW_H_