1UNTITLED LOCAL UNTITLED
2
4 glutPostWindowRedisplay — Mark an indicated window as needing a redis‐
5 play.
6
8 OpenGLUT - window
9
11 #include <openglut.h>
12
13 void
14 glutPostWindowRedisplay(int windowID);
15
17 windowID The OpenGLUT window id to be affected.
18
20 Similar to glutPostRedisplay(), except that instead of affecting the
21 current window , this function affects an arbitrary window, indicated by
22 the windowID parameter.
23
25 glutPostRedisplay(3) glutPostOverlayRedisplay(3)
26 glutPostWindowOverlayRedisplay(3) glutSwapBuffers(3) glutDisplayFunc(3)
27 glutCreateWindow(3) glutCreateSubWindow(3)
28
29
30
31
32 Epoch