blob: 4b5ce54a9ef14ebca3110487777c65e2c9e37eb1 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include "vertex.h"
#include "gfx/gl/glVertexArray.h"
template<>
Impl::VertexArrayConfigurator &
Impl::VertexArrayConfigurator::addAttribsFor<Vertex>(const GLuint divisor)
{
return addAttribs<Vertex, &Vertex::pos, &Vertex::texCoord, &Vertex::normal, &Vertex::colour, &Vertex::material>(
divisor);
}
|