[SOLVED]OpenGL: drawing update problemtry 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...