[][src]Trait web_glitz::image::sampler::MagnificationFilter

pub trait MagnificationFilter: Seal {
    const ID: u32;
}

Sealed trait implemented for marker types that identify magnification filtering operations used by Samplers.

Magnification filtering is used when a sampling a texture value for a fragment that is smaller than the candidate texels. See Nearest and Linear for details on how these filtering operations resolve to sampling values.

Associated Constants

const ID: u32

Loading content...

Implementors

impl MagnificationFilter for Linear[src]

impl MagnificationFilter for Nearest[src]

Loading content...