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 copy 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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.