Enum glium::texture::Dimensions
source · pub enum Dimensions {
Texture1d {
width: u32,
},
Texture1dArray {
width: u32,
array_size: u32,
},
Texture2d {
width: u32,
height: u32,
},
Texture2dArray {
width: u32,
height: u32,
array_size: u32,
},
Texture2dMultisample {
width: u32,
height: u32,
samples: u32,
},
Texture2dMultisampleArray {
width: u32,
height: u32,
array_size: u32,
samples: u32,
},
Texture3d {
width: u32,
height: u32,
depth: u32,
},
Cubemap {
dimension: u32,
},
CubemapArray {
dimension: u32,
array_size: u32,
},
}
Expand description
Type of a texture.
Variants§
Texture1d
Texture1dArray
Texture2d
Texture2dArray
Texture2dMultisample
Texture2dMultisampleArray
Texture3d
Cubemap
CubemapArray
Trait Implementations§
source§impl Clone for Dimensions
impl Clone for Dimensions
source§fn clone(&self) -> Dimensions
fn clone(&self) -> Dimensions
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 Dimensions
impl Debug for Dimensions
source§impl PartialEq<Dimensions> for Dimensions
impl PartialEq<Dimensions> for Dimensions
source§fn eq(&self, other: &Dimensions) -> bool
fn eq(&self, other: &Dimensions) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for Dimensions
impl Eq for Dimensions
impl StructuralEq for Dimensions
impl StructuralPartialEq for Dimensions
Auto Trait Implementations§
impl RefUnwindSafe for Dimensions
impl Send for Dimensions
impl Sync for Dimensions
impl Unpin for Dimensions
impl UnwindSafe for Dimensions
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> Content for Twhere
T: Copy,
impl<T> Content for Twhere T: Copy,
source§unsafe fn read<F, E>(size: usize, f: F) -> Result<T, E>where
F: FnOnce(&mut T) -> Result<(), E>,
unsafe fn read<F, E>(size: usize, f: F) -> Result<T, E>where F: FnOnce(&mut T) -> Result<(), E>,
Prepares an output buffer, then turns this buffer into an
Owned
.
User-provided closure F
must only write to and not read from &mut Self
.source§fn get_elements_size() -> usize
fn get_elements_size() -> usize
Returns the size of each element.
source§fn to_void_ptr(&self) -> *const ()
fn to_void_ptr(&self) -> *const ()
Produces a pointer to the data.
source§fn ref_from_ptr<'a>(ptr: *mut (), size: usize) -> Option<*mut T>
fn ref_from_ptr<'a>(ptr: *mut (), size: usize) -> Option<*mut T>
Builds a pointer to this type from a raw pointer.
source§fn is_size_suitable(size: usize) -> bool
fn is_size_suitable(size: usize) -> bool
Returns true if the size is suitable to store a type like this.