Enum raylib_ffi::enums::TextureFilter
source · #[repr(C)]
pub enum TextureFilter {
TEXTUREFILTERPOINT,
TEXTUREFILTERBILINEAR,
TEXTUREFILTERTRILINEAR,
TEXTUREFILTERANISOTROPIC4X,
TEXTUREFILTERANISOTROPIC8X,
TEXTUREFILTERANISOTROPIC16X,
}Expand description
Texture parameters: filter mode
Variants§
TEXTUREFILTERPOINT
No filter, just pixel approximation
TEXTUREFILTERBILINEAR
Linear filtering
TEXTUREFILTERTRILINEAR
Trilinear filtering (linear with mipmaps)
TEXTUREFILTERANISOTROPIC4X
Anisotropic filtering 4x
TEXTUREFILTERANISOTROPIC8X
Anisotropic filtering 8x
TEXTUREFILTERANISOTROPIC16X
Anisotropic filtering 16x
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<TextureFilter> for TextureFilter
impl PartialEq<TextureFilter> 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 ==.