Enum gfx::device::tex::AaMode [] [src]

pub enum AaMode {
    Msaa(NumSamples),
    Eqaa(NumSamples, NumFragments),
}

Describes the configuration of samples inside each texel.

Variants

Msaa

MultiSampled Anti-Aliasing

Eqaa

Enhanced Quality Anti-Aliasing

Trait Implementations

Derived Implementations

impl Debug for AaMode

fn fmt(&self, __arg_0: &mut Formatter) -> Result

impl Clone for AaMode

fn clone(&self) -> AaMode

fn clone_from(&mut self, source: &Self)

impl Copy for AaMode

impl Hash for AaMode

fn hash<__H: Hasher>(&self, __arg_0: &mut __H)

fn hash_slice<H>(data: &[Self], state: &mut H) where H: Hasher

impl PartialOrd for AaMode

fn partial_cmp(&self, __arg_0: &AaMode) -> Option<Ordering>

fn lt(&self, __arg_0: &AaMode) -> bool

fn le(&self, __arg_0: &AaMode) -> bool

fn gt(&self, __arg_0: &AaMode) -> bool

fn ge(&self, __arg_0: &AaMode) -> bool

impl PartialEq for AaMode

fn eq(&self, __arg_0: &AaMode) -> bool

fn ne(&self, __arg_0: &AaMode) -> bool

impl Ord for AaMode

fn cmp(&self, __arg_0: &AaMode) -> Ordering

impl Eq for AaMode