Where do i download the Opengl SDK ?

Started by
3 comments, last by Bregma 15 years, 3 months ago
Hello, Could someone please help me find out where to download the opengl SDK? I looked all over the www.opengl.org website and didn't find the opengl SDK. Please help?
Advertisement
There is no OpenGL SDK to download. The GL.h header is shipped with the Windows SDK/Platform SDK's by Microsoft. Keep in mind these are very very old and do not expose much functionality beyond OpenGL 1.1/2.

You access new functionality yourself by loading each new function using wglGetProcAddress which can be very irritating. To make things easy, do a google search for GLEE or another a similar opengl extension library. They take care of loading all the extensions in a simple manner. Hope this helps.
The SDK is actually a collection of SDK
http://www.opengl.org/sdk/
Call it an SDK if you want.

There is also the wiki
http://www.opengl.org/wiki
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);
Want to get started with OpenGL really quick? Use the Simple DirectMedia Layer (SDL) library to create an OpenGL rendering context.

1. Get the SDL runtime library
2. Compile this example OpenGL app right now as is.
3. Buy the red book and use the online reference when needed.
Quote:Original post by pavelreuk
Could someone please help me find out where to download the opengl SDK?


(1) Do you have a specific target platform in mind (Microsoft Windows, Apple Mac OS X, Linux for i386, amd64, ARM, PPC, ant farms, etc etc etc)?

(2) Do have have a specific OpenGL in mind (OpenGL 1, 2, 3, OpenGL ES 1, 2)?

(3) Do you need commercial support?

Stephen M. Webb
Professional Free Software Developer

This topic is closed to new replies.

Advertisement