Add ColorRGB888 type for data from LCD frame buffer.

This commit is contained in:
Jared Boone 2016-02-19 15:27:50 -08:00
parent 5ed76d6985
commit 322a15587a

View File

@ -75,6 +75,12 @@ struct Color {
}
};
struct ColorRGB888 {
uint8_t r;
uint8_t g;
uint8_t b;
};
struct Point {
Coord x;
Coord y;