1
0
Fork 0
mirror of https://github.com/ocornut/imgui.git synced 2026-01-24 02:14:22 +00:00

Examples: Added missing calls for ::DestroyWindow, glfwDestroyWindow() + fix old comments.

This commit is contained in:
omar 2018-04-09 19:16:47 +02:00
parent 6f1f5cbc20
commit 660c157880
9 changed files with 13 additions and 2 deletions

View file

@ -122,6 +122,8 @@ int main(int, char**)
// Cleanup
ImGui_ImplGlfwGL3_Shutdown();
ImGui::DestroyContext();
glfwDestroyWindow(window);
glfwTerminate();
return 0;