[][src]Struct nannou::vk::pipeline::raster::Rasterization

pub struct Rasterization {
    pub depth_clamp: bool,
    pub rasterizer_discard: bool,
    pub polygon_mode: PolygonMode,
    pub cull_mode: CullMode,
    pub front_face: FrontFace,
    pub line_width: Option<f32>,
    pub depth_bias: DepthBiasControl,
}

State of the rasterizer.

Fields

depth_clamp: bool

If true, then the depth value of the vertices will be clamped to [0.0 ; 1.0]. If false, fragments whose depth is outside of this range will be discarded.

rasterizer_discard: bool

If true, all the fragments will be discarded. This is usually used when your vertex shader has some side effects and you don't need to run the fragment shader.

polygon_mode: PolygonMode

This setting can ask the rasterizer to downgrade triangles into lines or points, or lines into points.

cull_mode: CullMode

Specifies whether front faces or back faces should be discarded, or none, or both.

front_face: FrontFace

Specifies which triangle orientation corresponds to the front or the triangle.

line_width: Option<f32>

Width, in pixels, of lines when drawing lines.

If you pass None, then this state will be considered as dynamic and the line width will need to be set when you build the command buffer.

depth_bias: DepthBiasControl

Trait Implementations

impl Default for Rasterization[src]

impl Debug for Rasterization[src]

impl Clone for Rasterization[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

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

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

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

impl<T> Content for T[src]

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

impl<T> Erased for T

impl<S> FromSample<S> for S[src]

impl<T, U> ToSample<U> for T where
    U: FromSample<T>, 
[src]

impl<S, T> Duplex<S> for T where
    T: FromSample<S> + ToSample<S>, 
[src]

impl<T> SetParameter for T

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 

Sets value as a parameter of self.

impl<T> SetParameter for T

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 

Sets value as a parameter of self.