pub(crate) struct TransformMatrixShaperFixedPointOpt<R, W, T, const LINEAR_CAP: usize> {
pub(crate) linear: Box<[R; LINEAR_CAP]>,
pub(crate) gamma: Box<[T; 65536]>,
pub(crate) adaptation_matrix: Matrix3<W>,
}Expand description
Fixed point conversion Q2.13
Optimized routine for all same curves matrix shaper.
Fields§
§linear: Box<[R; LINEAR_CAP]>§gamma: Box<[T; 65536]>§adaptation_matrix: Matrix3<W>Auto Trait Implementations§
impl<R, W, T, const LINEAR_CAP: usize> Freeze for TransformMatrixShaperFixedPointOpt<R, W, T, LINEAR_CAP>where
W: Freeze,
impl<R, W, T, const LINEAR_CAP: usize> RefUnwindSafe for TransformMatrixShaperFixedPointOpt<R, W, T, LINEAR_CAP>
impl<R, W, T, const LINEAR_CAP: usize> Send for TransformMatrixShaperFixedPointOpt<R, W, T, LINEAR_CAP>
impl<R, W, T, const LINEAR_CAP: usize> Sync for TransformMatrixShaperFixedPointOpt<R, W, T, LINEAR_CAP>
impl<R, W, T, const LINEAR_CAP: usize> Unpin for TransformMatrixShaperFixedPointOpt<R, W, T, LINEAR_CAP>where
W: Unpin,
impl<R, W, T, const LINEAR_CAP: usize> UnsafeUnpin for TransformMatrixShaperFixedPointOpt<R, W, T, LINEAR_CAP>where
W: UnsafeUnpin,
impl<R, W, T, const LINEAR_CAP: usize> UnwindSafe for TransformMatrixShaperFixedPointOpt<R, W, T, LINEAR_CAP>
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