Type Alias SrgbLumaa

Source
pub type SrgbLumaa<T = f32> = Lumaa<Srgb, T>;
Expand description

sRGB encoded luminance with an alpha component.

Aliased Type§

#[repr(C)]
pub struct SrgbLumaa<T = f32> { pub color: Luma<Srgb, T>, pub alpha: T, }

Fields§

§color: Luma<Srgb, T>

The color.

§alpha: T

The transparency component. 0.0 (or 0u8) is fully transparent and 1.0 (or 255u8) is fully opaque.