added destructors to shapes

This commit is contained in:
Lauchmelder 2021-12-24 16:22:16 +01:00
parent a15d754c2d
commit 38a49c504a
6 changed files with 29 additions and 3 deletions

View file

@ -15,6 +15,12 @@
#endif #endif
Application::~Application() Application::~Application()
{
}
void Application::Quit()
{ {
ImGui_ImplOpenGL3_Shutdown(); ImGui_ImplOpenGL3_Shutdown();
ImGui_ImplGlfw_Shutdown(); ImGui_ImplGlfw_Shutdown();
@ -23,7 +29,7 @@ Application::~Application()
for (Shape* shape : shapes) for (Shape* shape : shapes)
delete shape; delete shape;
if (window != nullptr) if (window != nullptr)
{ {
glfwDestroyWindow(window); glfwDestroyWindow(window);
window = nullptr; window = nullptr;

View file

@ -35,6 +35,7 @@ private:
public: public:
void Init(int width, int height, const std::string& title); void Init(int width, int height, const std::string& title);
void Quit();
void Launch(); void Launch();
private: private:

View file

@ -38,6 +38,11 @@ Shape::Shape()
} }
} }
Shape::~Shape()
{
lol::ShaderManager::GetInstance().Return(SHAPE_ID);
}
void Shape::PreRender(const lol::CameraBase& camera) const void Shape::PreRender(const lol::CameraBase& camera) const
{ {
shader->SetUniform("model", transformation); shader->SetUniform("model", transformation);
@ -80,6 +85,11 @@ Cube::Cube()
} }
} }
Cube::~Cube()
{
lol::VAOManager::GetInstance().Return(CUBE_ID);
}
Pyramid::Pyramid() Pyramid::Pyramid()
{ {
vao = lol::VAOManager::GetInstance().Get(PYRAMID_ID); vao = lol::VAOManager::GetInstance().Get(PYRAMID_ID);
@ -110,4 +120,9 @@ Pyramid::Pyramid()
vao = std::make_shared<lol::VertexArray>(vbo, ebo); vao = std::make_shared<lol::VertexArray>(vbo, ebo);
lol::VAOManager::GetInstance().Register(PYRAMID_ID, vao); lol::VAOManager::GetInstance().Register(PYRAMID_ID, vao);
} }
} }
Pyramid::~Pyramid()
{
lol::VAOManager::GetInstance().Return(PYRAMID_ID);
}

View file

@ -6,6 +6,7 @@ class Shape : public lol::Drawable, public lol::Transformable
{ {
public: public:
Shape(); Shape();
virtual ~Shape();
void PreRender(const lol::CameraBase& camera) const override; void PreRender(const lol::CameraBase& camera) const override;
}; };
@ -14,10 +15,12 @@ class Cube : public Shape
{ {
public: public:
Cube(); Cube();
~Cube();
}; };
class Pyramid : public Shape class Pyramid : public Shape
{ {
public: public:
Pyramid(); Pyramid();
~Pyramid();
}; };

View file

@ -16,6 +16,7 @@ int main(int argc, char** argv)
} }
app.Launch(); app.Launch();
app.Quit();
return 0; return 0;
} }

2
vendor/lol vendored

@ -1 +1 @@
Subproject commit 9629779b2a9db055a462b506daac2190a0db24fe Subproject commit 1610813bbe5e0f970cdf5bc18c30c1dc51cd6d07