Enum glium::vertex::VerticesSource [] [src]

pub enum VerticesSource<'a> {
    VertexBuffer(BufferAnySlice<'a>, &'a VertexFormatbool),
    Marker {
        len: usize,
        per_instance: bool,
    },
}

Describes the source to use for the vertices when drawing.

Variants

VertexBuffer(BufferAnySlice<'a>, &'a VertexFormatbool)

A buffer uploaded in the video memory.

The second parameter is the number of vertices in the buffer.

The third parameter tells whether or not this buffer is "per instance" (true) or "per vertex" (false).

Marker

A marker indicating a "phantom list of attributes".

Fields

len: usize

Number of attributes.

per_instance: bool

Whether or not this buffer is "per instance" (true) or "per vertex" (false).

Trait Implementations

impl<'a> Clone for VerticesSource<'a>
[src]

fn clone(&self) -> VerticesSource<'a>

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

impl<'a> IntoVerticesSource<'a> for VerticesSource<'a>
[src]

fn into_vertices_source(self) -> VerticesSource<'a>

Builds the VerticesSource.