Lines Matching defs:width
114 0, 0, mode->width, mode->height,
124 static void window_size_callback(GLFWwindow* window, int width, int height)
126 printf("%0.2f Window resized to %ix%i\n", glfwGetTime(), width, height);
129 static void framebuffer_size_callback(GLFWwindow* window, int width, int height)
131 printf("%0.2f Framebuffer resized to %ix%i\n", glfwGetTime(), width, height);
167 int width, height;
179 width = mode->width;
184 width = windowed_width;
188 window = glfwCreateWindow(width, height, "Iconify", monitor, NULL);