[][src]Trait web_glitz::pipeline::graphics::VertexBuffer

pub trait VertexBuffer {
    fn encode(self, encoding: &mut VertexBuffersEncoding);
}

Helper trait for the implementation of VertexBuffers for tuple types.

Required methods

fn encode(self, encoding: &mut VertexBuffersEncoding)

Loading content...

Implementors

impl<'a, T> VertexBuffer for &'a Buffer<[T]> where
    T: Vertex
[src]

impl<'a, T> VertexBuffer for BufferView<'a, [T]> where
    T: Vertex
[src]

Loading content...