Type Alias rgb::RGBA16

source ·
pub type RGBA16 = RGBA<u16>;
Expand description

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

Alpha is last.

Aliased Type§

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

Fields§

§r: u16

Red

§g: u16

Green

§b: u16

Blue

§a: u16

Alpha