pub trait GammaLutInput { // Required method fn into_f32(self) -> f32; }
A valid input value for a GammaLut.
GammaLut
Any value that can be extended to or rounded down to f32 may implement this trait.
f32
Convert self to the nearest f32 value.
self