https://github.com/taichi-dev/taichi_glad_ready
Ready to use GLAD as a OpenGL API loader
https://github.com/taichi-dev/taichi_glad_ready
Last synced: 7 days ago
JSON representation
Ready to use GLAD as a OpenGL API loader
- Host: GitHub
- URL: https://github.com/taichi-dev/taichi_glad_ready
- Owner: taichi-dev
- Created: 2020-04-20T03:49:32.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2021-11-02T17:48:08.000Z (over 4 years ago)
- Last Synced: 2025-11-12T22:23:43.031Z (7 months ago)
- Language: C
- Size: 631 KB
- Stars: 0
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# taichi_glad_ready
Ready to use GLAD as a OpenGL API loader
## Generation
If you encounter problems with glad, try run following scripts yourself:
```
python -m pip install --user glad
rm -rf external/glad
glad --generator c --out-path external/glad
```
### Tips
Try `--spec wgl` to specify API spec.
Try `--api gles=2.0` to specify API version.
Try `--extensions GL_ARB_compute_shader,GL_NV_shader_atomic_float` to specify extensions.
Try `--generator c-debug` to hook each API call and replace check_opengl_errors.
Also try https://glad.dav1d.de/ for online generation.