#[repr(C)]pub enum SamplerBindingType {
Filtering = 0,
NonFiltering = 1,
Comparison = 2,
}Expand description
Specific type of a sampler binding.
For use in BindingType::Sampler.
Corresponds to WebGPU GPUSamplerBindingType.
Variants§
Filtering = 0
The sampling result is produced based on more than a single color sample from a texture, e.g. when bilinear interpolation is enabled.
NonFiltering = 1
The sampling result is produced based on a single color sample from a texture.
Comparison = 2
Use as a comparison sampler instead of a normal sampler. For more info take a look at the analogous functionality in OpenGL: https://www.khronos.org/opengl/wiki/Sampler_Object#Comparison_mode.
Trait Implementations§
Source§impl Clone for SamplerBindingType
impl Clone for SamplerBindingType
Source§fn clone(&self) -> SamplerBindingType
fn clone(&self) -> SamplerBindingType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for SamplerBindingType
Source§impl Debug for SamplerBindingType
impl Debug for SamplerBindingType
Source§impl<'de> Deserialize<'de> for SamplerBindingType
impl<'de> Deserialize<'de> for SamplerBindingType
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for SamplerBindingType
Source§impl Hash for SamplerBindingType
impl Hash for SamplerBindingType
Source§impl PartialEq for SamplerBindingType
impl PartialEq for SamplerBindingType
Source§fn eq(&self, other: &SamplerBindingType) -> bool
fn eq(&self, other: &SamplerBindingType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SamplerBindingType
impl Serialize for SamplerBindingType
impl StructuralPartialEq for SamplerBindingType
Auto Trait Implementations§
impl Freeze for SamplerBindingType
impl RefUnwindSafe for SamplerBindingType
impl Send for SamplerBindingType
impl Sync for SamplerBindingType
impl Unpin for SamplerBindingType
impl UnsafeUnpin for SamplerBindingType
impl UnwindSafe for SamplerBindingType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more