pub(crate) struct TransformMatrixShaperV<T: Clone> {
pub(crate) r_linear: Vec<f32>,
pub(crate) g_linear: Vec<f32>,
pub(crate) b_linear: Vec<f32>,
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: Matrix3f,
}Fields§
§r_linear: Vec<f32>§g_linear: Vec<f32>§b_linear: Vec<f32>§r_gamma: Box<[T; 65536]>§g_gamma: Box<[T; 65536]>§b_gamma: Box<[T; 65536]>§adaptation_matrix: Matrix3fAuto Trait Implementations§
impl<T> Freeze for TransformMatrixShaperV<T>
impl<T> RefUnwindSafe for TransformMatrixShaperV<T>where
T: RefUnwindSafe,
impl<T> Send for TransformMatrixShaperV<T>where
T: Send,
impl<T> Sync for TransformMatrixShaperV<T>where
T: Sync,
impl<T> Unpin for TransformMatrixShaperV<T>
impl<T> UnsafeUnpin for TransformMatrixShaperV<T>
impl<T> UnwindSafe for TransformMatrixShaperV<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