pub(crate) struct TransformMatrixShaperFp<R, T> {
pub(crate) r_linear: Vec<R>,
pub(crate) g_linear: Vec<R>,
pub(crate) b_linear: Vec<R>,
pub(crate) r_gamma: Box<[T; 65536]>,
pub(crate) g_gamma: Box<[T; 65536]>,
pub(crate) b_gamma: Box<[T; 65536]>,
pub(crate) adaptation_matrix: Matrix3<i16>,
}Expand description
Fixed point conversion Q2.13
Fields§
§r_linear: Vec<R>§g_linear: Vec<R>§b_linear: Vec<R>§r_gamma: Box<[T; 65536]>§g_gamma: Box<[T; 65536]>§b_gamma: Box<[T; 65536]>§adaptation_matrix: Matrix3<i16>Auto Trait Implementations§
impl<R, T> Freeze for TransformMatrixShaperFp<R, T>
impl<R, T> RefUnwindSafe for TransformMatrixShaperFp<R, T>where
R: RefUnwindSafe,
T: RefUnwindSafe,
impl<R, T> Send for TransformMatrixShaperFp<R, T>
impl<R, T> Sync for TransformMatrixShaperFp<R, T>
impl<R, T> Unpin for TransformMatrixShaperFp<R, T>where
R: Unpin,
impl<R, T> UnsafeUnpin for TransformMatrixShaperFp<R, T>
impl<R, T> UnwindSafe for TransformMatrixShaperFp<R, T>where
R: UnwindSafe,
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