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: u8Alpha Component
r: u8Red Component
g: u8Green Component
b: u8Blue Component