|
From: Andres R. <and...@ho...> - 2002-01-25 04:02:00
|
Now that I've done it as a console app, it compiles, but doesn't do =
anything but create the default console window with the "press any key" =
message, and that's it...
int main(int argc, char** argv)
{
// GLUT Window Initialization:
glutInit (&argc, argv);
glutInitWindowSize (800,600);
glutInitDisplayMode ( GLUT_RGB | GLUT_DOUBLE | GLUT_DEPTH);
glutCreateWindow ("Andres G L U T");
InitGraphics();
glutDisplayFunc (display);
...
|