Struct ash::vk::CopyBufferToImageInfo2Builder
source · #[repr(transparent)]pub struct CopyBufferToImageInfo2Builder<'a> { /* private fields */ }
Implementations§
source§impl<'a> CopyBufferToImageInfo2Builder<'a>
impl<'a> CopyBufferToImageInfo2Builder<'a>
pub fn src_buffer(self, src_buffer: Buffer) -> Self
pub fn dst_image(self, dst_image: Image) -> Self
pub fn dst_image_layout(self, dst_image_layout: ImageLayout) -> Self
pub fn regions(self, regions: &'a [BufferImageCopy2]) -> Self
sourcepub fn build(self) -> CopyBufferToImageInfo2
pub fn build(self) -> CopyBufferToImageInfo2
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.