Graphics/Color/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod ARGB8888;
pub mod Palette;
mod RGB565;
mod RGB888;
mod RGBA8888;

pub use ARGB8888::*;
pub use RGB565::*;
pub use RGB888::*;
pub use RGBA8888::*;

pub type Color_type = Color_RGB888_type;

pub type Rendering_color_type = Color_RGB565_type;