diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2023-04-17 17:09:40 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2023-04-17 17:09:40 +0100 |
commit | da1c1336596d361678b3f641a1d23ab89e078789 (patch) | |
tree | c2f8b0fb1693cccc381e43f759cb27a19cd46208 /gfx/models | |
parent | Fix up the way spotlight shader works (diff) | |
download | ilt-da1c1336596d361678b3f641a1d23ab89e078789.tar.bz2 ilt-da1c1336596d361678b3f641a1d23ab89e078789.tar.xz ilt-da1c1336596d361678b3f641a1d23ab89e078789.zip |
Revamp how VertexArrayObject configures attributes and data
Diffstat (limited to 'gfx/models')
-rw-r--r-- | gfx/models/mesh.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gfx/models/mesh.cpp b/gfx/models/mesh.cpp index 2719211..4200703 100644 --- a/gfx/models/mesh.cpp +++ b/gfx/models/mesh.cpp @@ -7,9 +7,10 @@ Mesh::Mesh(const std::span<const Vertex> vertices, const std::span<const unsigned int> indices, GLenum m) :
m_numIndices {static_cast<GLsizei>(indices.size())}, mode {m}
{
- VertexArrayObject<Vertex>::configure<&Vertex::pos, &Vertex::texCoord, &Vertex::normal, &Vertex::colour,
- &Vertex::material>(
- m_vertexArrayObject, m_vertexArrayBuffers[0], m_vertexArrayBuffers[1], vertices, indices);
+ VertexArrayObject {m_vertexArrayObject}
+ .addAttribs<Vertex, &Vertex::pos, &Vertex::texCoord, &Vertex::normal, &Vertex::colour, &Vertex::material>(
+ m_vertexArrayBuffers[0], vertices)
+ .addIndices(m_vertexArrayBuffers[1], indices);
}
void
|