Enum cgl_rs::graphics::TextureWrappingMode
source · pub enum TextureWrappingMode {
REPEAT,
MIRRORED_REPEAT,
CLAMP_TO_EDGE,
CLAMP_TO_BORDER,
}
Expand description
The texture wrapping mode used by CGL These are reflections of OpenGL’s enum values You can also use the _i version of methods to pass integers directly instead of enums
Variants§
Auto Trait Implementations§
impl RefUnwindSafe for TextureWrappingMode
impl Send for TextureWrappingMode
impl Sync for TextureWrappingMode
impl Unpin for TextureWrappingMode
impl UnwindSafe for TextureWrappingMode
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