1UNTITLED LOCAL UNTITLED
2
4 glutPopWindow — Request to raise the current window to the top
5
7 OpenGLUT - window
8
10 #include <openglut.h>
11
12 void
13 glutPopWindow(void);
14
16 Request that the current window be brought to the top.
17
18 A window can be in front of or behind other windows, as determined by the
19 z-order from front to back. Top-level OpenGLUT windows can be placed at
20 the front or back of the z-order by means of the glutPopWindow() and
21 glutPushWindow() API functions.
22
23 A z-order also applies to the subwindows of a top-level window. While
24 the z-order of top-level windows can usually be adjusted by the user,
25 subwindow z-order is controlled entirely by the application.
26
27 If this has any effect on your window's visibility, you should receive a
28 glutWindowStatusFunc() callback and a glutDisplayFunc() callback.
29
31 The z-order of top-level windows is ultimately managed by the windowing
32 system. Therefore, a push or pop request by an OpenGLUT application may
33 not necessarily succeed or take immediate effect.
34
35 Not applicable to offscreen windows.
36
38 glutCreateWindow(3) glutDisplayFunc(3) glutPushWindow(3)
39 glutWindowStatusFunc(3)
40
41
42
43
44 Epoch