Enum three_d::core::render_states::Cull [−][src]
pub enum Cull {
None,
Back,
Front,
FrontAndBack,
}
Expand description
Defines whether the triangles that are backfacing, frontfacing, both or none should be rendered in a render call.
Variants
None
Render both front- and backfacing triangles.
Back
Render only frontfacing triangles.
Front
Render only backfacing triangles.
FrontAndBack
Render nothing.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Cull
impl UnwindSafe for Cull
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more