Enum raylib_sys::TextureFilter
source · #[repr(u32)]pub enum TextureFilter {
TEXTURE_FILTER_POINT = 0,
TEXTURE_FILTER_BILINEAR = 1,
TEXTURE_FILTER_TRILINEAR = 2,
TEXTURE_FILTER_ANISOTROPIC_4X = 3,
TEXTURE_FILTER_ANISOTROPIC_8X = 4,
TEXTURE_FILTER_ANISOTROPIC_16X = 5,
}Variants§
TEXTURE_FILTER_POINT = 0
TEXTURE_FILTER_BILINEAR = 1
TEXTURE_FILTER_TRILINEAR = 2
TEXTURE_FILTER_ANISOTROPIC_4X = 3
TEXTURE_FILTER_ANISOTROPIC_8X = 4
TEXTURE_FILTER_ANISOTROPIC_16X = 5
Trait Implementations§
source§impl Clone for TextureFilter
impl Clone for TextureFilter
source§fn clone(&self) -> TextureFilter
fn clone(&self) -> TextureFilter
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 TextureFilter
impl Debug for TextureFilter
source§impl Hash for TextureFilter
impl Hash for TextureFilter
source§impl PartialEq for TextureFilter
impl PartialEq for TextureFilter
source§fn eq(&self, other: &TextureFilter) -> bool
fn eq(&self, other: &TextureFilter) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for TextureFilter
impl Eq for TextureFilter
impl StructuralPartialEq for TextureFilter
Auto Trait Implementations§
impl Freeze for TextureFilter
impl RefUnwindSafe for TextureFilter
impl Send for TextureFilter
impl Sync for TextureFilter
impl Unpin for TextureFilter
impl UnwindSafe for TextureFilter
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