rgb::alt

Type Alias ABGR16

source
pub type ABGR16 = Abgr<u16>;
Expand description

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

Aliased Type§

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

Fields§

§a: u16

Alpha Component

§b: u16

Blue Component

§g: u16

Green Component

§r: u16

Red Component