diff options
Diffstat (limited to 'gfx/models')
| -rw-r--r-- | gfx/models/mesh.cpp | 12 | ||||
| -rw-r--r-- | gfx/models/mesh.h | 30 |
2 files changed, 21 insertions, 21 deletions
diff --git a/gfx/models/mesh.cpp b/gfx/models/mesh.cpp index 2eae160..88314ae 100644 --- a/gfx/models/mesh.cpp +++ b/gfx/models/mesh.cpp @@ -1,7 +1,7 @@ #include "mesh.h" MeshBase::MeshBase(GLsizei m_numIndices, GLenum mode, const std::vector<RelativePosition3D> & positions) : - m_numIndices {m_numIndices}, mode {mode}, dimensions {positions} + numIndices {m_numIndices}, mode {mode}, dimensions {positions} { } @@ -29,21 +29,21 @@ MeshBase::Dimensions::extents(const std::span<const RelativePosition3D> position } void -MeshBase::Draw() const +MeshBase::draw() const { - glBindVertexArray(m_vertexArrayObject); + glBindVertexArray(vertexArrayObject); - glDrawElements(mode, m_numIndices, GL_UNSIGNED_INT, nullptr); + glDrawElements(mode, numIndices, GL_UNSIGNED_INT, nullptr); glBindVertexArray(0); } void -MeshBase::DrawInstanced(GLuint vao, GLsizei count, GLuint base) const +MeshBase::drawInstanced(GLuint vao, GLsizei count, GLuint base) const { glBindVertexArray(vao); - glDrawElementsInstancedBaseInstance(mode, m_numIndices, GL_UNSIGNED_INT, nullptr, count, base); + glDrawElementsInstancedBaseInstance(mode, numIndices, GL_UNSIGNED_INT, nullptr, count, base); glBindVertexArray(0); } diff --git a/gfx/models/mesh.h b/gfx/models/mesh.h index e78d27e..f578625 100644 --- a/gfx/models/mesh.h +++ b/gfx/models/mesh.h @@ -15,19 +15,19 @@ public: class Dimensions { public: using Extents1D = std::ranges::minmax_result<RelativeDistance>; - explicit Dimensions(const std::span<const RelativePosition3D>); + explicit Dimensions(std::span<const RelativePosition3D>); RelativePosition3D minExtent, maxExtent; RelativePosition3D centre; RelativeDistance size; private: - Dimensions(const std::span<const RelativePosition3D>, const std::array<Extents1D, 3> &); - static Extents1D extents(const std::span<const RelativePosition3D>, glm::length_t D); + Dimensions(std::span<const RelativePosition3D>, const std::array<Extents1D, 3> &); + static Extents1D extents(std::span<const RelativePosition3D>, glm::length_t); }; - void Draw() const; - void DrawInstanced(GLuint vao, GLsizei count, GLuint base = 0) const; + void draw() const; + void drawInstanced(GLuint vao, GLsizei count, GLuint base = 0) const; [[nodiscard]] const Dimensions & getDimensions() const @@ -36,11 +36,11 @@ public: } protected: - MeshBase(GLsizei m_numIndices, GLenum mode, const std::vector<RelativePosition3D> &); + MeshBase(GLsizei numIndices, GLenum mode, const std::vector<RelativePosition3D> &); - glVertexArray m_vertexArrayObject; - glBuffers<2> m_vertexArrayBuffers; - GLsizei m_numIndices; + glVertexArray vertexArrayObject; + glBuffers<2> vertexArrayBuffers; + GLsizei numIndices; GLenum mode; Dimensions dimensions; }; @@ -49,19 +49,19 @@ template<typename V> class MeshT : public MeshBase, public ConstTypeDefs<MeshT<V public: MeshT(const std::span<const V> vertices, const std::span<const unsigned int> indices, GLenum mode = GL_TRIANGLES) : MeshBase {static_cast<GLsizei>(indices.size()), mode, - materializeRange(vertices | std::views::transform([](const auto & v) { - return static_cast<RelativePosition3D>(v.pos); + materializeRange(vertices | std::views::transform([](const auto & vertex) { + return static_cast<RelativePosition3D>(vertex.pos); }))} { - m_vertexArrayBuffers[0].storage(vertices, 0); - m_vertexArrayBuffers[1].storage(indices, 0); - configureVAO(m_vertexArrayObject, 0); + vertexArrayBuffers[0].storage(vertices, 0); + vertexArrayBuffers[1].storage(indices, 0); + configureVAO(vertexArrayObject, 0); } auto configureVAO(glVertexArray & vao, GLuint divisor) const { - return vao.configure().addAttribsFor<V>(divisor, m_vertexArrayBuffers[0]).addIndices(m_vertexArrayBuffers[1]); + return vao.configure().addAttribsFor<V>(divisor, vertexArrayBuffers[0]).addIndices(vertexArrayBuffers[1]); } }; |
