1UNTITLED LOCAL UNTITLED
2
4 glutPushWindow — Request to lower the current window to the bottom.
5
7 OpenGLUT - window
8
10 #include <openglut.h>
11
12 void
13 glutPushWindow(void);
14
16 This function requests that the current window be ``pushed'' to the
17 back.
18
19 A window can be in front of or behind other windows, as determined by the
20 z-order from front to back. Top-level OpenGLUT windows can be placed at
21 the front or back of the z-order by means of the glutPopWindow() and
22 glutPushWindow() API functions.
23
24 A z-order also applies to the subwindows of a top-level window. While
25 the z-order of top-level windows can usually be adjusted by the user,
26 subwindow z-order is controlled entirely by the application.
27
28 There may not be an immediate effect to this function. Wait for the
29 glutWindowStatusFunc() callback to tell you about whatever obscured/visi‐
30 ble status your window achieves.
31
33 The z-order of top-level windows is ultimately managed by the windowing
34 system. Therefore, a push or pop request by an OpenGLUT application may
35 not necessarily succeed or take immediate effect.
36
37 Not applicable to offscreen windows.
38
40 glutPopWindow(3) glutWindowStatusFunc(3)
41
42
43
44
45 Epoch