pub struct TextureOptions {
pub magnification: TextureFilter,
pub minification: TextureFilter,
pub wrap_mode: TextureWrapMode,
}
Expand description
How the texture texels are filtered.
Fields§
§magnification: TextureFilter
How to filter when magnifying (when texels are larger than pixels).
minification: TextureFilter
How to filter when minifying (when texels are smaller than pixels).
wrap_mode: TextureWrapMode
How to wrap the texture when the texture coordinates are outside the [0, 1] range.
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.
Trait Implementations§
Source§impl Clone for TextureOptions
impl Clone for TextureOptions
Source§fn clone(&self) -> TextureOptions
fn clone(&self) -> TextureOptions
Returns a duplicate 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 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.
Source§impl Hash for TextureOptions
impl Hash for TextureOptions
Source§impl PartialEq for TextureOptions
impl PartialEq for TextureOptions
impl Copy for TextureOptions
impl Eq for TextureOptions
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 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
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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§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.Source§impl<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
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> ⓘ
Converts
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> ⓘ
Converts
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>
Read this value from the supplied reader. Same as
ReadEndian::read_from_little_endian()
.