Struct ash::vk::ImageMemoryBarrier
source · #[repr(C)]pub struct ImageMemoryBarrier {
pub s_type: StructureType,
pub p_next: *const c_void,
pub src_access_mask: AccessFlags,
pub dst_access_mask: AccessFlags,
pub old_layout: ImageLayout,
pub new_layout: ImageLayout,
pub src_queue_family_index: u32,
pub dst_queue_family_index: u32,
pub image: Image,
pub subresource_range: ImageSubresourceRange,
}
Expand description
Fields§
§s_type: StructureType
§p_next: *const c_void
§src_access_mask: AccessFlags
§dst_access_mask: AccessFlags
§old_layout: ImageLayout
§new_layout: ImageLayout
§src_queue_family_index: u32
§dst_queue_family_index: u32
§image: Image
§subresource_range: ImageSubresourceRange
Implementations§
source§impl ImageMemoryBarrier
impl ImageMemoryBarrier
pub fn builder<'a>() -> ImageMemoryBarrierBuilder<'a>
Trait Implementations§
source§impl Clone for ImageMemoryBarrier
impl Clone for ImageMemoryBarrier
source§fn clone(&self) -> ImageMemoryBarrier
fn clone(&self) -> ImageMemoryBarrier
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 more