#[repr(C)]pub enum AtlasEntryMipOption {
Clamp = 0,
Repeat = 1,
Mirror = 2,
}
Expand description
A tiling method using by texture atlas generation.
Clamp
: No tiling.Repeat
: Repeat tiling.Mirror
: Mirror tiling.
Variants§
Trait Implementations§
Source§impl Clone for AtlasEntryMipOption
impl Clone for AtlasEntryMipOption
Source§fn clone(&self) -> AtlasEntryMipOption
fn clone(&self) -> AtlasEntryMipOption
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 AtlasEntryMipOption
impl Debug for AtlasEntryMipOption
Source§impl Default for AtlasEntryMipOption
impl Default for AtlasEntryMipOption
Source§fn default() -> AtlasEntryMipOption
fn default() -> AtlasEntryMipOption
Returns the “default value” for a type. Read more
Source§impl Hash for AtlasEntryMipOption
impl Hash for AtlasEntryMipOption
Source§impl PartialEq for AtlasEntryMipOption
impl PartialEq for AtlasEntryMipOption
impl Copy for AtlasEntryMipOption
impl Eq for AtlasEntryMipOption
impl StructuralPartialEq for AtlasEntryMipOption
Auto Trait Implementations§
impl Freeze for AtlasEntryMipOption
impl RefUnwindSafe for AtlasEntryMipOption
impl Send for AtlasEntryMipOption
impl Sync for AtlasEntryMipOption
impl Unpin for AtlasEntryMipOption
impl UnwindSafe for AtlasEntryMipOption
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