Enum epaint::textures::TextureFilter
source · 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§
source§impl Clone for TextureFilter
impl Clone for TextureFilter
source§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 moresource§impl Debug for TextureFilter
impl Debug for TextureFilter
source§impl Hash for TextureFilter
impl Hash for TextureFilter
source§impl PartialEq for TextureFilter
impl PartialEq for TextureFilter
source§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