OpenGL for vc++ 2010 express

i want a link to download OpenGl library for vc++ 2010 express
Hi,

I don't know about a standalone installer, but the includes and libs for OpenGL programming are included in the Windows SDK installation.
Not sure if this will help but if you want to write an OpenGL application I usually do the following in Visual Studio 2010

Go to the projects properties : Project-> <project name> Properties-> Configuration Properties-> Linker-> Input -> Additonal Dependencies
and enter: opengl32.lib; glu32.lib;

and that should link the relevant libraries to your project.

Then just type:
1
2
#include <gl\gl.h>
#include <gl\glu.h> 


to include the libraries.
closed account (3qX21hU5)
http://lmgtfy.com/?q=openGL+download

Topic archived. No new replies allowed.