summaryrefslogtreecommitdiff
path: root/gfx/models
diff options
context:
space:
mode:
Diffstat (limited to 'gfx/models')
-rw-r--r--gfx/models/mesh.cpp3
-rw-r--r--gfx/models/mesh.h1
2 files changed, 0 insertions, 4 deletions
diff --git a/gfx/models/mesh.cpp b/gfx/models/mesh.cpp
index 1f4dc09..374b731 100644
--- a/gfx/models/mesh.cpp
+++ b/gfx/models/mesh.cpp
@@ -1,7 +1,4 @@
#include "mesh.h"
-#include "glArrays.h"
-#include "vertex.h"
-#include <cstddef>
MeshBase::MeshBase(GLsizei m_numIndices, GLenum mode) : m_numIndices {m_numIndices}, mode {mode} { }
diff --git a/gfx/models/mesh.h b/gfx/models/mesh.h
index 71f6dce..d790d16 100644
--- a/gfx/models/mesh.h
+++ b/gfx/models/mesh.h
@@ -3,7 +3,6 @@
#include "gfx/gl/vertexArrayObject.h"
#include <glArrays.h>
#include <glad/gl.h>
-#include <memory>
#include <span>
#include <stdTypeDefs.h>