├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md └── src ├── error.rs ├── gl_compiler.rs ├── include_provider.rs ├── lib.rs ├── scanner.rs ├── source_chunk.rs └── tests.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | Cargo.lock 4 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3r2tic/shader-prepper/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3r2tic/shader-prepper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3r2tic/shader-prepper/HEAD/README.md -------------------------------------------------------------------------------- /src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3r2tic/shader-prepper/HEAD/src/error.rs -------------------------------------------------------------------------------- /src/gl_compiler.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3r2tic/shader-prepper/HEAD/src/gl_compiler.rs -------------------------------------------------------------------------------- /src/include_provider.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3r2tic/shader-prepper/HEAD/src/include_provider.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3r2tic/shader-prepper/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/scanner.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3r2tic/shader-prepper/HEAD/src/scanner.rs -------------------------------------------------------------------------------- /src/source_chunk.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3r2tic/shader-prepper/HEAD/src/source_chunk.rs -------------------------------------------------------------------------------- /src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3r2tic/shader-prepper/HEAD/src/tests.rs --------------------------------------------------------------------------------