An open API service indexing awesome lists of open source software.

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

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.