0

Does anyone know a good book or website, where you can get a good description of all the functions in opengl. How they work. I know those sites where you get a short explanation and what the function expects. I mean a more accurate and exact description. Also how openGL works in general and how it works behind the scenes. Thanks in advance..

buddy
  • 821
  • 2
  • 12
  • 30

3 Answers3

2

How about the OpenGL reference pages?

There's also the OpenGL Programming Guide

JeremyP
  • 84,577
  • 15
  • 123
  • 161
  • I'm sure this is just me being stupid, but why are basic commands like glColor* and glVertex* missing from the reference pages you've linked to? – Tim MB Dec 04 '12 at 10:58
2

We had the question about how OpenGL works behind the scenes a few days ago already. See my answer here: How does OpenGL work at the lowest level?

Community
  • 1
  • 1
datenwolf
  • 159,371
  • 13
  • 185
  • 298
0

If you need the details of every function in the API, the links already mentioned are your best bet.

If you need an extremely thorough look into how OpenGL works, though, you can't beat the official specifications for completeness:

Nicolas Lefebvre
  • 4,247
  • 1
  • 25
  • 29