Enum gfx::texture::AaMode [] [src]

pub enum AaMode {
    Single,
    Multi(u8),
    Coverage(u8u8),
}

Describes the configuration of samples inside each texel.

Variants

No additional sample information

MultiSampled Anti-Aliasing (MSAA)

Coverage Sampling Anti-Aliasing (CSAA/EQAA)

Methods

impl AaMode
[src]

[src]

Return the number of actual data fragments stored per texel.

[src]

Return true if the surface has to be resolved before sampling.

Trait Implementations

impl Ord for AaMode
[src]

[src]

impl Copy for AaMode
[src]

impl Clone for AaMode
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialOrd<AaMode> for AaMode
[src]

[src]

[src]

[src]

[src]

[src]

impl Hash for AaMode
[src]

[src]

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl From<u8> for AaMode
[src]

[src]

Performs the conversion.

impl PartialEq<AaMode> for AaMode
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Debug for AaMode
[src]

[src]

Formats the value using the given formatter.

impl Eq for AaMode
[src]