• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..31-Mar-2022-

glsl-optimizer/H03-May-2022-183,680123,939

src/H31-Mar-2022-239220

.cargo-checksum.jsonH A D03-May-202289 11

Cargo.tomlH A D31-Mar-2022843 2422

README.mdH A D31-Mar-2022390 2113

build.rsH A D31-Mar-202211.3 KiB200189

wrapper.hppH A D31-Mar-202261 21

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