noob question

Started by
12 comments, last by Achilleos 16 years, 10 months ago
Where do I get the opengl SDK? I have searched on the opengl.org site and can't find a download.
Advertisement
if your using c++ the compiler probably already has the opengl header files
what is the current latest version of opengl sdk?
OpenGL 2.1, but unlike directx 99% of opengl code is interchangeable between versions so if your just learning it doesn't really matter what version your using
Well this is for a project, not just playing around so it would be nice to use the most common version, adn so all developers are using the same version too. is their a place I can download the latest version of OpenGL?
I also want it becuase it should also be a better version than the one I have which is most likely version 1.5, so there is no way for me to get the lastest version from some site?
you should have the gl.h glu.h already (it ships with VS anyway)

getting the latest functions and features use glew
http://glew.sourceforge.net/
What about www.opengl.org -> Coding Resources -> OpenGL SDK ?
(it leads straight here : http://www.opengl.org/sdk/)
-* So many things to do, so little time to spend. *-
Maybe I am missing the point. When OpenGL gets updated do I not have to update mu header files or any other header/source file on my computer to access the new version?
Ok let me try to make this a simpler question:

I want to use OpenGL 2.0 stuff. I have Visual Studio 2005 which has the OpenGL headers. Do I need anything else to start using OpenGL specific stuff?

This topic is closed to new replies.

Advertisement