Reputation: 1265
I want to start developing graphic programing using OpenGl
To kick start I am following OpenGL
I came across programing with GLUT and without GLUT but as being new to OpenGL in am even more confuse how to go with it?
Upvotes: 2
Views: 1291
Reputation: 10125
GLUT was designed as a lib for simple demos and tutorials. Maybe one cannot create full AAA game title using it... but for learning/teaching it is a great tool.
GLUT is very old right now, so look for FreeGlut which is an alternative that handles not only basic GLUT features but also gives some more advanced features: like fullscreen game mode, etc.
http://freeglut.sourceforge.net/
Upvotes: 1
Reputation: 29762
GLUT is the OpenGL Utility Toolkit
It does stuff like this:
You can find more about it here.
Upvotes: 5