Type Alias ARGB8

Source
pub type ARGB8 = Argb<u8>;
Expand description

8-bit ARGB, alpha is first. 0 = transparent, 255 = opaque.

Aliased Type§

#[repr(C)]
pub struct ARGB8 { pub a: u8, pub r: u8, pub g: u8, pub b: u8, }

Fields§

§a: u8

Alpha Component

§r: u8

Red Component

§g: u8

Green Component

§b: u8

Blue Component