Page 1 of 1
opengl API: where is it???
Posted: Thu Jun 22, 2006 4:44 pm
by Jay
Does somebody know where i can get the newest version of the opengl api?
Posted: Thu Jun 22, 2006 11:18 pm
by paradoxnj
http://www.opengl.org for starters.
OpenGL is not your typical SDK. It has a base (v1.1) and extensions (glext.h). The extensions are what up the version number. To make your OpenGL application 2.0 compliant, you just have to load 1 v2.0 extension (shaders).
Posted: Fri Jun 23, 2006 11:20 am
by Jay
ah ok. Now i understand it. Thanks.