logo
pub trait VertexBuffersCollection {
    fn into_vec(self) -> Vec<Arc<dyn BufferAccess>>;
}
Expand description

A collection of vertex buffers.

Required Methods

Converts self into a list of buffers.

Implementations on Foreign Types

Implementors