作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在关注 this tutorial学习 OpenGL,但我在编译时遇到问题,因为编译器找不到头文件之一。
这是我试图编译的文件:
#include <glad/glad.h>
#include <GLFW/glfw3.h>
int main() {
return 0;
}
$ gcc -o sandbox sandbox.cpp -lGL -lGLU -lglut
sandbox.cpp:1:23: fatal error: glad/glad.h: No such file or directory
#include <glad/glad.h>
^
compilation terminated.
最佳答案
GLAD 是 OpenGL 的函数加载器。此 tutorial说明如何设置。
本教程解释了 GLAD 的用途:
Since there are many different versions of OpenGL drivers, the location of most of its functions is not known at compile-time and needs to be queried at run-time.
关于opengl - <高兴/高兴.h> : No such file or directory,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45492937/
我是一名优秀的程序员,十分优秀!