summaryrefslogtreecommitdiff
path: root/kms++util/src/color.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kms++util/src/color.cpp')
-rw-r--r--kms++util/src/color.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/kms++util/src/color.cpp b/kms++util/src/color.cpp
index 2e6f217..2a41502 100644
--- a/kms++util/src/color.cpp
+++ b/kms++util/src/color.cpp
@@ -59,6 +59,16 @@ uint16_t RGB::bgr565() const
return ((b >> 3) << 11) | ((g >> 2) << 5) | ((r >> 3) << 0);
}
+uint16_t RGB::argb4444() const
+{
+ return ((a >> 4) << 12) | ((r >> 4) << 8) | ((g >> 4) << 4) | ((b >> 4) << 0);
+}
+
+uint16_t RGB::argb1555() const
+{
+ return ((!!a) << 15) | ((r >> 3) << 10) | ((g >> 3) << 5) | ((b >> 3) << 0);
+}
+
YUV RGB::yuv(YUVType type) const
{
return YUV(*this, type);