[][src]Struct web_glitz::image::sampler::SamplerDescriptor

pub struct SamplerDescriptor<Min, Mag> {
    pub minification_filter: Min,
    pub magnification_filter: Mag,
    pub lod_range: LODRange,
    pub wrap_s: Wrap,
    pub wrap_t: Wrap,
    pub wrap_r: Wrap,
}

Provides the information necessary for the creation of a Sampler.

See RenderingContext::create_sampler for details.

Can be instantiated with default values through Default:

use web_glitz::image::sampler::{
    SamplerDescriptor, NearestMipmapLinear, Linear, LODRange, Wrap
};

assert_eq!(SamplerDescriptor::default(), SamplerDescriptor {
    minification_filter: NearestMipmapLinear,
    magnification_filter: Linear,
    lod_range: LODRange::default(),
    wrap_s: Wrap::Repeat,
    wrap_t: Wrap::Repeat,
    wrap_r: Wrap::Repeat,
});

Fields

minification_filter: Min

The MinificationFilter that a sampler created from this descriptor will use.

See MinificationFilter for details.

magnification_filter: Mag

The MagnificationFilter that a sampler created from this descriptor will use.

See MagnificationFilter for details.

lod_range: LODRange

The LODRange that a sampler created from this descriptor will use.

See LODRange for details.

wrap_s: Wrap

The wrapping method that a sampler created from this descriptor will use when sampling a value at coordinates outside the range 0.0..=1.0 in the S ("width") direction in texture space.

See Wrap for details.

wrap_t: Wrap

The wrapping method that a sampler created from this descriptor will use when sampling a value at coordinates outside the range 0.0..=1.0 in the T ("height") direction in texture space.

See Wrap for details.

wrap_r: Wrap

The wrapping algorithm that a sampler created from this descriptor will use when sampling a value at coordinates outside the range 0.0..=1.0 in the R ("depth") direction in texture space.

See Wrap for details.

Implementations

impl SamplerDescriptor<NearestMipmapLinear, Linear>[src]

pub fn default() -> Self[src]

Trait Implementations

impl<Min: Clone, Mag: Clone> Clone for SamplerDescriptor<Min, Mag>[src]

impl<Min: Debug, Mag: Debug> Debug for SamplerDescriptor<Min, Mag>[src]

impl Default for SamplerDescriptor<Nearest, Nearest>[src]

impl Default for SamplerDescriptor<Linear, Nearest>[src]

impl Default for SamplerDescriptor<LinearMipmapNearest, Linear>[src]

impl Default for SamplerDescriptor<LinearMipmapLinear, Linear>[src]

impl Default for SamplerDescriptor<NearestMipmapNearest, Nearest>[src]

impl Default for SamplerDescriptor<NearestMipmapLinear, Nearest>[src]

impl Default for SamplerDescriptor<LinearMipmapNearest, Nearest>[src]

impl Default for SamplerDescriptor<LinearMipmapLinear, Nearest>[src]

impl Default for SamplerDescriptor<Nearest, Linear>[src]

impl Default for SamplerDescriptor<Linear, Linear>[src]

impl Default for SamplerDescriptor<NearestMipmapNearest, Linear>[src]

impl Default for SamplerDescriptor<NearestMipmapLinear, Linear>[src]

impl<Min: PartialEq, Mag: PartialEq> PartialEq<SamplerDescriptor<Min, Mag>> for SamplerDescriptor<Min, Mag>[src]

impl<Min, Mag> StructuralPartialEq for SamplerDescriptor<Min, Mag>[src]

Auto Trait Implementations

impl<Min, Mag> RefUnwindSafe for SamplerDescriptor<Min, Mag> where
    Mag: RefUnwindSafe,
    Min: RefUnwindSafe

impl<Min, Mag> Send for SamplerDescriptor<Min, Mag> where
    Mag: Send,
    Min: Send

impl<Min, Mag> Sync for SamplerDescriptor<Min, Mag> where
    Mag: Sync,
    Min: Sync

impl<Min, Mag> Unpin for SamplerDescriptor<Min, Mag> where
    Mag: Unpin,
    Min: Unpin

impl<Min, Mag> UnwindSafe for SamplerDescriptor<Min, Mag> where
    Mag: UnwindSafe,
    Min: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<D, T> IntoBuffer<T> for D where
    D: Borrow<T> + 'static,
    T: Copy + 'static, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.