what is the difference between openGL glut and openGL?

Recommended Answers

All 5 Replies

opengl is a graphics library while glut is not.
You use glut with opengl to handle graphics. glut handles with mostly
the input. It could create the graphics window, handle key input and some other fancy stuff. You use opengl to draw primitives onto the window
that glut creates.

so if I was making a game I would use both then, open GL to draw to the screen and glut to handle input. thanks

so if I was making a game I would use both then, open GL to draw to the screen and glut to handle input. thanks

Yes, you can use both together to make a game.

but I have looked at this tutorial and it uses glut to make the window and print to it, how come?

but I have looked at this tutorial and it uses glut to make the window and print to it, how come?

Well it can do some printing stuff too, but its primary task is to create
the window and get inputs. You should use opengl to draw stuff. Of
course there are some draw stuff that makes your life easier, which
glut has, like drawing text or a sphere, among other things.

commented: he helps me time and time again +1
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.