Struct ash::vk::DependencyInfoBuilder
source · #[repr(transparent)]pub struct DependencyInfoBuilder<'a> { /* private fields */ }
Implementations§
source§impl<'a> DependencyInfoBuilder<'a>
impl<'a> DependencyInfoBuilder<'a>
pub fn dependency_flags(self, dependency_flags: DependencyFlags) -> Self
pub fn memory_barriers(self, memory_barriers: &'a [MemoryBarrier2]) -> Self
pub fn buffer_memory_barriers( self, buffer_memory_barriers: &'a [BufferMemoryBarrier2] ) -> Self
pub fn image_memory_barriers( self, image_memory_barriers: &'a [ImageMemoryBarrier2] ) -> Self
sourcepub fn build(self) -> DependencyInfo
pub fn build(self) -> DependencyInfo
Calling build will discard all the lifetime information. Only call this if
necessary! Builders implement Deref
targeting their corresponding Vulkan struct,
so references to builders can be passed directly to Vulkan functions.