pub struct BlitImageState {
pub subresource: SubresourceLayers,
pub bounds: Range<Offset>,
pub last_stage: PipelineStage,
pub last_access: Access,
pub last_layout: Layout,
pub next_stage: PipelineStage,
pub next_access: Access,
pub next_layout: Layout,
}
Expand description
A region and image states for one image in a blit.
Fields§
§subresource: SubresourceLayers
Subresource to use for blit
bounds: Range<Offset>
Image offset range to use for blit
last_stage: PipelineStage
Last image stage before blit
last_access: Access
Last image access before blit
last_layout: Layout
Last image layout before blit
next_stage: PipelineStage
Image stage after blit
next_access: Access
Image access after blit
next_layout: Layout
Image layout after blit
Trait Implementations§
Source§impl Clone for BlitImageState
impl Clone for BlitImageState
Source§fn clone(&self) -> BlitImageState
fn clone(&self) -> BlitImageState
Returns a copy 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 moreAuto Trait Implementations§
impl Freeze for BlitImageState
impl RefUnwindSafe for BlitImageState
impl Send for BlitImageState
impl Sync for BlitImageState
impl Unpin for BlitImageState
impl UnwindSafe for BlitImageState
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)