Added destructor
This commit is contained in:
parent
87b27eae70
commit
4ebb7492df
|
@ -19,6 +19,7 @@ namespace oglu
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
AbstractObject(const AbstractObject& other);
|
AbstractObject(const AbstractObject& other);
|
||||||
|
~AbstractObject();
|
||||||
|
|
||||||
friend std::shared_ptr<AbstractObject> OGLU_API MakeObject(const GLfloat* vertices, size_t verticesSize, const GLuint* indices, size_t indicesSize, const VertexAttribute* topology, size_t topologySize);
|
friend std::shared_ptr<AbstractObject> OGLU_API MakeObject(const GLfloat* vertices, size_t verticesSize, const GLuint* indices, size_t indicesSize, const VertexAttribute* topology, size_t topologySize);
|
||||||
|
|
||||||
|
|
|
@ -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)
|
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);
|
AbstractObject* obj = new AbstractObject(vertices, verticesSize, indices, indicesSize, topology, topologySize);
|
||||||
|
@ -53,7 +58,7 @@ namespace oglu
|
||||||
|
|
||||||
void AbstractObject::Unbind()
|
void AbstractObject::Unbind()
|
||||||
{
|
{
|
||||||
|
glBindVertexArray(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
void AbstractObject::Draw()
|
void AbstractObject::Draw()
|
||||||
|
|
Loading…
Reference in a new issue