Enum comfy_wgpu::epaint::textures::TextureFilter
pub enum TextureFilter {
Nearest,
Linear,
}Expand description
How the texture texels are filtered.
Variants§
Nearest
Show the nearest pixel value.
When zooming in you will get sharp, square pixels/texels. When zooming out you will get a very crisp (and aliased) look.
Linear
Linearly interpolate the nearest neighbors, creating a smoother look when zooming in and out.
Trait Implementations§
§impl Clone for TextureFilter
impl Clone for TextureFilter
§fn clone(&self) -> TextureFilter
fn clone(&self) -> TextureFilter
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 more§impl Debug for TextureFilter
impl Debug for TextureFilter
§impl Hash for TextureFilter
impl Hash for TextureFilter
§impl PartialEq<TextureFilter> for TextureFilter
impl PartialEq<TextureFilter> for TextureFilter
§fn eq(&self, other: &TextureFilter) -> bool
fn eq(&self, other: &TextureFilter) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for TextureFilter
impl Eq for TextureFilter
impl StructuralEq for TextureFilter
impl StructuralPartialEq for TextureFilter
Auto Trait Implementations§
impl RefUnwindSafe for TextureFilter
impl Send for TextureFilter
impl Sync for TextureFilter
impl Unpin for TextureFilter
impl UnwindSafe for TextureFilter
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
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.