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

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<T> From<VertexBuffer<T>> for VertexBufferAny where T: Copy + Send + 'static

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

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

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

impl<'a> IntoVerticesSource<'a> for &'a VertexBufferAny

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

Derived Implementations

impl Debug for VertexBufferAny

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