From 4ebb7492dfc50d4b9a6688180b2155a5bc8538de Mon Sep 17 00:00:00 2001 From: Robert Date: Thu, 21 Jan 2021 01:21:14 +0100 Subject: [PATCH] Added destructor --- include/object.hpp | 1 + src/object.cpp | 7 ++++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/include/object.hpp b/include/object.hpp index cc99b58..817878a 100644 --- a/include/object.hpp +++ b/include/object.hpp @@ -19,6 +19,7 @@ namespace oglu { public: AbstractObject(const AbstractObject& other); + ~AbstractObject(); friend std::shared_ptr OGLU_API MakeObject(const GLfloat* vertices, size_t verticesSize, const GLuint* indices, size_t indicesSize, const VertexAttribute* topology, size_t topologySize); diff --git a/src/object.cpp b/src/object.cpp index 59cb075..90f68bf 100644 --- a/src/object.cpp +++ b/src/object.cpp @@ -8,6 +8,11 @@ namespace oglu } + AbstractObject::~AbstractObject() + { + glDeleteVertexArrays(1, &VAO); + } + Object MakeObject(const GLfloat* vertices, size_t verticesSize, const GLuint* indices, size_t indicesSize, const VertexAttribute* topology, size_t topologySize) { AbstractObject* obj = new AbstractObject(vertices, verticesSize, indices, indicesSize, topology, topologySize); @@ -53,7 +58,7 @@ namespace oglu void AbstractObject::Unbind() { - + glBindVertexArray(0); } void AbstractObject::Draw()