- C 63.7%
- Python 22.9%
- Rust 5.1%
- Shell 3.4%
- CMake 2.7%
- Other 2.2%
On a UNIX system without X11 libraries, it's impossible to have libGL.so and glXGetProcAddressARB(). Currently GLAD would fail to load GL symbols in this case. Try also loading libEGL.so/libEGL.so.1 in OpenGL loader and fallback to eglGetProcAddress() to query GL symbols if glXGetProcAddressARB() isn't available. Since EGL version 1.5 released in 2014, it's required for eglGetProcAddress() to be able to query all client API functions instead of only extensions, which is quite early for a Wayland-only display stack, thus no function check or another fallback logic is added. Signed-off-by: Yao Zi <me@ziyao.cc> |
||
|---|---|---|
| .github/workflows | ||
| cmake | ||
| example | ||
| glad | ||
| test | ||
| utility | ||
| .gitignore | ||
| LICENSE | ||
| long_description.md | ||
| MANIFEST.in | ||
| pyproject.toml | ||
| README.md | ||
| requirements.txt | ||
glad
Vulkan/GL/GLES/EGL/GLX/WGL Loader-Generator based on the official specifications for multiple languages.
Check out the webservice for glad2 to generate the files you need!
NOTE: This is the 2.0 branch, which adds more functionality but changes the API.
Some languages are only available in the glad1 generator.
Examples
#include <glad/gl.h>
// GLFW (include after glad)
#include <GLFW/glfw3.h>
int main() {
// -- snip --
GLFWwindow* window = glfwCreateWindow(WIDTH, HEIGHT, "LearnOpenGL", NULL, NULL);
glfwMakeContextCurrent(window);
int version = gladLoadGL(glfwGetProcAddress);
if (version == 0) {
printf("Failed to initialize OpenGL context\n");
return -1;
}
// Successfully loaded OpenGL
printf("Loaded OpenGL %d.%d\n", GLAD_VERSION_MAJOR(version), GLAD_VERSION_MINOR(version));
// -- snip --
}
The full code: hellowindow2.cpp
More examples in the examples directory of this repository.
Plugins
Glad plugins maintained by the community to add support for more languages:
Documentation
The documentation can be found in the wiki.
Examples can be found in the example directory. Some examples:
- C/C++
- Rust
License
For the source code and various Khronos files see LICENSE.
The generated code from glad is any of Public Domain, WTFPL or CC0. Now Khronos has some of their specifications under Apache Version 2.0 license which may have an impact on the generated code, see this clarifying comment on the Khronos / OpenGL-Specification issue tracker.