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();