Trait ringl::traits::ToSimpleVao[][src]

pub trait ToSimpleVao<T, U> {
    fn to_simple_vao(
        &self,
        gl: &CreationContext,
        bindings: &Bindings,
        usage: GLenum
    ) -> Result<SimpleVao<T>>; }

Required Methods

Implementations on Foreign Types

impl<T: VertexFormat + Clone + 'static> ToSimpleVao<T, Mesh<T>> for Mesh<T>
[src]

impl ToSimpleVao<Vec2, Vec2> for Mesh<Vec2>
[src]

impl ToSimpleVao<Vec3, Vec3> for Mesh<Vec3>
[src]

Implementors