Query: gluttimerfunc
OS: centos
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
UNTITLEDLOCAL UNTITLEDNAMEglutTimerFunc -- Sets the Timer callback for the current window.LIBRARYOpenGLUT - idletimerSYNOPSIS#include <openglut.h> void glutTimerFunc(unsigned int msec, void( *callback )( int data ), int data);PARAMETERSmsec Milliseconds till invocation. callback Client function for timer event. data Arbitrary data; passed to callback .DESCRIPTIONAfter at least msec milliseconds, OpenGLUT will call callback , passing in your user-supplied data parameter. OpenGLUT will call your function only once. This callback is not bound to any window.CAVEATSUnlike most other callbacks, timers only occur once. Unlike most other callbacks, you cannot deregister a timer callback. Unlike most other callbacks, you can register an arbitrary number of timers.SEE ALSOglutIdleFunc(3) glutMainLoop(3) glutMainLoopEvent(3) Epoch
Related Man Pages |
---|
glutcreatemenuwindow(3) - centos |
glutcreatewindow(3) - centos |
glutinit(3) - centos |
glutspecialfunc(3) - centos |
glutidlefunc(3glut) - suse |
Similar Topics in the Unix Linux Community |
---|
Error: GL/glut.h: No such file or directory |
How to Decode an image using openGL |