OpenGL for vc++ 2010 express
Jan 31, 2013 at 12:28pm
i want a link to download OpenGl library for vc++ 2010 express
Jan 31, 2013 at 12:55pm
Hi,
I don't know about a standalone installer, but the includes and libs for OpenGL programming are included in the Windows SDK installation.
Jan 31, 2013 at 1:27pm
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.
Jan 31, 2013 at 1:30pm
http://lmgtfy.com/?q=openGL+download
Topic archived. No new replies allowed.