From 3d6a072dc92f48fbc0e5392733d53e8c9af41581 Mon Sep 17 00:00:00 2001 From: Joursoir Date: Tue, 6 Apr 2021 08:59:02 +0000 Subject: Mesh: add mode for draw elements --- src/graphics/Mesh.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/graphics/Mesh.hpp') diff --git a/src/graphics/Mesh.hpp b/src/graphics/Mesh.hpp index 577a32a..e509310 100644 --- a/src/graphics/Mesh.hpp +++ b/src/graphics/Mesh.hpp @@ -6,10 +6,11 @@ class Mesh { GLuint VAO, VBO, EBO; + GLenum mode; size_t number_indices; public: - Mesh(Vertex *vertices, size_t num_vert, + Mesh(GLenum primitive, Vertex *vertices, size_t num_vert, GLuint *indices, size_t num_indices); ~Mesh(); -- cgit v1.2.3-18-g5258