logo
pub trait GammaComponent {
    type Lut;

    fn max_value() -> usize;
    fn to_linear(&self, lut: &Self::Lut) -> f32;
    fn make_lut() -> Self::Lut;
}
Expand description

See GammaPixel & ToRGBAPLU

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors