Enum raylib_sys::CubemapLayout
source · #[repr(u32)]pub enum CubemapLayout {
CUBEMAP_LAYOUT_AUTO_DETECT = 0,
CUBEMAP_LAYOUT_LINE_VERTICAL = 1,
CUBEMAP_LAYOUT_LINE_HORIZONTAL = 2,
CUBEMAP_LAYOUT_CROSS_THREE_BY_FOUR = 3,
CUBEMAP_LAYOUT_CROSS_FOUR_BY_THREE = 4,
CUBEMAP_LAYOUT_PANORAMA = 5,
}Variants§
CUBEMAP_LAYOUT_AUTO_DETECT = 0
CUBEMAP_LAYOUT_LINE_VERTICAL = 1
CUBEMAP_LAYOUT_LINE_HORIZONTAL = 2
CUBEMAP_LAYOUT_CROSS_THREE_BY_FOUR = 3
CUBEMAP_LAYOUT_CROSS_FOUR_BY_THREE = 4
CUBEMAP_LAYOUT_PANORAMA = 5
Trait Implementations§
source§impl Clone for CubemapLayout
impl Clone for CubemapLayout
source§fn clone(&self) -> CubemapLayout
fn clone(&self) -> CubemapLayout
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 CubemapLayout
impl Debug for CubemapLayout
source§impl Hash for CubemapLayout
impl Hash for CubemapLayout
source§impl PartialEq for CubemapLayout
impl PartialEq for CubemapLayout
source§fn eq(&self, other: &CubemapLayout) -> bool
fn eq(&self, other: &CubemapLayout) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for CubemapLayout
impl Eq for CubemapLayout
impl StructuralPartialEq for CubemapLayout
Auto Trait Implementations§
impl Freeze for CubemapLayout
impl RefUnwindSafe for CubemapLayout
impl Send for CubemapLayout
impl Sync for CubemapLayout
impl Unpin for CubemapLayout
impl UnwindSafe for CubemapLayout
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