Struct ash::vk::PipelineRenderingCreateInfoBuilder
source · #[repr(transparent)]pub struct PipelineRenderingCreateInfoBuilder<'a> { /* private fields */ }
Implementations§
source§impl<'a> PipelineRenderingCreateInfoBuilder<'a>
impl<'a> PipelineRenderingCreateInfoBuilder<'a>
pub fn view_mask(self, view_mask: u32) -> Self
pub fn color_attachment_formats( self, color_attachment_formats: &'a [Format] ) -> Self
pub fn depth_attachment_format(self, depth_attachment_format: Format) -> Self
pub fn stencil_attachment_format(self, stencil_attachment_format: Format) -> Self
sourcepub fn build(self) -> PipelineRenderingCreateInfo
pub fn build(self) -> PipelineRenderingCreateInfo
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.