#glsl #marco #vulkan #shader #sqriv

macro glsl_compiler

Write GLSL Code directly in a marco!

3 releases

new 0.1.2 Nov 22, 2024
0.1.1 Nov 7, 2024
0.1.0 Nov 7, 2024

#612 in Graphics APIs

Download history 216/week @ 2024-11-04 15/week @ 2024-11-11

231 downloads per month

MIT license

22KB
317 lines

GLSL Compiler Marco

Write GLSL Code directly in a marco!

  • Compile GLSL to Spriv binary for vulkan
  • Not inside a string with shit linting
  • Compile-time evaluation to binary slice
  • No nightly needed
  • Errors with correct lines
  • #include code from other marcos

Finally, it's possible to write GLSL directly in Rust.

let bin_shader_code: &[u8] = glsl!{type = Compute, code = {
    #version 450 core
    
    layout(binding = 0, rgba8) uniform writeonly image2D img;

    void main () {
        uvec2 pos = gl_GlobalInvocationID.xy;
        vec4 color = vec4(pos, 0.0, 1.0);
        
        imageStore(img, ivec2(pos), color);
    }
}};

will evaluated to

let bin_shader_code: &[u8] = &[3, 2, 35, 7, 0, 0, 1, 0, 11, 0, 13, 0, 36, ...];

Shader Types

Mark shader type with type = <shader type> in marco.

Possible types

  • Compute
  • Vertex Fragment, Geometry, Mesh
  • RayGeneration, AnyHit, ClosestHit, Miss
  • Include

Proper Errors

glsl!{type = Compute, code = {
    #version 450 core

    void main () {
        uvec2 pos = gl_GlobalInvocationID.xy;
        vec4 color = vec4(pos, 0.0, 1.0);
        
        imageStore(img, ivec2(pos), colo);
    }
}};

will error with:

error:  undeclared identifier
   |
13 |             imageStore(img, ivec2(pos), colo);
   |                        ^^^

error:  undeclared identifier
   |
13 |             imageStore(img, ivec2(pos), colo);
   |                                         ^^^^

error:  no matching overloaded function found
   |
13 |             imageStore(img, ivec2(pos), colo);
   |             ^^^^^^^^^^

Just compiling a glsl file at compile time

let bin: &[u8] = glsl!{type = Compute, file = "shaders/test.glsl"};

Including Code from other glsl file

Example Glsl File Name: "shaders/included.glsl"

let bin: &[u8] = glsl!{type = Compute, code = {
    #version 450 core
    
    #include "shaders/included.glsl"

    layout(binding = 0, rgba8) uniform writeonly image2D img;
    void main () {
        uvec2 pos = gl_GlobalInvocationID.xy;
        imageStore(img, ivec2(pos), COLOR);
    }
}};

Including Code from other Macro

Example Rust File Name: "src/main.rs"

fn shader() {
    let bin: &[u8] = glsl!{type = Compute, code = {
        #version 450 core
        
        #include "src/main.rs-included.glsl"
    
        layout(binding = 0, rgba8) uniform writeonly image2D img;
        void main () {
            uvec2 pos = gl_GlobalInvocationID.xy;
            imageStore(img, ivec2(pos), COLOR);
        }
    }};

    println!("{:?}", bin)
}

#[allow(dead_code)]
fn included() {
    glsl!{type = Include, name = "included.glsl", code = {
        #define COLOR vec4(pos, 0.0, 1.0)
    }};
}

Dependencies

~28MB
~631K SLoC