pub struct ImageResolve<'a> {
pub src_subresource: ImageSubresourceLayers,
pub src_offset: [u32; 3],
pub dst_subresource: ImageSubresourceLayers,
pub dst_offset: [u32; 3],
pub extent: [u32; 3],
pub _ne: NonExhaustive<'a>,
}Expand description
A region of data to resolve between images.
Fields§
§src_subresource: ImageSubresourceLayersThe subresource of src_image to resolve from.
The default value is empty, which must be overridden.
src_offset: [u32; 3]The offset from the zero coordinate of src_image that resolving will start from.
The default value is [0; 3].
dst_subresource: ImageSubresourceLayersThe subresource of dst_image to resolve into.
The default value is empty, which must be overridden.
dst_offset: [u32; 3]The offset from the zero coordinate of dst_image that resolving will start from.
The default value is [0; 3].
extent: [u32; 3]The extent of texels to resolve.
The default value is [0; 3], which must be overridden.
_ne: NonExhaustive<'a>Trait Implementations§
Source§impl<'a> Clone for ImageResolve<'a>
impl<'a> Clone for ImageResolve<'a>
Source§fn clone(&self) -> ImageResolve<'a>
fn clone(&self) -> ImageResolve<'a>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Debug for ImageResolve<'a>
impl<'a> Debug for ImageResolve<'a>
Auto Trait Implementations§
impl<'a> Freeze for ImageResolve<'a>
impl<'a> RefUnwindSafe for ImageResolve<'a>
impl<'a> Send for ImageResolve<'a>
impl<'a> Sync for ImageResolve<'a>
impl<'a> Unpin for ImageResolve<'a>
impl<'a> UnwindSafe for ImageResolve<'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