pub enum BackfaceCullingMode {
CullingDisabled,
CullCounterClockwise,
CullClockwise,
}
Expand description
Describes how triangles should be filtered before the fragment processing. Backface culling
is purely an optimization. If you don’t know what this does, just use CullingDisabled
.
§Backface culling
After the vertex shader stage, the GPU knows the 2D coordinates of each vertex of each triangle.
For a given triangle, there are only two situations:
- The vertices are arranged in a clockwise direction on the screen.
- The vertices are arranged in a counterclockwise direction on the screen.
If you wish so, you can ask the GPU to discard all the primitives that belong to one of these two categories.
§Example
The vertices of this triangle are counter-clock-wise.
§Usage
The trick is that if you make a 180° rotation of a shape, all triangles that were clockwise become counterclockwise and vice versa.
Therefore you can arrange your model so that the triangles that are facing the screen are all either clockwise or counterclockwise, and all the triangle are not facing the screen are the other one.
By doing so you can use backface culling to discard all the triangles that are not facing the screen, and increase your framerate.
Variants§
CullingDisabled
All triangles are always drawn.
CullCounterClockwise
Triangles whose vertices are counterclockwise won’t be drawn.
CullClockwise
Triangles whose vertices are clockwise won’t be drawn.
Trait Implementations§
Source§impl Clone for BackfaceCullingMode
impl Clone for BackfaceCullingMode
Source§fn clone(&self) -> BackfaceCullingMode
fn clone(&self) -> BackfaceCullingMode
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for BackfaceCullingMode
impl Debug for BackfaceCullingMode
Source§impl PartialEq for BackfaceCullingMode
impl PartialEq for BackfaceCullingMode
impl Copy for BackfaceCullingMode
impl Eq for BackfaceCullingMode
impl StructuralPartialEq for BackfaceCullingMode
Auto Trait Implementations§
impl Freeze for BackfaceCullingMode
impl RefUnwindSafe for BackfaceCullingMode
impl Send for BackfaceCullingMode
impl Sync for BackfaceCullingMode
impl Unpin for BackfaceCullingMode
impl UnwindSafe for BackfaceCullingMode
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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>
fn read<F, E>(size: usize, f: F) -> Result<T, E>
Owned
.Source§fn get_elements_size() -> usize
fn get_elements_size() -> usize
Source§fn to_void_ptr(&self) -> *const ()
fn to_void_ptr(&self) -> *const ()
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>
Source§fn is_size_suitable(size: usize) -> bool
fn is_size_suitable(size: usize) -> bool
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T> SetParameter for T
impl<T> SetParameter for T
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
self
from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
self
is actually part of its subset T
(and can be converted to it).Source§unsafe fn to_subset_unchecked(&self) -> SS
unsafe fn to_subset_unchecked(&self) -> SS
self.to_subset
but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
self
to the equivalent element of its superset.