Struct ash::vk::SubpassDescriptionBuilder [−][src]
#[repr(transparent)]pub struct SubpassDescriptionBuilder<'a> { /* fields omitted */ }
Implementations
pub fn pipeline_bind_point(
self,
pipeline_bind_point: PipelineBindPoint
) -> SubpassDescriptionBuilder<'a>
pub fn input_attachments(
self,
input_attachments: &'a [AttachmentReference]
) -> SubpassDescriptionBuilder<'a>
pub fn color_attachments(
self,
color_attachments: &'a [AttachmentReference]
) -> SubpassDescriptionBuilder<'a>
pub fn resolve_attachments(
self,
resolve_attachments: &'a [AttachmentReference]
) -> SubpassDescriptionBuilder<'a>
pub fn depth_stencil_attachment(
self,
depth_stencil_attachment: &'a AttachmentReference
) -> SubpassDescriptionBuilder<'a>
pub fn preserve_attachments(
self,
preserve_attachments: &'a [u32]
) -> SubpassDescriptionBuilder<'a>
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.
Methods from Deref<Target = SubpassDescription>
Trait Implementations
type Target = SubpassDescription
type Target = SubpassDescription
The resulting type after dereferencing.