blob: f84fc689d6c0d28406b6acfac2d55a87977648bb (
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
39
40
41
42
|
#pragma once
#include <cstdint>
namespace kms
{
struct YUV;
struct RGB
{
RGB();
RGB(uint8_t r, uint8_t g, uint8_t b);
uint32_t rgb888() const;
uint32_t bgr888() const;
uint16_t rgb565() const;
YUV yuv() const;
struct
{
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);
struct
{
uint8_t v;
uint8_t u;
uint8_t y;
uint8_t a;
};
};
}
|