#[repr(u32)]pub enum TextureMagFilter {
Linear = 9_729,
Nearest = 9_728,
}
Expand description
Magnification filter.
This enum lists the magnification filters supported by WebGL2.
Variants§
Trait Implementations§
Source§impl Clone for TextureMagFilter
impl Clone for TextureMagFilter
Source§fn clone(&self) -> TextureMagFilter
fn clone(&self) -> TextureMagFilter
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 TextureMagFilter
impl Debug for TextureMagFilter
Source§impl Default for TextureMagFilter
impl Default for TextureMagFilter
Source§fn default() -> TextureMagFilter
fn default() -> TextureMagFilter
Returns the “default value” for a type. Read more
Source§impl Hash for TextureMagFilter
impl Hash for TextureMagFilter
Source§impl PartialEq for TextureMagFilter
impl PartialEq for TextureMagFilter
impl Copy for TextureMagFilter
impl Eq for TextureMagFilter
impl StructuralPartialEq for TextureMagFilter
Auto Trait Implementations§
impl Freeze for TextureMagFilter
impl RefUnwindSafe for TextureMagFilter
impl Send for TextureMagFilter
impl Sync for TextureMagFilter
impl Unpin for TextureMagFilter
impl UnwindSafe for TextureMagFilter
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