pub enum Antialiasing {
    MSAAx2,
    MSAAx4,
    MSAAx8,
    MSAAx16,
}Expand description
An antialiasing strategy.
Variants§
MSAAx2
Multisample AA with 2 samples
MSAAx4
Multisample AA with 4 samples
MSAAx8
Multisample AA with 8 samples
MSAAx16
Multisample AA with 16 samples
Implementations§
Source§impl Antialiasing
 
impl Antialiasing
Sourcepub fn sample_count(self) -> u32
 
pub fn sample_count(self) -> u32
Returns the amount of samples of the Antialiasing.
Trait Implementations§
Source§impl Clone for Antialiasing
 
impl Clone for Antialiasing
Source§fn clone(&self) -> Antialiasing
 
fn clone(&self) -> Antialiasing
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moreSource§impl Debug for Antialiasing
 
impl Debug for Antialiasing
Source§impl PartialEq for Antialiasing
 
impl PartialEq for Antialiasing
impl Copy for Antialiasing
impl Eq for Antialiasing
impl StructuralPartialEq for Antialiasing
Auto Trait Implementations§
impl Freeze for Antialiasing
impl RefUnwindSafe for Antialiasing
impl Send for Antialiasing
impl Sync for Antialiasing
impl Unpin for Antialiasing
impl UnwindSafe for Antialiasing
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
Source§impl<T> IntoEither for T
 
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
 
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
 
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more