pub struct J2kStoreComponentJob<'a> {
pub input: &'a [f32],
pub input_width: u32,
pub source_x: u32,
pub source_y: u32,
pub copy_width: u32,
pub copy_height: u32,
pub output: &'a mut [f32],
pub output_width: u32,
pub output_x: u32,
pub output_y: u32,
pub addend: f32,
}Expand description
Adapter component-store job for backend experimentation.
Fields§
§input: &'a [f32]Source IDWT coefficients in row-major order.
input_width: u32Source row width.
source_x: u32Source x offset to begin copying from.
source_y: u32Source y offset to begin copying from.
copy_width: u32Number of samples to copy per row.
copy_height: u32Number of rows to copy.
output: &'a mut [f32]Destination component plane in row-major order.
output_width: u32Destination row width.
output_x: u32Destination x offset to begin writing at.
output_y: u32Destination y offset to begin writing at.
addend: f32Constant value added to every copied sample.
Trait Implementations§
Auto Trait Implementations§
impl<'a> !UnwindSafe for J2kStoreComponentJob<'a>
impl<'a> Freeze for J2kStoreComponentJob<'a>
impl<'a> RefUnwindSafe for J2kStoreComponentJob<'a>
impl<'a> Send for J2kStoreComponentJob<'a>
impl<'a> Sync for J2kStoreComponentJob<'a>
impl<'a> Unpin for J2kStoreComponentJob<'a>
impl<'a> UnsafeUnpin for J2kStoreComponentJob<'a>
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more