[][src]Struct gfx_hal::pso::Multisampling

pub struct Multisampling {
    pub rasterization_samples: NumSamples,
    pub sample_shading: Option<f32>,
    pub sample_mask: SampleMask,
    pub alpha_coverage: bool,
    pub alpha_to_one: bool,
}

Fields

rasterization_samples: NumSamples
sample_shading: Option<f32>
sample_mask: SampleMask
alpha_coverage: bool

Toggles alpha-to-coverage multisampling, which can produce nicer edges when many partially-transparent polygons are overlapping. See here for a full description.

alpha_to_one: bool

Trait Implementations

impl Clone for Multisampling[src]

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

Performs copy-assignment from source. Read more

impl PartialEq<Multisampling> for Multisampling[src]

impl Debug for Multisampling[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Supports<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> From<T> for 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]