1UNTITLED LOCAL UNTITLED
2
4 glutUseLayer — Allows you to switch between normal and layer mode.
5
7 OpenGLUT - overlays
8
10 #include <openglut.h>
11
12 void
13 glutUseLayer(GLenum layer);
14
16 layer Whether to be in a layer or in the normal window.
17
19 By default, OpenGLUT operates in "normal" mode, with respect to layers.
20 If you have a layer open and wish to operate on the layer, you must use
21 glutUseLayer().
22
23 layer can take on the following values, indicating the layer mode to
24 use:
25
26 - GLUT_NORMAL
27 - GLUT_LAYER
28
30 Unimplemented.
31
32 It is unclear what the consequences are if you are in GLUT_OVERLAY mode
33 and switch to another (or the same) window via glutSetWindow(). What if
34 the target has a layer? What if it doesn't?
35
37 glutEstablishOverlay(3) glutRemoveOverlay(3) glutPostOverlayRedisplay(3)
38 glutPostWindowOverlayRedisplay(3) glutShowOverlay(3) glutHideOverlay(3)
39
40
41
42
43 Epoch