Using Opengl in console mode

Can opengl be used with a c++ console program?

Yes, look on www.opengl.org for information regarding GLUT.

Nate Miller
http://nate.scuzzy.net

[This message has been edited by Nate (edited 07-29-2000).]

also if you’ve created a win32 workspace under VC, there is a linker option that you can set to get a console window!

#pragma comment(linker, “/SUBSYSTEM:CONSOLE”)

Thanks, I’ll check it out.