rgb::alt

Type Alias BGRA16

source
pub type BGRA16 = Bgra<u16>;
Expand description

16-bit BGR in machine’s native endian

Aliased Type§

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

Fields§

§b: u16

Blue Component

§g: u16

Green Component

§r: u16

Red Component

§a: u16

Alpha Component