Enum wgpu_types::SamplerBindingType
source · #[repr(C)]
pub enum SamplerBindingType {
Filtering,
NonFiltering,
Comparison,
}
Expand description
Specific type of a sampler binding.
For use in BindingType::Sampler
.
Corresponds to WebGPU GPUSamplerBindingType
.
Variants§
Filtering
The sampling result is produced based on more than a single color sample from a texture, e.g. when bilinear interpolation is enabled.
NonFiltering
The sampling result is produced based on a single color sample from a texture.
Comparison
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 copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§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
source§impl Hash for SamplerBindingType
impl Hash for SamplerBindingType
source§impl PartialEq<SamplerBindingType> for SamplerBindingType
impl PartialEq<SamplerBindingType> for SamplerBindingType
source§fn eq(&self, other: &SamplerBindingType) -> bool
fn eq(&self, other: &SamplerBindingType) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.