added destructors to shapes
This commit is contained in:
parent
a15d754c2d
commit
38a49c504a
|
@ -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;
|
||||
|
|
|
@ -35,6 +35,7 @@ private:
|
|||
|
||||
public:
|
||||
void Init(int width, int height, const std::string& title);
|
||||
void Quit();
|
||||
void Launch();
|
||||
|
||||
private:
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
|
@ -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();
|
||||
};
|
|
@ -16,6 +16,7 @@ int main(int argc, char** argv)
|
|||
}
|
||||
|
||||
app.Launch();
|
||||
app.Quit();
|
||||
|
||||
return 0;
|
||||
}
|
2
vendor/lol
vendored
2
vendor/lol
vendored
|
@ -1 +1 @@
|
|||
Subproject commit 9629779b2a9db055a462b506daac2190a0db24fe
|
||||
Subproject commit 1610813bbe5e0f970cdf5bc18c30c1dc51cd6d07
|
Loading…
Reference in a new issue