Where to get the openGL files?

Started by
4 comments, last by zedz 14 years, 10 months ago
I have looked all over google and the internet and can't seem to find a download link, as opengl.org provides none
Advertisement
The files usually comes with the compiler, check your compiler folder.
As ZaHgO said, the base OpenGL API comes with the compiler in general. You should be able to find it under <install dir>/include/GL/

If you want to do shaders, you'll also need GLEW, you can get that here: http://glew.sourceforge.net/

And for GLUT you can get that here: http://www.opengl.org/resources/libraries/glut/
*facepalm*

thanks guys
facepalm?
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);
a term thats cropped up over the last 6 months (maybe longer)
Ive never looked up the definition so this could be wrong

hitting yourself in the face with the palm of your hand whilst going doh (ala homer)

This topic is closed to new replies.

Advertisement