openGL

Started by
2 comments, last by Lord_Evil 13 years, 11 months ago
hii.. can any 1 tell me how to download total package of openGL..which supports all functionalities and api's related to dat???
Advertisement
If U want GL 3.2:
http://dabroz.scythe.pl/2009/09/14/opengl-3.2-functions-loading-on-win32
+ SDL 1.3 - http://www.libsdl.org/hg.php
Try to find the tutorials - will be easier.
There is the Wiki which tells you the 3 things to download
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);
The functionality is provided by your driver, so you can't download that.
What you need is the proper API and I'd suggest to use a library like GLEW.

However, you still should take a look at the OpenGL wiki.
If I was helpful, feel free to rate me up ;)If I wasn't and you feel to rate me down, please let me know why!

This topic is closed to new replies.

Advertisement