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

pub struct ShadowSamplerDescriptor {
    pub compare: CompareFunction,
    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_shadow_sampler for details.

Can be instantiated with default values through Default:

use web_glitz::image::sampler::{ShadowSamplerDescriptor, CompareFunction, Wrap};

assert_eq!(ShadowSamplerDescriptor::default(), ShadowSamplerDescriptor {
    compare: CompareFunction::LessOrEqual,
    wrap_s: Wrap::Repeat,
    wrap_t: Wrap::Repeat,
    wrap_r: Wrap::Repeat,
});

Fields

compare: CompareFunction

The CompareFunction that a ShadowSampler created from this descriptor will use.

See ShadowSampler and CompareFunction for details.

wrap_s: Wrap

The wrapping method that a shadow 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 shadow 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 method that a shadow 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.

Trait Implementations

impl Clone for ShadowSamplerDescriptor[src]

impl Debug for ShadowSamplerDescriptor[src]

impl Default for ShadowSamplerDescriptor[src]

impl PartialEq<ShadowSamplerDescriptor> for ShadowSamplerDescriptor[src]

impl StructuralPartialEq for ShadowSamplerDescriptor[src]

Auto Trait Implementations

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.