1UNTITLED LOCAL UNTITLED
2
4 glutPostRedisplay — Mark the current window as needing a redisplay.
5
7 OpenGLUT - window
8
10 #include <openglut.h>
11
12 void
13 glutPostRedisplay(void);
14
16 Whenever circumstances indicate that your window is in need of being
17 redisplayed, you may call glutPostRedisplay() to tell OpenGLUT that you
18 want to redraw your graphics. Multiple calls to this function may be
19 coalesced by OpenGLUT to avoid excessive invocation of your drawing sup‐
20 port.
21
22 The ultimate effect of this function is to call your Display callback for
23 the current window .
24
26 glutPostWindowRedisplay(3) glutPostOverlayRedisplay(3)
27 glutPostWindowOverlayRedisplay(3) glutSwapBuffers(3) glutDisplayFunc(3)
28
29
30
31
32 Epoch