GraphicsProgramming / GraphicsProgramming/learnd3d11
Update deconstructor(chain) in all projects
- Linguagem predominante
- C++
- Estrelas
- 199
- Forks
- 29
- Métricas de merge de PRs
- Nenhum PR com merge em 30d
Descrição
```cpp
DearImGuiApplication::~DearImGuiApplication()
{
...
Application::Cleanup();
}
Application::~Application()
{
Application::Cleanup();
}
void Application::Cleanup()
{
glfwDestroyWindow(_window);
glfwTerminate();
}
```
looks fishy
Guia de contribuição
Direção de pesquisa
Start by locating DearImGuiApplication::~DearImGuiApplication, Application::~Application, and Application::Cleanup across the projects. Trace the destructor chain and the GLFW window and termination calls shown in the issue. Done means the cleanup ownership is unambiguous and resources are not cleaned up more than once in every affected project.
Escrita pelo modelo de indexação a partir do texto da issue.
Avaliação
- Stack de tecnologia
- cpp
- Domínio
- computer-graphics
- Tipo de issue
- Bug
- Dificuldade
- 4/5
- Tempo estimado
- 3-5 dias
- Status de atividade
- Estagnada
- Clareza
- Precisa de esclarecimento
- Facilidade para iniciantes
- 25/100