Enum nannou::ui::backend::glium::glium::program::OutputPrimitives[][src]

pub enum OutputPrimitives {
    Points,
    Lines,
    Triangles,
    Quads,
}

Type of primitives that is being output by transform feedback.

Variants

Points.

Lines.

Triangles.

Quads.

Trait Implementations

impl Clone for OutputPrimitives
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for OutputPrimitives
[src]

Formats the value using the given formatter. Read more

impl Copy for OutputPrimitives
[src]

impl Eq for OutputPrimitives
[src]

impl PartialEq<OutputPrimitives> for OutputPrimitives
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations