1UNTITLED LOCAL UNTITLED
2
4 glutIdleFunc — Sets the global idle callback.
5
7 OpenGLUT - idletimer
8
10 #include <openglut.h>
11
12 void
13 glutIdleFunc(void( *callback )( void ));
14
16 callback Client function for idle event.
17
19 When OpenGLUT's glutMainLoop() is doing nothing else, it checks to see if
20 an ``idle'' callback set. If so, OpenGLUT invokes that callback.
21
22 This callback is not bound to any window.
23
25 There is at most one idle callback for your entire application.
26
28 glutTimerFunc(3) glutMainLoop(3) glutMainLoopEvent(3)
29
30
31
32
33 Epoch