Enum wgpu::FilterMode
source · #[repr(C)]pub enum FilterMode {
Nearest = 0,
Linear = 1,
}
Expand description
Texel mixing mode when sampling between texels.
Corresponds to WebGPU GPUFilterMode
.
Variants§
Nearest = 0
Nearest neighbor sampling.
This creates a pixelated effect when used as a mag filter
Linear = 1
Linear Interpolation
This makes textures smooth but blurry when used as a mag filter.
Trait Implementations§
source§impl Clone for FilterMode
impl Clone for FilterMode
source§fn clone(&self) -> FilterMode
fn clone(&self) -> FilterMode
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 FilterMode
impl Debug for FilterMode
source§impl Default for FilterMode
impl Default for FilterMode
source§fn default() -> FilterMode
fn default() -> FilterMode
Returns the “default value” for a type. Read more
source§impl Hash for FilterMode
impl Hash for FilterMode
source§impl PartialEq for FilterMode
impl PartialEq for FilterMode
source§fn eq(&self, other: &FilterMode) -> bool
fn eq(&self, other: &FilterMode) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for FilterMode
impl Eq for FilterMode
impl StructuralPartialEq for FilterMode
Auto Trait Implementations§
impl Freeze for FilterMode
impl RefUnwindSafe for FilterMode
impl Send for FilterMode
impl Sync for FilterMode
impl Unpin for FilterMode
impl UnwindSafe for FilterMode
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<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.