how to install openGL on windowsXP

Status
Not open for further replies.
i want to make a game in c++. am familiar with c++but have no idea how to start programing the game.read somewhere that openGL is required. what is openGL and how should i install it on windowsXP
 
Open gl does not need to be installed. Your video card driver comes with the latest version.
 
cyrax is right, OpenGL is automatically installed with your video driver. However, if you want to program in OpenGL, you need to get some extra OpengGL libraries so that your programs will compile. ;)

I recommend you start out by figuring out how to use glut. It's a free library that implements basic functions in a more 'intuitive' way and there are literally hundreds of tutorials on how to get started with it. :D

You can get a windows version here or here. The best learning resource is The Red Book (found here ). If you want to find more info and tutorials just google for "glut" or "glut tutorials" and you'll be floded with links.

Lots of luck and let us see your game when it's done. :grinthumb
 
Status
Not open for further replies.
Back