diff options
Diffstat (limited to 'kms++util/color.h')
-rw-r--r-- | kms++util/color.h | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/kms++util/color.h b/kms++util/color.h deleted file mode 100644 index ef85a67..0000000 --- a/kms++util/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; -}; -} |