blob: f99a951de739b6368ee5d180de4138ec94c530d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
#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 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;
};
}
|