Reputation:
I am using legacy code that was written for OpenGL 1.1 (from the Windows SDK v7.0A), and uses Glut.
As Glut is not readilty available in the SDK, what version should I download ?
Update:
I tried with Glut 3.7, apparently the latest release (copyright up to 1998 ?), just to see, and it seems to work fine. Anyway, I couldn't find compatibility information anywhere...
Upvotes: 1
Views: 342
Reputation: 473222
You should never use the old GLUT. You should use FreeGLUT, which is backwards compatible with it. And FreeGLUT doesn't have restrictions on which OpenGL version you use (outside of adding support for core profiles and other profile parameters, but those are irrelevant to you).
Upvotes: 5