Enum gltf_json::texture::MinFilter[][src]

pub enum MinFilter {
    Nearest,
    Linear,
    NearestMipmapNearest,
    LinearMipmapNearest,
    NearestMipmapLinear,
    LinearMipmapLinear,
}

Minification filter.

Variants

Corresponds to GL_NEAREST.

Corresponds to GL_LINEAR.

Corresponds to GL_NEAREST_MIPMAP_NEAREST.

Corresponds to GL_LINEAR_MIPMAP_NEAREST.

Corresponds to GL_NEAREST_MIPMAP_LINEAR.

Corresponds to GL_LINEAR_MIPMAP_LINEAR.

Methods

impl MinFilter
[src]

Returns the corresponding OpenGL enum value.

Trait Implementations

impl Clone for MinFilter
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for MinFilter
[src]

impl Debug for MinFilter
[src]

Formats the value using the given formatter. Read more

impl Serialize for MinFilter
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

impl Send for MinFilter

impl Sync for MinFilter