Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | 31-Mar-2022 | - | ||||
glsl-optimizer/ | H | 03-May-2022 | - | 183,680 | 123,939 | |
src/ | H | 31-Mar-2022 | - | 239 | 220 | |
.cargo-checksum.json | H A D | 03-May-2022 | 89 | 1 | 1 | |
Cargo.toml | H A D | 31-Mar-2022 | 843 | 24 | 22 | |
README.md | H A D | 31-Mar-2022 | 390 | 21 | 13 | |
build.rs | H A D | 31-Mar-2022 | 11.3 KiB | 200 | 189 | |
wrapper.hpp | H A D | 31-Mar-2022 | 61 | 2 | 1 |
README.md
1# glslopt-rs 2 3Rust bindings to [glsl-optimizer](https://github.com/jamienicol/glsl-optimizer). 4 5## Updating glsl-optimizer 6 7To update the version of glsl-optimizer, update the git submodule: 8 9```sh 10git submodule update --remote glsl-optimizer 11``` 12 13Then, if required, regenerate the bindings: 14 15```sh 16cargo install bindgen 17bindgen wrapper.hpp -o src/bindings.rs 18``` 19 20Then commit the changes. 21