I've been trying to look for a tutorial online that will help me install OpenGL for a 64 bit os on Windows 7. I have been very unsuccessful in finding one. Any suggestions?
,
Dave
Visual C++ Express 2010 OpenGL for Windows 7 64 Bit Os?
Started by DalisayDa, Jan 11 2012 11:21 PM
6 replies to this topic
Sponsor:
#2 Moderators - Reputation: 4649
Posted 12 January 2012 - 06:15 AM
The necessary runtime libraries are already shipped with the operating system, and the necessary libraries for compilation are shipped with the Windows SDK. However, you also need a 64-bit compiler and I'm not sure the Express editions of Visual Studio have one.
So the typical cases are that you either have do to nothing or that you don't even have the option to compile 64-bit programs. In other cases, you need to be more specific with what problems you are having and what it is you're trying to install.
So the typical cases are that you either have do to nothing or that you don't even have the option to compile 64-bit programs. In other cases, you need to be more specific with what problems you are having and what it is you're trying to install.
#3 Members - Reputation: 785
Posted 12 January 2012 - 09:58 AM
I have the express version of vc++ 2010 and it doesn't do 64 exe. It only does 32.
Sig: http://glhlib.sourceforge.net
an open source GLU replacement library. Much more modern than GLU.
float matrix[16], inverse_matrix[16];
glhLoadIdentityf2(matrix);
glhTranslatef2(matrix, 0.0, 0.0, 5.0);
glhRotateAboutXf2(matrix, angleInRadians);
glhScalef2(matrix, 1.0, 1.0, -1.0);
glhQuickInvertMatrixf2(matrix, inverse_matrix);
glUniformMatrix4fv(uniformLocation1, 1, FALSE, matrix);
glUniformMatrix4fv(uniformLocation2, 1, FALSE, inverse_matrix);
an open source GLU replacement library. Much more modern than GLU.
float matrix[16], inverse_matrix[16];
glhLoadIdentityf2(matrix);
glhTranslatef2(matrix, 0.0, 0.0, 5.0);
glhRotateAboutXf2(matrix, angleInRadians);
glhScalef2(matrix, 1.0, 1.0, -1.0);
glhQuickInvertMatrixf2(matrix, inverse_matrix);
glUniformMatrix4fv(uniformLocation1, 1, FALSE, matrix);
glUniformMatrix4fv(uniformLocation2, 1, FALSE, inverse_matrix);
#4 Members - Reputation: 544
Posted 12 January 2012 - 11:13 AM
If you install Windows SDK 7.1, or higher, you can compile 64-bit code in Express. Make sure you change the Plaform Toolset to the latest SDK in your project's settings.
Latest project: Sideways Racing on the iPad
#7 Members - Reputation: 544
Posted 12 January 2012 - 08:22 PM
For GLUT, you will need to have 64-bit libraries available, and add them to your project's library list and paths.
Here is a 64-bit version of GLUT:
http://www.idfun.de/glut64/
Here is a 64-bit version of GLUT:
http://www.idfun.de/glut64/
Latest project: Sideways Racing on the iPad






