在哪里可以下载 C/C++ 的 OpenGL 4.0 标头?我在/compiler/include/
中只找到了GL/gl.h
,但它已经过时了(OpenGL 1.1)。
不要提供像 GLEW 这样的库。我想用纯OpenGL编写我的应用程序。
OpenGL 核心配置文件标头位于此处:
http://www.opengl.org/registry/api/GL/glcorearb.h
此标头仅包含核心配置文件和 ARB 扩展接口,如 OpenGL 4.3 规范的附录 G.2 中所述。它不包括仅在兼容性配置文件中找到的接口。
我认为这就是你说OpenGL 4
时所要求的.
以下是一些 OpenGL 4 教程:
- http://www.swiftless.com/opengl4tuts.html
- http://antongerdelan.net/opengl/
看看 http://rastertek.com/tutgl40.html 他在 OGL 4.0 教程中不使用任何包装器,并且自己管理 APIENTRY。