OpenGl glutIdleFunc(void (*func)(void))
- by PHENOMERICAN
I'm trying to design very simple animation in OpenGL such as rotating and translating objects.
In the red book, I found that using GLUT's glutIdleFunc() is okay for a simple animation.
How many times does glutIdleFunc(...) call the function in one second?
Thank you.