summaryrefslogtreecommitdiff
path: root/kms++util/src/color.cpp
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2020-08-06 05:18:06 +0300
committerTomi Valkeinen <tomi.valkeinen@ti.com>2020-08-10 09:44:48 +0300
commit68cd670ca4920f5bf7fc1f05c8cc0ce138ec7f39 (patch)
tree141efea303f63b9b65a169e2dcf9fe4db86c9478 /kms++util/src/color.cpp
parentb397a5f6e035668a9d74f8af09c20cf947e811cf (diff)
kms++: Add support for missing 8 -and 16-bit RGB formats
Add support for the RGB332, XRGB1555 and XRGB4444 formats to the PixelFormat class, the Python API, and the drawing utilities. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'kms++util/src/color.cpp')
-rw-r--r--kms++util/src/color.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/kms++util/src/color.cpp b/kms++util/src/color.cpp
index 80e4866..2d45eff 100644
--- a/kms++util/src/color.cpp
+++ b/kms++util/src/color.cpp
@@ -79,6 +79,11 @@ uint32_t RGB::bgra1010102() const
return (b << 24) | (g << 14) | (r << 4) | (a >> 6);
}
+uint8_t RGB::rgb332() const
+{
+ return ((r >> 5) << 5) | ((g >> 5) << 2) | ((b >> 6) << 0);
+}
+
uint16_t RGB::rgb565() const
{
return ((r >> 3) << 11) | ((g >> 2) << 5) | ((b >> 3) << 0);