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

Associated Types

Required methods

Implementations on Foreign Types

Implementors