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
Application::~Application()
{
}
void Application::Quit()
{
ImGui_ImplOpenGL3_Shutdown();
ImGui_ImplGlfw_Shutdown();
@ -23,7 +29,7 @@ Application::~Application()
for (Shape* shape : shapes)
delete shape;
if (window != nullptr)
if (window != nullptr)
{
glfwDestroyWindow(window);
window = nullptr;

View file

@ -35,6 +35,7 @@ private:
public:
void Init(int width, int height, const std::string& title);
void Quit();
void Launch();
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
{
shader->SetUniform("model", transformation);
@ -80,6 +85,11 @@ Cube::Cube()
}
}
Cube::~Cube()
{
lol::VAOManager::GetInstance().Return(CUBE_ID);
}
Pyramid::Pyramid()
{
vao = lol::VAOManager::GetInstance().Get(PYRAMID_ID);
@ -110,4 +120,9 @@ Pyramid::Pyramid()
vao = std::make_shared<lol::VertexArray>(vbo, ebo);
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:
Shape();
virtual ~Shape();
void PreRender(const lol::CameraBase& camera) const override;
};
@ -14,10 +15,12 @@ class Cube : public Shape
{
public:
Cube();
~Cube();
};
class Pyramid : public Shape
{
public:
Pyramid();
~Pyramid();
};

View file

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

2
vendor/lol vendored

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