Struct vulkanalia::vk::PipelineRasterizationStateCreateInfoBuilder[][src]

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

Implementations

impl<'b> PipelineRasterizationStateCreateInfoBuilder<'b>[src]

pub fn push_next<T>(self, next: &'b mut impl Cast<Target = T>) -> Self where
    T: ExtendsPipelineRasterizationStateCreateInfo
[src]

pub fn flags(self, flags: PipelineRasterizationStateCreateFlags) -> Self[src]

pub fn depth_clamp_enable(self, depth_clamp_enable: bool) -> Self[src]

pub fn rasterizer_discard_enable(self, rasterizer_discard_enable: bool) -> Self[src]

pub fn polygon_mode(self, polygon_mode: PolygonMode) -> Self[src]

pub fn cull_mode(self, cull_mode: CullModeFlags) -> Self[src]

pub fn front_face(self, front_face: FrontFace) -> Self[src]

pub fn depth_bias_enable(self, depth_bias_enable: bool) -> Self[src]

pub fn depth_bias_constant_factor(self, depth_bias_constant_factor: f32) -> Self[src]

pub fn depth_bias_clamp(self, depth_bias_clamp: f32) -> Self[src]

pub fn depth_bias_slope_factor(self, depth_bias_slope_factor: f32) -> Self[src]

pub fn line_width(self, line_width: f32) -> Self[src]

pub fn build(self) -> PipelineRasterizationStateCreateInfo[src]

Trait Implementations

impl<'b> Cast for PipelineRasterizationStateCreateInfoBuilder<'b>[src]

type Target = PipelineRasterizationStateCreateInfo

The other type this type type can be used interchangeably with in FFI.

impl<'b> Clone for PipelineRasterizationStateCreateInfoBuilder<'b>[src]

impl<'b> Copy for PipelineRasterizationStateCreateInfoBuilder<'b>[src]

impl<'b> Debug for PipelineRasterizationStateCreateInfoBuilder<'b>[src]

impl<'b> Default for PipelineRasterizationStateCreateInfoBuilder<'b>[src]

impl<'b> Deref for PipelineRasterizationStateCreateInfoBuilder<'b>[src]

type Target = PipelineRasterizationStateCreateInfo

The resulting type after dereferencing.

impl<'b> DerefMut for PipelineRasterizationStateCreateInfoBuilder<'b>[src]

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.