OpenGL Compiler

Hi, Where can I find an OpenGL compiler? I cannot find anything of any use on the net. CHeers.

Whats an OpenGL Compiler?? you write ythe code in the language of choice, and then compile using the compiler of choise…

OpenGL is an API, meaning that you “program” OpenGL by calling functions from your application code. So for instance, if you’re programming in C, you just need to include <GL/gl.h> etc, and link with opengl32 (under Win32) or GL (under X11). Of course, there is more to it (window management etc). Have a look at http://hem.passagen.se/opengl/getstarted/ for a start.