Type Alias rgb::alt::ARGB16

source ·
pub type ARGB16 = ARGB<u16>;
Expand description

16-bit ARGB in machine’s native endian. 0 = transparent, 65535 = opaque.

Aliased Type§

struct ARGB16 {
    pub a: u16,
    pub r: u16,
    pub g: u16,
    pub b: u16,
}

Fields§

§a: u16

Alpha first

§r: u16

Red

§g: u16

Green

§b: u16

Blue last