vote up 13 vote down star
10

As you can see here I'm about to start work on a 3d project for class.

Do you have any useful resources/websites/tips/etc. on someone getting started with OpenGL for the first time? The project will be in C++ and accessing OpenGL via GLUT. Thanks!

flag

11 Answers

vote up 16 vote down check

The Red Book online
Red Book Image - http://www.opengl.org/documentation/red_book/
Blue Book - http://www.opengl.org/documentation/blue_book/

Hope you manage to go through this.. I didn't... another unfinished dream on my shelf.

link|flag
vote up 2 vote down

The OpenGL "Red Book" is the best place to start learning. The OpenGL "Blue Book" is documentation for the OpenGL API.

There are many online resources for opengl, and glprogramming.com is one of them. Check out the links section.

link|flag
vote up 3 vote down

This link has some answers to a similar question.

link|flag
vote up 8 vote down

The NeHe tutorials will get you going but as luke points out they don't really cover much background of why.

Although it is WPF rather than opengl (do you have to use opengl?) Petzolds book on 3d graphics with wpf does a very good job of introducing 3d graphics and some of the maths behind it.

link|flag
3  
I may be in the minority, but I dislike NeHe's tutorials. Like many, that's where I started, but there are many many better resources. The learning curve with graphics APIs is steep, and NeHe offers very little insight to the whys and wherefores. – luke Oct 27 '08 at 14:46
Please post any other suggestions here, or edit my post - that's exactly what SO is for. – mgb Oct 27 '08 at 15:23
vote up 2 vote down

This is the best web page(for me) to learn OpenGL http://nehe.gamedev.net/.

And this is the official book http://www.amazon.com/OpenGL-Programming-Guide-Official-Learning/dp/0321335732

link|flag
vote up 5 vote down

Beginning OpenGL Game Programming is a very good introduction, even if you don't care about games. The official Programming Guide and Reference Manual are a must too. Might as well pick up a general book on computer graphics.

There are plenty of online resources, but I really think you should go for books, even if it was the freely available old versions of the official books. NeHe's site has some interesting code samples but I don't think it's a good resource to start learning, as it glosses over many details and follows a quick and dirty approach to get things running.

link|flag
vote up 11 vote down

I highly recommend OpenGL SuperBible, Fourth Edition by Richard S. Wright, Jr., Benjamin Lipchak and Nicholas Haemel; ISBN: 9780321498823

alt text

It's a one-stop shop with both tutorial and reference. It combines some of the best aspects of both the "Red" and "Blue" books along with some great graphics background information. If your budget is limited to one book, this is a great choice.

link|flag
I agree, that was my first GL book and it was much more approachable than the Red and Blue books. – Kena Dec 23 '08 at 20:44
vote up 0 vote down

Processing has also open gl support, it's an easy way to get started.. If you don't like the editor, which comes with processing, you can also use it with a Java IDE, such as Eclipse or Intellij.

link|flag
vote up 0 vote down

If you are serious about learning OpenGL you should check out the OpenGL Bootcamp at Big Nerd Ranch. The instructor has written several award winning games, including the "Big Bang Board Games" published by Freeverse software.

link|flag
vote up 0 vote down

OpenGL is extremely easy to start with, especially if you're using a toolkit like GLUT or SDL. Starting from man glVertex and man glDrawElements will get you started (look at the references at the bottom for other functions). If you're on a windows system typing those commands into google yields the same results.

Further down the road, it's probably a good idea to check out the extensions repository. I would advise against books in this case because the (more exact) specifications are published online making that the most accurate and up-to-date resource.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.