Enum glium::draw_parameters::Smooth
source · pub enum Smooth {
Fastest,
Nicest,
DontCare,
}
Expand description
Specifies a hint for the smoothing.
Note that this is just a hint and the driver may disregard it.
Variants§
Fastest
The most efficient option should be chosen.
Nicest
The most correct, or highest quality, option should be chosen.
DontCare
No preference.
Trait Implementations§
source§impl PartialEq<Smooth> for Smooth
impl PartialEq<Smooth> for Smooth
impl Copy for Smooth
impl Eq for Smooth
impl StructuralEq for Smooth
impl StructuralPartialEq for Smooth
Auto Trait Implementations§
impl RefUnwindSafe for Smooth
impl Send for Smooth
impl Sync for Smooth
impl Unpin for Smooth
impl UnwindSafe for Smooth
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> Content for Twhere
T: Copy,
impl<T> Content for Twhere T: Copy,
source§fn read<F, E>(size: usize, f: F) -> Result<T, E>where
F: FnOnce(&mut T) -> Result<(), E>,
fn read<F, E>(size: usize, f: F) -> Result<T, E>where F: FnOnce(&mut T) -> Result<(), E>,
Prepares an output buffer, then turns this buffer into an
Owned
.source§fn get_elements_size() -> usize
fn get_elements_size() -> usize
Returns the size of each element.
source§fn to_void_ptr(&self) -> *const ()
fn to_void_ptr(&self) -> *const ()
Produces a pointer to the data.
source§fn ref_from_ptr<'a>(ptr: *mut (), size: usize) -> Option<*mut T>
fn ref_from_ptr<'a>(ptr: *mut (), size: usize) -> Option<*mut T>
Builds a pointer to this type from a raw pointer.
source§fn is_size_suitable(size: usize) -> bool
fn is_size_suitable(size: usize) -> bool
Returns true if the size is suitable to store a type like this.