pub struct PipelineRasterizationStateCreateInfoBuilder<'a> { /* private fields */ }
Implementations§
source§impl<'a> PipelineRasterizationStateCreateInfoBuilder<'a>
impl<'a> PipelineRasterizationStateCreateInfoBuilder<'a>
pub fn flags(self, flags: PipelineRasterizationStateCreateFlags) -> Self
pub fn depth_clamp_enable(self, depth_clamp_enable: bool) -> Self
pub fn rasterizer_discard_enable(self, rasterizer_discard_enable: bool) -> Self
pub fn polygon_mode(self, polygon_mode: PolygonMode) -> Self
pub fn cull_mode(self, cull_mode: CullModeFlags) -> Self
pub fn front_face(self, front_face: FrontFace) -> Self
pub fn depth_bias_enable(self, depth_bias_enable: bool) -> Self
pub fn depth_bias_constant_factor(self, depth_bias_constant_factor: f32) -> Self
pub fn depth_bias_clamp(self, depth_bias_clamp: f32) -> Self
pub fn depth_bias_slope_factor(self, depth_bias_slope_factor: f32) -> Self
pub fn line_width(self, line_width: f32) -> Self
sourcepub fn push_next<T: ExtendsPipelineRasterizationStateCreateInfo>(
self,
next: &'a mut T
) -> Self
pub fn push_next<T: ExtendsPipelineRasterizationStateCreateInfo>( 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) -> PipelineRasterizationStateCreateInfo
pub fn build(self) -> PipelineRasterizationStateCreateInfo
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.
Trait Implementations§
source§impl<'a> Deref for PipelineRasterizationStateCreateInfoBuilder<'a>
impl<'a> Deref for PipelineRasterizationStateCreateInfoBuilder<'a>
Auto Trait Implementations§
impl<'a> Freeze for PipelineRasterizationStateCreateInfoBuilder<'a>
impl<'a> RefUnwindSafe for PipelineRasterizationStateCreateInfoBuilder<'a>
impl<'a> !Send for PipelineRasterizationStateCreateInfoBuilder<'a>
impl<'a> !Sync for PipelineRasterizationStateCreateInfoBuilder<'a>
impl<'a> Unpin for PipelineRasterizationStateCreateInfoBuilder<'a>
impl<'a> UnwindSafe for PipelineRasterizationStateCreateInfoBuilder<'a>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more