如何准备 C++在 Windows 7 中使用 OpenGL、Glut 和 Visual Studio 2008 进行项目
由于我在设置 Visual Studio 2008 使用 OpenGL 时遇到很多问题,我会问这个对某些人可能有用的问题:
要在 Visual Studio 2008 中将 OpenGL 与 C++ 结合使用,需要遵循哪些步骤?
As I had many problems setting Visual Studio 2008 for using OpenGL I will ask this question that can be useful to some people:
Which are the steps to follow in order to use OpenGL with C++ in Visual Studio 2008?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
首先,您需要有一块显卡并检查它是否可以与 OpenGL 配合使用并且驱动程序是否已更新。我在此链接中使用了测试 检查它。
检查 Visual Studio 2008 是否已正确安装以及计算机中是否创建了以下路径也很重要:
现在我们可以按照安装步骤进行操作:
1.- 从 https://www.opengl.org/resources/libraries/glut/glut_downloads.php,解压并复制文件如下所示:
2.- 创建一个空的 C++ Win32 应用程序:
并单击“完成”。
3.- 添加新的 C++ 源文件:
4.- 链接到 OpenGL 库(重要步骤):
5.- 下载此示例代码。
6.- 还需要在 Visual Studio 中设置路径:
在工具中 ->选项-> VC++ 目录 ->包含文件:
<块引用>
C:\ Program Files \ Microsoft SDKs \ Windows \ v6.0A \ Include
在配置属性→链接器→附加库中
目录:
<块引用>
C:\Program Files\Microsoft SDKs\Windows\v6.0A\Lib
First of all you need to have a video card and check that it works with OpenGL and the drivers are updated. I used the test in this link to check it.
It is also important to check that Visual Studio 2008 is correctly installed and that the following path is created in your computer:
Now we can follow the installation steps:
1.- Download GLUT from https://www.opengl.org/resources/libraries/glut/glut_downloads.php, unzip and copy the files as instructed below:
2.- Create an empty C++ Win32 application:
and click Finish.
3.- Add a new C++ source file:
4.- Link to the OpenGL libraries (important step):
5.- Download this sample code.
6.- It is also necessary to set the paths in Visual Studio:
In Tools -> Options -> VC++ Directories -> Include Files:
In Configuration Properties → Linker → Additional Library
Directories:
MSDN 有一个有关 OpenGL 的部分应该有帮助,包括示例代码。
MSDN has a section on OpenGL that should help out, including sample code.