mirror of
https://github.com/glfw/glfw.git
synced 2026-01-11 23:33:16 +01:00
Added output of initial window size.
This commit is contained in:
@@ -344,6 +344,7 @@ static void char_callback(GLFWwindow window, int character)
|
||||
int main(void)
|
||||
{
|
||||
GLFWwindow window;
|
||||
int width, height;
|
||||
|
||||
setlocale(LC_ALL, "");
|
||||
|
||||
@@ -380,6 +381,9 @@ int main(void)
|
||||
|
||||
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("System keys should be %s\n", systemkeys ? "enabled" : "disabled");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user