[−][src]Struct web_glitz::image::sampler::ShadowSamplerDescriptor
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: CompareFunctionThe CompareFunction that a ShadowSampler created from this descriptor will use.
See ShadowSampler and CompareFunction for details.
wrap_s: WrapThe 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: WrapThe 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: WrapThe 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]
fn clone(&self) -> ShadowSamplerDescriptor[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for ShadowSamplerDescriptor[src]
impl Default for ShadowSamplerDescriptor[src]
impl PartialEq<ShadowSamplerDescriptor> for ShadowSamplerDescriptor[src]
fn eq(&self, other: &ShadowSamplerDescriptor) -> bool[src]
fn ne(&self, other: &ShadowSamplerDescriptor) -> bool[src]
impl StructuralPartialEq for ShadowSamplerDescriptor[src]
Auto Trait Implementations
impl RefUnwindSafe for ShadowSamplerDescriptor
impl Send for ShadowSamplerDescriptor
impl Sync for ShadowSamplerDescriptor
impl Unpin for ShadowSamplerDescriptor
impl UnwindSafe for ShadowSamplerDescriptor
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<D, T> IntoBuffer<T> for D where
D: Borrow<T> + 'static,
T: Copy + 'static, [src]
D: Borrow<T> + 'static,
T: Copy + 'static,
fn into_buffer<Rc>(Self, &Rc, BufferId, UsageHint) -> Buffer<T> where
Rc: RenderingContext + Clone + 'static, [src]
Rc: RenderingContext + Clone + 'static,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,