Skip to content

Maintainance

Ravi Mohan edited this page Jan 2, 2021 · 2 revisions

GLFW window shutdown is not being handled properly. For instance in the ShutDown() routine here

void WindowsWindow::ShutDown()
{
	glfwDestroyWindow(m_Window);
}

the GLFW method glfwTerminate() is not called and this example shows it should. The changes need to be implemented in Linux and Mac windows as well


The access specifier here should be private.

Clone this wiki locally