pub enum TextureMinFilter {
Nearest = 9_728,
Linear = 9_729,
NearestMipmapNearest = 9_984,
LinearMipmapNearest = 9_985,
NearestMipmapLinear = 9_986,
LinearMipmapLinear = 9_987,
}
Expand description
WebGLRenderingContext.texParameterfi “param” parameter
Variants§
Nearest = 9_728
Linear = 9_729
NearestMipmapNearest = 9_984
LinearMipmapNearest = 9_985
NearestMipmapLinear = 9_986
LinearMipmapLinear = 9_987
Trait Implementations§
Source§impl Clone for TextureMinFilter
impl Clone for TextureMinFilter
Source§fn clone(&self) -> TextureMinFilter
fn clone(&self) -> TextureMinFilter
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 TextureMinFilter
impl Debug for TextureMinFilter
impl Copy for TextureMinFilter
Auto Trait Implementations§
impl Freeze for TextureMinFilter
impl RefUnwindSafe for TextureMinFilter
impl Send for TextureMinFilter
impl Sync for TextureMinFilter
impl Unpin for TextureMinFilter
impl UnwindSafe for TextureMinFilter
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