Struct nannou::ui::backend::glium::glium::program::TransformFeedbackVarying[][src]

pub struct TransformFeedbackVarying {
    pub name: String,
    pub offset: usize,
    pub size: usize,
    pub ty: AttributeType,
}

Describes a varying that is being output with transform feedback.

Fields

Name of the variable.

Number of bytes between the start of the first element and the start of this one.

Size in bytes of this value.

Type of the value.

Trait Implementations

impl Clone for TransformFeedbackVarying
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for TransformFeedbackVarying
[src]

Formats the value using the given formatter. Read more

impl Eq for TransformFeedbackVarying
[src]

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