From bf30957acffdb0c6c6b7551d2afcc199a33ed39e Mon Sep 17 00:00:00 2001 From: Orange Date: Sun, 14 Dec 2025 09:50:46 +0300 Subject: [PATCH] renamed stuff --- include/omath/3d_primitives/mesh.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/omath/3d_primitives/mesh.hpp b/include/omath/3d_primitives/mesh.hpp index cc2e5e4..bac5513 100644 --- a/include/omath/3d_primitives/mesh.hpp +++ b/include/omath/3d_primitives/mesh.hpp @@ -38,7 +38,7 @@ namespace omath::primitives public: Vbo m_vertex_buffer; - Ebo m_vertex_array_object; + Ebo m_element_buffer_object; Mesh(Vbo vbo, Ebo vao, const VectorType scale = @@ -47,7 +47,7 @@ namespace omath::primitives 1, 1, }) - : m_vertex_buffer(std::move(vbo)), m_vertex_array_object(std::move(vao)), m_scale(std::move(scale)) + : m_vertex_buffer(std::move(vbo)), m_element_buffer_object(std::move(vao)), m_scale(std::move(scale)) { } void set_origin(const VectorType& new_origin)