summaryrefslogtreecommitdiff
path: root/include/blt_api.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/blt_api.h')
-rwxr-xr-xinclude/blt_api.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/blt_api.h b/include/blt_api.h
index fc77684..df7ec8f 100755
--- a/include/blt_api.h
+++ b/include/blt_api.h
@@ -245,6 +245,16 @@ enum blt_fmt {
* order is swapped.)
*/
BLT_FMT_YVU422_PACKED_PLANAR = 0x7F00000C,
+ /**
+ * @brief 24 bits per pixel VUY format with colors stored as
+ * V 23:16, U 15:8, and Y 7:0.
+ */
+ BLT_FMT_24_BIT_VUY888 = 0x7F00000D,
+ /**
+ * @brief 32 bits per pixel VUYA format with colors stored as
+ * V 31:24, U 23:16, Y 15:8, and Alpha 7:0.
+ */
+ BLT_FMT_32_BIT_VUYA8888 = 0x7F00000E,
};