pub struct TextureOptions {
pub magnification: TextureFilter,
pub minification: TextureFilter,
pub wrap_mode: TextureWrapMode,
pub mipmap_mode: Option<TextureFilter>,
}Expand description
How the texture texels are filtered.
Fields§
§magnification: TextureFilterHow to filter when magnifying (when texels are larger than pixels).
minification: TextureFilterHow to filter when minifying (when texels are smaller than pixels).
wrap_mode: TextureWrapModeHow to wrap the texture when the texture coordinates are outside the [0, 1] range.
mipmap_mode: Option<TextureFilter>How to filter between texture mipmaps.
Mipmaps ensures textures look smooth even when the texture is very small and pixels are much larger than individual texels.
§Notes
- This may not be available on all backends (currently only
egui_glow).
Implementations§
Source§impl TextureOptions
impl TextureOptions
Sourcepub const LINEAR: TextureOptions
pub const LINEAR: TextureOptions
Linear magnification and minification.
Sourcepub const NEAREST: TextureOptions
pub const NEAREST: TextureOptions
Nearest magnification and minification.
Sourcepub const LINEAR_REPEAT: TextureOptions
pub const LINEAR_REPEAT: TextureOptions
Linear magnification and minification, but with the texture repeated.
Sourcepub const LINEAR_MIRRORED_REPEAT: TextureOptions
pub const LINEAR_MIRRORED_REPEAT: TextureOptions
Linear magnification and minification, but with the texture mirrored and repeated.
Sourcepub const NEAREST_REPEAT: TextureOptions
pub const NEAREST_REPEAT: TextureOptions
Nearest magnification and minification, but with the texture repeated.
Sourcepub const NEAREST_MIRRORED_REPEAT: TextureOptions
pub const NEAREST_MIRRORED_REPEAT: TextureOptions
Nearest magnification and minification, but with the texture mirrored and repeated.
pub const fn with_mipmap_mode( self, mipmap_mode: Option<TextureFilter>, ) -> TextureOptions
Trait Implementations§
Source§impl Clone for TextureOptions
impl Clone for TextureOptions
Source§fn clone(&self) -> TextureOptions
fn clone(&self) -> TextureOptions
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreimpl Copy for TextureOptions
Source§impl Debug for TextureOptions
impl Debug for TextureOptions
Source§impl Default for TextureOptions
impl Default for TextureOptions
Source§fn default() -> TextureOptions
fn default() -> TextureOptions
The default is linear for both magnification and minification.
impl Eq for TextureOptions
Source§impl Hash for TextureOptions
impl Hash for TextureOptions
Source§impl PartialEq for TextureOptions
impl PartialEq for TextureOptions
Source§fn eq(&self, other: &TextureOptions) -> bool
fn eq(&self, other: &TextureOptions) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TextureOptions
Auto Trait Implementations§
impl Freeze for TextureOptions
impl RefUnwindSafe for TextureOptions
impl Send for TextureOptions
impl Sync for TextureOptions
impl Unpin for TextureOptions
impl UnsafeUnpin for TextureOptions
impl UnwindSafe for TextureOptions
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.Source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
impl<S, T> Duplex<S> for Twhere
T: FromSample<S> + ToSample<S>,
impl<T> ErasedDestructor for Twhere
T: 'static,
Source§impl<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
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> ⓘ
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> ⓘ
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 moreSource§impl<F, T> IntoSample<T> for Fwhere
T: FromSample<F>,
impl<F, T> IntoSample<T> for Fwhere
T: FromSample<F>,
fn into_sample(self) -> T
Source§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<R, P> ReadPrimitive<R> for P
impl<R, P> ReadPrimitive<R> for P
Source§fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
ReadEndian::read_from_little_endian().