Where can i download the OpenGL SDK?

Started by
4 comments, last by Prasath_AMD 15 years, 8 months ago
Plz tell me where can i download the OpenGL SDK..............I went to OpenGL.org but in the downloads section there was no link given to download the SDK........Plz tell me where can i get it........
Advertisement
First link in Google:

http://www.opengl.org/sdk/
while (tired) DrinkCoffee();
maybe you can try this or this?
If have installed VC++ 2008 or some earlier version of VS with the platform SDK you don't need do download anything else to get started.
The latest extension header files can be downloaded from here:
OpenGL Extension Registry
Everything else comes with the driver.
(OpenGL95.exe is old and not needed on XP and Vista)

[Edited by - Kambiz on July 29, 2008 6:42:13 AM]
There is more information at
http://www.opengl.org/wiki/index.php/Main_Page

and if you need samples of GL code, developer.nvidia.com has SDK9 and SDK10
Sig: http://glhlib.sourceforge.net
an open source GLU replacement library. Much more modern than GLU.
float matrix[16], inverse_matrix[16];
glhLoadIdentityf2(matrix);
glhTranslatef2(matrix, 0.0, 0.0, 5.0);
glhRotateAboutXf2(matrix, angleInRadians);
glhScalef2(matrix, 1.0, 1.0, -1.0);
glhQuickInvertMatrixf2(matrix, inverse_matrix);
glUniformMatrix4fv(uniformLocation1, 1, FALSE, matrix);
glUniformMatrix4fv(uniformLocation2, 1, FALSE, inverse_matrix);
Everyone thanks for ur help.........

This topic is closed to new replies.

Advertisement