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