pub(crate) struct TrilinearSse<const GRID_SIZE: usize> {}Implementations§
Source§impl<const GRID_SIZE: usize> TrilinearSse<GRID_SIZE>
impl<const GRID_SIZE: usize> TrilinearSse<GRID_SIZE>
unsafe fn interpolate( &self, in_r: usize, in_g: usize, in_b: usize, lut: &[BarycentricWeight<f32>], r: impl Fetcher<SseVector>, ) -> SseVector
Trait Implementations§
Source§impl<const GRID_SIZE: usize> SseMdInterpolation for TrilinearSse<GRID_SIZE>
impl<const GRID_SIZE: usize> SseMdInterpolation for TrilinearSse<GRID_SIZE>
fn inter3_sse( &self, table: &[SseAlignedF32], in_r: usize, in_g: usize, in_b: usize, lut: &[BarycentricWeight<f32>], ) -> SseVector
Auto Trait Implementations§
impl<const GRID_SIZE: usize> Freeze for TrilinearSse<GRID_SIZE>
impl<const GRID_SIZE: usize> RefUnwindSafe for TrilinearSse<GRID_SIZE>
impl<const GRID_SIZE: usize> Send for TrilinearSse<GRID_SIZE>
impl<const GRID_SIZE: usize> Sync for TrilinearSse<GRID_SIZE>
impl<const GRID_SIZE: usize> Unpin for TrilinearSse<GRID_SIZE>
impl<const GRID_SIZE: usize> UnsafeUnpin for TrilinearSse<GRID_SIZE>
impl<const GRID_SIZE: usize> UnwindSafe for TrilinearSse<GRID_SIZE>
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