Boboter
Loading...
Searching...
No Matches
rgb_color.h
Go to the documentation of this file.
1
7
8#pragma once
9#include <cstdint>
10
15 uint16_t r;
16 uint16_t g;
17 uint16_t b;
18};
A type for storing a 16-bit RGB color.
Definition rgb_color.h:14
uint16_t b
Blue Color Value.
Definition rgb_color.h:17
uint16_t g
Green Color Value.
Definition rgb_color.h:16
uint16_t r
Red Color Value.
Definition rgb_color.h:15