User profile: fafner

User info
User name:fafner
History
Joined:
Number of posts:238
Latest posts:

[SOLVED]OpenGL: drawing update problem
try doing: [code] glutIdleFunc(display); [/code]

[SOLVED]Problem with OpenGL method.
Hmm, maybe you also need to do [code]glutDisplayFunc(renderScene);[/code]. If not, here's an excelle...

[SOLVED]Problem with OpenGL method.
Well, you don't need to draw anything yet, but you need to have an idlefunc, which is the function g...

[SOLVED]Problem with OpenGL method.
In main: [code]glutIdleFunc(renderScene);[/code] where renderScene is where you do all the drawing...

[SOLVED]Problem with OpenGL method.
Have you registered a callback for glutIdleFunc? I think the glutMainLoop will exit immediately if y...