Crates.io | glsl-include |
lib.rs | glsl-include |
version | 0.3.1 |
source | src |
created_at | 2018-04-09 02:41:56.316158 |
updated_at | 2019-03-02 18:09:03.067872 |
description | A library for expanding #include directives in GLSL source strings |
homepage | |
repository | https://github.com/jshrake/glsl-include |
max_upload_size | |
id | 59657 |
size | 24,082 |
glsl-include is a rust library for expanding #include directives in GLSL source strings
Cargo.toml:
[dependencies]
glsl-include = "0.3"
main.rs:
extern crate glsl_include;
use glsl_include::Context;
fn main () {
let main = r"
#version 410
#include <platform.glsl>
#include <common.glsl>
out vec4 fragColor;
void main () {
fragColor = vec4(1.0);
}";
let platform = "void platform_fn() {}";
let common = "uniform float iTime;";
let expanded_src = Context::new()
.include("platform.glsl", platform)
.include("common.glsl",common)
.expand(main).unwrap();
}
The library also expands #pragma include
statements with no additonal configuration required.
cargo bench
The workflow I currently use for benchmarking a changeset:
git checkout master; cargo bench
git checkout feature-branch; cargo bench
For the best results with criterion, install gnuplot
(macos: brew install gnuplot
)
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.