1UNTITLED LOCAL UNTITLED
2
4 glutFullScreen — Resize the current window to cover the entire screen
5
7 OpenGLUT - window
8
10 #include <openglut.h>
11
12 void
13 glutFullScreen(void);
14
16 The glutFullScreen() function resizes the window to cover the entire
17 screen and hide window decorations such as title bars and icons.
18
20 The desktop resolution is not affected by a call to glutReshapeWindow()
21 or glutFullScreen().
22
23 The size of windows is ultimately determined by the windowing system.
24 Therefore, a fullscreen request by an OpenGLUT application may not neces‐
25 sarily succeed or take immediate effect.
26
27 Not applicable to offscreen or subwindows.
28
30 glutInit(3) glutInitWindowPosition(3) glutInitWindowSize(3) glutGet(3)
31 glutPositionWindow(3) glutReshapeWindow(3)
32
33
34
35
36 Epoch