rgb::alt

Type Alias BGRA8

source
pub type BGRA8 = Bgra<u8>;
Expand description

8-bit BGRA

Aliased Type§

struct BGRA8 {
    pub b: u8,
    pub g: u8,
    pub r: u8,
    pub a: u8,
}

Fields§

§b: u8

Blue Component

§g: u8

Green Component

§r: u8

Red Component

§a: u8

Alpha Component