1
0
Fork 0
mirror of https://github.com/gwm17/glfw.git synced 2025-04-03 07:48:51 -04:00

Removed duplicate event processing.

This commit is contained in:
Camilla Berglund 2011-09-08 22:45:35 +02:00
parent dbc9489f38
commit e20ea6b005

View File

@ -372,10 +372,9 @@ int main(void)
while (glfwIsWindow(window) == GL_TRUE) while (glfwIsWindow(window) == GL_TRUE)
{ {
glfwWaitEvents();
glClear(GL_COLOR_BUFFER_BIT); glClear(GL_COLOR_BUFFER_BIT);
glfwSwapBuffers(); glfwSwapBuffers();
glfwPollEvents(); glfwWaitEvents();
} }
glfwTerminate(); glfwTerminate();