summaryrefslogtreecommitdiff
path: root/libkms++/utils/color.h
diff options
context:
space:
mode:
Diffstat (limited to 'libkms++/utils/color.h')
-rw-r--r--libkms++/utils/color.h48
1 files changed, 0 insertions, 48 deletions
diff --git a/libkms++/utils/color.h b/libkms++/utils/color.h
deleted file mode 100644
index 1db47e8..0000000
--- a/libkms++/utils/color.h
+++ /dev/null
@@ -1,48 +0,0 @@
-#pragma once
-
-#include <cstdint>
-
-namespace kms
-{
-struct YUV;
-
-struct RGB
-{
- RGB();
- RGB(uint8_t r, uint8_t g, uint8_t b);
-
- uint16_t rgb565() const;
- YUV yuv() const;
-
- union {
- struct
- {
- uint8_t b;
- uint8_t g;
- uint8_t r;
- uint8_t a;
- };
-
- uint32_t raw;
- };
-};
-
-struct YUV
-{
- YUV();
- YUV(uint8_t y, uint8_t u, uint8_t v);
- YUV(const RGB& rgb);
-
- union {
- struct
- {
- uint8_t v;
- uint8_t u;
- uint8_t y;
- uint8_t a;
- };
-
- uint32_t raw;
- };
-};
-}