Struct pilka_dyn::ash::vk::PipelineMultisampleStateCreateInfoBuilder[]

#[repr(transparent)]pub struct PipelineMultisampleStateCreateInfoBuilder<'a> { /* fields omitted */ }

Implementations

impl<'a> PipelineMultisampleStateCreateInfoBuilder<'a>

pub fn flags(
    self,
    flags: PipelineMultisampleStateCreateFlags
) -> PipelineMultisampleStateCreateInfoBuilder<'a>

pub fn rasterization_samples(
    self,
    rasterization_samples: SampleCountFlags
) -> PipelineMultisampleStateCreateInfoBuilder<'a>

pub fn sample_shading_enable(
    self,
    sample_shading_enable: bool
) -> PipelineMultisampleStateCreateInfoBuilder<'a>

pub fn min_sample_shading(
    self,
    min_sample_shading: f32
) -> PipelineMultisampleStateCreateInfoBuilder<'a>

pub fn sample_mask(
    self,
    sample_mask: &'a [u32]
) -> PipelineMultisampleStateCreateInfoBuilder<'a>

pub fn alpha_to_coverage_enable(
    self,
    alpha_to_coverage_enable: bool
) -> PipelineMultisampleStateCreateInfoBuilder<'a>

pub fn alpha_to_one_enable(
    self,
    alpha_to_one_enable: bool
) -> PipelineMultisampleStateCreateInfoBuilder<'a>

pub fn push_next<T>(
    self,
    next: &'a mut T
) -> PipelineMultisampleStateCreateInfoBuilder<'a> where
    T: ExtendsPipelineMultisampleStateCreateInfo

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.

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.

Methods from Deref<Target = PipelineMultisampleStateCreateInfo>

Trait Implementations

impl<'a> Deref for PipelineMultisampleStateCreateInfoBuilder<'a>

type Target = PipelineMultisampleStateCreateInfo

The resulting type after dereferencing.

impl<'a> DerefMut for PipelineMultisampleStateCreateInfoBuilder<'a>

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.