pub(crate) struct XyzToRgbStage<T: Clone> {
pub(crate) r_gamma: Box<[T; 65536]>,
pub(crate) g_gamma: Box<[T; 65536]>,
pub(crate) b_gamma: Box<[T; 65536]>,
pub(crate) matrices: Vec<Matrix3f>,
pub(crate) bit_depth: usize,
pub(crate) gamma_lut: usize,
}Fields§
§r_gamma: Box<[T; 65536]>§g_gamma: Box<[T; 65536]>§b_gamma: Box<[T; 65536]>§matrices: Vec<Matrix3f>§bit_depth: usize§gamma_lut: usizeTrait Implementations§
Source§impl<T: Clone + AsPrimitive<f32>> InPlaceStage for XyzToRgbStage<T>
impl<T: Clone + AsPrimitive<f32>> InPlaceStage for XyzToRgbStage<T>
Auto Trait Implementations§
impl<T> Freeze for XyzToRgbStage<T>
impl<T> RefUnwindSafe for XyzToRgbStage<T>where
T: RefUnwindSafe,
impl<T> Send for XyzToRgbStage<T>where
T: Send,
impl<T> Sync for XyzToRgbStage<T>where
T: Sync,
impl<T> Unpin for XyzToRgbStage<T>
impl<T> UnsafeUnpin for XyzToRgbStage<T>
impl<T> UnwindSafe for XyzToRgbStage<T>where
T: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more