Dynamic Shader Assembler

A Shader generation tool from TOML to GLSL written in Rust


[//]: # ( ) [//]: # ( crates.io version) [//]: # ( )

Example

Config

```toml version = 330 profile = "core"

[layout] apos = "vec3" auv = "vec2"

[uniform] transform = "mat4" texture_0 = "sampler2D"

[fragment] output = { result = "vec4" } source = ''' result = texture(texture_0, uv); '''

[vertex] output = { uv = "vec2" }

source = ''' glPosition = transform * vec4(apos, 1.0); uv = a_uv; ''' ```

Compiler

rust let toml = fs::read_to_string("example/textured.toml").unwrap(); let (vertex,fragment, config) = compile_toml(toml.as_str()).unwrap(); println!("Vertex {}",vertex); println!("Fragment {}",fragment);

Output

Vertex

```glsl

version 330 core

layout (location = 0) in vec3 apos; layout (location = 1) in vec2 auv;

uniform mat4 transform; uniform sampler2D texture_0;

out vec2 uv;

void main() { glPosition = transform * vec4(apos, 1.0); uv = a_uv; } ```

Fragment

```glsl

version 330 core

uniform mat4 transform; uniform sampler2D texture_0;

in vec2 uv;

out vec4 result;

void main() { result = texture(texture_0, uv); } ```

You can specify Functions, Constants and Output per Shader. But Uniforms, Version, Profile and Layout per Program.

Vertex Output are also synced with Fragment Input.

For all examples see examples/textured.toml

License

This project is licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in toml-rs by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.