Added output of initial window size.

master
Camilla Berglund ago%!(EXTRA string=13 years)
parent 8ed66ea4d5
commit d4e1f98394
  1. 4
      tests/events.c

@ -344,6 +344,7 @@ static void char_callback(GLFWwindow window, int character)
int main(void) int main(void)
{ {
GLFWwindow window; GLFWwindow window;
int width, height;
setlocale(LC_ALL, ""); setlocale(LC_ALL, "");
@ -380,6 +381,9 @@ int main(void)
glfwSwapInterval(1); glfwSwapInterval(1);
glfwGetWindowSize(window, &width, &height);
printf("Window size should be %ix%i\n", width, height);
printf("Key repeat should be %s\n", keyrepeat ? "enabled" : "disabled"); printf("Key repeat should be %s\n", keyrepeat ? "enabled" : "disabled");
printf("System keys should be %s\n", systemkeys ? "enabled" : "disabled"); printf("System keys should be %s\n", systemkeys ? "enabled" : "disabled");

Loading…
Cancel
Save