Struct 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: String
Name of the variable.
offset: usize
Number of bytes between the start of the first element and the start of this one.
size: usize
Size in bytes of this value.
ty: AttributeType
Type of the value.
Trait Implementations
impl Debug for TransformFeedbackVarying[src]
impl Clone for TransformFeedbackVarying[src]
fn clone(&self) -> TransformFeedbackVarying[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl PartialEq for TransformFeedbackVarying[src]
fn eq(&self, __arg_0: &TransformFeedbackVarying) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &TransformFeedbackVarying) -> bool[src]
This method tests for !=.