pub(crate) struct TransformMatrixShaperFpOptVec<R, W, T> {
pub(crate) linear: Vec<R>,
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: Vec<R>§gamma: Box<[T; 65536]>§adaptation_matrix: Matrix3<W>Auto Trait Implementations§
impl<R, W, T> Freeze for TransformMatrixShaperFpOptVec<R, W, T>where
W: Freeze,
impl<R, W, T> RefUnwindSafe for TransformMatrixShaperFpOptVec<R, W, T>
impl<R, W, T> Send for TransformMatrixShaperFpOptVec<R, W, T>
impl<R, W, T> Sync for TransformMatrixShaperFpOptVec<R, W, T>
impl<R, W, T> Unpin for TransformMatrixShaperFpOptVec<R, W, T>
impl<R, W, T> UnsafeUnpin for TransformMatrixShaperFpOptVec<R, W, T>where
W: UnsafeUnpin,
impl<R, W, T> UnwindSafe for TransformMatrixShaperFpOptVec<R, W, T>
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