Skip to content

Latest commit

 

History

History
executable file
·
43 lines (31 loc) · 1.35 KB

README.md

File metadata and controls

executable file
·
43 lines (31 loc) · 1.35 KB

OglTutorial

Getting Started:

Download and install Visual Studio 2013 Express Edition for Desktop Applications Link : http://www.microsoft.com/en-in/download/details.aspx?id=40787

Download freeglut binary release for MSVC and unzip it to "C:\opengl\freeglut" Link : http://www.transmissionzero.co.uk/software/freeglut-devel/

You should now have the following directories: C:\opengl\freeglut\bin C:\opengl\freeglut\include C:\opengl\freeglut\lib

Download GLEW Windows binary release and unzip it to "C:\opengl\glew" Link : http://glew.sourceforge.net/

You should now have the following directories: C:\opengl\glew\bin C:\opengl\glew\include C:\opengl\glew\lib

Download GLM headers and unzip to "C:\opengl\glm" Link : http://sourceforge.net/projects/ogl-math/files/

You should now have the following directories: C:\opengl\glm\glm\gtc C:\opengl\glm\glm\gtx C:\opengl\glm\glm\detail

Download FreeImage binary distribution and unzip to "C:\opengl\FreeImage" Link : http://freeimage.sourceforge.net/download.html

You should now have the following files: C:\opengl\FreeImage\Dist\FreeImage.lib C:\opengl\FreeImage\Dist\FreeImage.h

Now, open 'OpenGL.sln' in VS 2013, build and run the application. You should see the first sample application(a triangle). Press escape to launch the next sample, and the next...