[−][src]Struct vulkano::pipeline::raster::Rasterization
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 Clone for Rasterization
[src]
fn clone(&self) -> Rasterization
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Debug for Rasterization
[src]
impl Default for Rasterization
[src]
fn default() -> Rasterization
[src]
Auto Trait Implementations
impl RefUnwindSafe for Rasterization
impl Send for Rasterization
impl Sync for Rasterization
impl Unpin for Rasterization
impl UnwindSafe for Rasterization
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Content for T
[src]
fn ref_from_ptr(*mut c_void, usize) -> Option<*mut T>
[src]
fn is_size_suitable(usize) -> bool
[src]
fn indiv_size() -> usize
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,