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 Eq for TransformFeedbackVarying
[src]
impl PartialEq for TransformFeedbackVarying
[src]
fn eq(&self, __arg_0: &TransformFeedbackVarying) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &TransformFeedbackVarying) -> bool
This method tests for !=
.
impl Clone for TransformFeedbackVarying
[src]
fn clone(&self) -> TransformFeedbackVarying
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more