[][src]Enum glium::draw_parameters::BackfaceCullingMode

pub enum BackfaceCullingMode {
    CullingDisabled,
    CullCounterClockwise,
    CullClockwise,
}

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:

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.

1 2 3

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

impl Clone for BackfaceCullingMode[src]

impl Copy for BackfaceCullingMode[src]

impl Debug for BackfaceCullingMode[src]

impl Eq for BackfaceCullingMode[src]

impl PartialEq<BackfaceCullingMode> for BackfaceCullingMode[src]

impl StructuralEq for BackfaceCullingMode[src]

impl StructuralPartialEq for BackfaceCullingMode[src]

Auto Trait Implementations

impl RefUnwindSafe for BackfaceCullingMode

impl Send for BackfaceCullingMode

impl Sync for BackfaceCullingMode

impl Unpin for BackfaceCullingMode

impl UnwindSafe for BackfaceCullingMode

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Content for T where
    T: Copy
[src]

type Owned = T

A type that holds a sized version of the content.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.