1UNTITLED LOCAL UNTITLED
2
4 glutInitWindowSize — Requests future windows to open at a given
5 width/height..
6
8 OpenGLUT - window
9
11 #include <openglut.h>
12
13 void
14 glutInitWindowSize(int width, int height);
15
17 width Width of future windows.
18
19 height Height of future windows.
20
22 This function allows you to request initial dimensions for future win‐
23 dows.
24
25 There is a callback function to inform you of the new window shape
26 (whether initially opened, changed by your glutReshapeWindow() request,
27 or changed directly by the user).
28
30 glutReshapeWindow(3) glutInit(3) glutInitWindowPosition(3)
31 glutInitDisplayMode(3) glutInitDisplayString(3) glutReshapeFunc(3)
32 glutGet(3)
33
34
35
36
37 Epoch