Struct ash::vk::ResolveImageInfo2Builder
source · #[repr(transparent)]pub struct ResolveImageInfo2Builder<'a> { /* private fields */ }
Implementations§
source§impl<'a> ResolveImageInfo2Builder<'a>
impl<'a> ResolveImageInfo2Builder<'a>
pub fn src_image(self, src_image: Image) -> Self
pub fn src_image_layout(self, src_image_layout: ImageLayout) -> 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 [ImageResolve2]) -> Self
sourcepub fn build(self) -> ResolveImageInfo2
pub fn build(self) -> ResolveImageInfo2
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.