pub struct ImageBlit {
pub src_subresource: SubresourceLayers,
pub src_bounds: Range<Offset>,
pub dst_subresource: SubresourceLayers,
pub dst_bounds: Range<Offset>,
}
Expand description
Parameters for an image blit operation, where a portion of one image is copied into another, possibly with scaling and filtering.
Fields§
§src_subresource: SubresourceLayers
Source image and layers.
src_bounds: Range<Offset>
Source image bounds.
dst_subresource: SubresourceLayers
Destination image and layers.
dst_bounds: Range<Offset>
Destination image bounds.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ImageBlit
impl RefUnwindSafe for ImageBlit
impl Send for ImageBlit
impl Sync for ImageBlit
impl Unpin for ImageBlit
impl UnwindSafe for ImageBlit
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