Enum wgpu_types::FrontFace
source · #[repr(C)]
pub enum FrontFace {
Ccw,
Cw,
}
Expand description
Vertex winding order which classifies the “front” face of a triangle.
Corresponds to WebGPU GPUFrontFace
.
Variants§
Ccw
Triangles with vertices in counter clockwise order are considered the front face.
This is the default with right handed coordinate spaces.
Cw
Triangles with vertices in clockwise order are considered the front face.
This is the default with left handed coordinate spaces.
Trait Implementations§
source§impl<'de> Deserialize<'de> for FrontFace
impl<'de> Deserialize<'de> for FrontFace
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more