Added logging of window size.

This commit is contained in:
Camilla Berglund 2012-02-09 02:07:43 +01:00
parent 13a438c91e
commit da86ba8062

View File

@ -62,6 +62,8 @@ static void key_callback(GLFWwindow window, int key, int action)
static void size_callback(GLFWwindow window, int width, int height)
{
printf("%0.2f Size %ix%i\n", glfwGetTime(), width, height);
glViewport(0, 0, width, height);
}