Lines Matching defs:width
865 static void resize_callback(GLFWwindow* window, int width, int height)
867 glViewport(0, 0, width, height);
868 aspect_ratio = height ? width / (float) height : 1.f;
945 int ch, width, height;
978 width = mode->width;
983 width = 640;
987 window = glfwCreateWindow(width, height, "Particle Engine", monitor, NULL);
1006 glfwGetFramebufferSize(window, &width, &height);
1007 resize_callback(window, width, height);