Enum radiant_rs::TextureFilter [] [src]

pub enum TextureFilter {
    Linear,
    Nearest,
}

Texture minify- or magnify filtering function.

Variants

All nearby texels will be loaded and their values will be merged.

The nearest texel will be loaded.

Trait Implementations

impl Copy for TextureFilter
[src]

impl Clone for TextureFilter
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for TextureFilter
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

1.0.0
[src]

This method tests for !=.

Auto Trait Implementations

impl Send for TextureFilter

impl Sync for TextureFilter