Enum vulkano::pipeline::raster::CullMode [] [src]

#[repr(u32)]
pub enum CullMode { None, Front, Back, FrontAndBack, }

Specifies the culling mode.

This setting works in pair with front_face. The front_face setting tells the GPU whether clockwise or counter-clockwise correspond to the front and the back of each triangle. Then cull_mode lets you specify whether front faces should be discarded, back faces should be discarded, or none, or both.

Variants

No culling.

The faces facing the front of the screen (ie. facing the user) will be removed.

The faces facing the back of the screen will be removed.

All faces will be removed.

Trait Implementations

impl Copy for CullMode
[src]

impl Clone for CullMode
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for CullMode
[src]

Formats the value using the given formatter.

impl Default for CullMode
[src]

Returns the "default value" for a type. Read more