Struct glium::vertex::VertexBufferAny [] [src]

pub struct VertexBufferAny {
    // some fields omitted
}

A list of vertices loaded in the graphics card's memory.

Contrary to VertexBuffer, this struct doesn't know about the type of data inside the buffer. Therefore you can't map or read it.

This struct is provided for convenience, so that you can have a Vec<VertexBufferAny>, or return a VertexBufferAny instead of a VertexBuffer<MyPrivateVertexType>.

Methods

impl VertexBufferAny
[src]

fn get_elements_size(&self) -> usize

Returns the number of bytes between two consecutive elements in the buffer.

fn len(&self) -> usize

Returns the number of elements in the buffer.

fn get_bindings(&self) -> &VertexFormat

Returns the associated VertexFormat.

unsafe fn into_vertex_buffer<T: Copy>(self) -> VertexBuffer<T>

Turns the vertex buffer into a VertexBuffer without checking the type.

fn per_instance(&self) -> Result<PerInstance, InstancingNotSupported>

Creates a marker that instructs glium to use multiple instances.

Instead of calling surface.draw(&vertex_buffer, ...) you can call surface.draw(vertex_buffer.per_instance(), ...). This will draw one instance of the geometry for each element in this buffer. The attributes are still passed to the vertex shader, but each entry is passed for each different instance.

Trait Implementations

impl Debug for VertexBufferAny
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl<T> From<VertexBuffer<T>> for VertexBufferAny where T: Copy + Send + 'static
[src]

fn from(buf: VertexBuffer<T>) -> VertexBufferAny

Performs the conversion.

impl<T> From<Buffer<[T]>> for VertexBufferAny where T: Vertex + Copy + Send + 'static
[src]

fn from(buf: Buffer<[T]>) -> VertexBufferAny

Performs the conversion.

impl<'a> IntoVerticesSource<'a> for &'a VertexBufferAny
[src]

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

Builds the VerticesSource.