OPENGL help beginner

I want to learn openGL for C and I cant find any reliable tutorials.

Can Anyone suggest any good tutorials online. Thanks!

edit PS : need Tutorial for GLUT thanks!
Last edited on
Just searching on Google would do it. Here a possible solution for you: http://www.opengl-tutorial.org/
I tried google already .. There were plenty of C++ tutorials and age-old tutorials which were not easy to follow

So I thought I should ask here

Thanks!
Have you seen OpenGL SuperBible Fourth Edition by Richard S. Wright, Jr. et al?
Youtube has some good info too these days. I always go there for all kinds of tutorials. Cheers!
You should never use GLUT. It hasn't been updated since 2001. FreeGLUT on the other hand is just fine. So use FreeGLUT instead of GLUT if you can.

If you want to learn OpenGL, I recommend either buying the book cocoaplus mentioned (OpenGL SuperBible by Richard S. Wright), or use this fantastic website: https://learnopengl.com/

Do not limit yourself to just lessons with GLUT/FreeGLUT. GLUT, FreeGLUT, and GLFW, are all just OpenGL toolkit libraries. They allow the user to create and manage windows containing OpenGL contexts on different platforms and also read the mouse, keyboard and joystick functions. These libraries do not draw anything to the screen so it does not matter which one you use.

Topic archived. No new replies allowed.