summaryrefslogtreecommitdiff
path: root/kms++/inc
diff options
context:
space:
mode:
authorTomi Valkeinen <tomi.valkeinen+renesas@ideasonboard.com>2022-12-02 15:05:02 +0200
committerTomi Valkeinen <tomi.valkeinen@ideasonboard.com>2022-12-18 15:45:10 +0200
commitdc8d3e0089f2382028e68cdc0fbb26ac675bf1e6 (patch)
tree159861fbb65c48a89bfd5a5ffb2feb489b07d859 /kms++/inc
parentc1895b6ed77aa9739291594c86b7fa6bc144608e (diff)
kms++: PixelFormats: Add Y21x formats
Add Y210, Y212, Y216 pixel formats. Signed-off-by: Tomi Valkeinen <tomi.valkeinen+renesas@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Diffstat (limited to 'kms++/inc')
-rw-r--r--kms++/inc/kms++/pixelformats.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/kms++/inc/kms++/pixelformats.h b/kms++/inc/kms++/pixelformats.h
index 8ebb76b..e334ee6 100644
--- a/kms++/inc/kms++/pixelformats.h
+++ b/kms++/inc/kms++/pixelformats.h
@@ -31,6 +31,10 @@ enum class PixelFormat : uint32_t {
YVYU = MakeFourCC("YVYU"),
VYUY = MakeFourCC("VYUY"),
+ Y210 = MakeFourCC("Y210"),
+ Y212 = MakeFourCC("Y212"),
+ Y216 = MakeFourCC("Y216"),
+
XRGB8888 = MakeFourCC("XR24"),
XBGR8888 = MakeFourCC("XB24"),
RGBX8888 = MakeFourCC("RX24"),