Struct ash::vk::PipelineMultisampleStateCreateInfoBuilder
source · pub struct PipelineMultisampleStateCreateInfoBuilder<'a> { /* private fields */ }
Implementations§
source§impl<'a> PipelineMultisampleStateCreateInfoBuilder<'a>
impl<'a> PipelineMultisampleStateCreateInfoBuilder<'a>
pub fn flags(self, flags: PipelineMultisampleStateCreateFlags) -> Self
pub fn rasterization_samples( self, rasterization_samples: SampleCountFlags ) -> Self
pub fn sample_shading_enable(self, sample_shading_enable: bool) -> Self
pub fn min_sample_shading(self, min_sample_shading: f32) -> Self
sourcepub fn sample_mask(self, sample_mask: &'a [SampleMask]) -> Self
pub fn sample_mask(self, sample_mask: &'a [SampleMask]) -> Self
Sets p_sample_mask
to null
if the slice is empty. The mask will
be treated as if it has all bits set to 1
.
See https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkPipelineMultisampleStateCreateInfo.html#_description for more details.
pub fn alpha_to_coverage_enable(self, alpha_to_coverage_enable: bool) -> Self
pub fn alpha_to_one_enable(self, alpha_to_one_enable: bool) -> Self
sourcepub fn push_next<T: ExtendsPipelineMultisampleStateCreateInfo>(
self,
next: &'a mut T
) -> Self
pub fn push_next<T: ExtendsPipelineMultisampleStateCreateInfo>( self, next: &'a mut T ) -> Self
Prepends the given extension struct between the root and the first pointer. This
method only exists on structs that can be passed to a function directly. Only
valid extension structs can be pushed into the chain.
If the chain looks like A -> B -> C
, and you call builder.push_next(&mut D)
, then the
chain will look like A -> D -> B -> C
.
sourcepub fn build(self) -> PipelineMultisampleStateCreateInfo
pub fn build(self) -> PipelineMultisampleStateCreateInfo
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.