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

pub enum TransformFeedbackMode {
    Interleaved,
    Separate,
}

Type of transform feedback. Only used with the legacy interface.

Variants

Each value is interleaved in the same buffer.

Each value will go in a separate buffer.

Trait Implementations

impl Clone for TransformFeedbackMode
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for TransformFeedbackMode
[src]

Formats the value using the given formatter. Read more

impl Copy for TransformFeedbackMode
[src]

impl Eq for TransformFeedbackMode
[src]

impl PartialEq<TransformFeedbackMode> for TransformFeedbackMode
[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