Enum glium::program::ShaderStage
source · pub enum ShaderStage {
Vertex,
Fragment,
TessellationControl,
TessellationEvaluation,
Geometry,
}
Expand description
The different stages of the program pipeline.
Variants§
Implementations§
source§impl ShaderStage
impl ShaderStage
sourcepub fn to_gl_enum(&self) -> c_uint
pub fn to_gl_enum(&self) -> c_uint
Converts the ShaderStage
to its GLenum equivalent
Trait Implementations§
source§impl Clone for ShaderStage
impl Clone for ShaderStage
source§fn clone(&self) -> ShaderStage
fn clone(&self) -> ShaderStage
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 ShaderStage
impl Debug for ShaderStage
source§impl Hash for ShaderStage
impl Hash for ShaderStage
source§impl PartialEq<ShaderStage> for ShaderStage
impl PartialEq<ShaderStage> for ShaderStage
source§fn eq(&self, other: &ShaderStage) -> bool
fn eq(&self, other: &ShaderStage) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for ShaderStage
impl Eq for ShaderStage
impl StructuralEq for ShaderStage
impl StructuralPartialEq for ShaderStage
Auto Trait Implementations§
impl RefUnwindSafe for ShaderStage
impl Send for ShaderStage
impl Sync for ShaderStage
impl Unpin for ShaderStage
impl UnwindSafe for ShaderStage
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§fn read<F, E>(size: usize, f: F) -> Result<T, E>where
F: FnOnce(&mut T) -> Result<(), E>,
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
.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.