GraphicsProgramming / GraphicsProgramming/learnd3d11
Update deconstructor(chain) in all projects
Open
cpp-project
good first issue
- Dominant language
- C++
- Stars
- 199
- Forks
- 29
- PR merge metrics
- No merged PRs in 30d
Description
```cpp
DearImGuiApplication::~DearImGuiApplication()
{
...
Application::Cleanup();
}
Application::~Application()
{
Application::Cleanup();
}
void Application::Cleanup()
{
glfwDestroyWindow(_window);
glfwTerminate();
}
```
looks fishy
Contributor guide
Assessment
This issue has not been assessed yet.