newbee question,,, pls,,, thanks :)

GLUT: Warning in (unamed): The following is a new check for GLUT 3.0; update you
r code.
GLUT: Fatal Error in (unamed): redisplay needed for window 1, but no display cal
lback.
Press any key to continue

anyone would tell me what does it mean …
thanks again,

Propably that you don’t have a display callback set but you’d have more luck posting this in the toolkit section.

You need a display callback …

Use glutDisplayFunc(DrawGLScene);

and put your OpenGL calls in the routine
“DrawGLScene” or whatever you want it to
be called.

Rob.