From a5c28bcb2ead34e921617711ebf94ffcb5d72878 Mon Sep 17 00:00:00 2001 From: Tomi Valkeinen Date: Mon, 23 May 2016 09:54:08 +0300 Subject: File/dir renames --- libkmstest/color.h | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 libkmstest/color.h (limited to 'libkmstest/color.h') 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 - -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; -}; -} -- cgit v1.2.3