4 个版本

0.4.0 2024年8月2日
0.3.3 2024年7月29日
0.3.2 2024年2月16日
0.2.4 2024年2月8日
0.1.0 2022年9月24日

#73 in 编程语言

Download history • Rust 包仓库 176/week @ 2024-05-03 • Rust 包仓库 98/week @ 2024-05-10 • Rust 包仓库 165/week @ 2024-05-17 • Rust 包仓库 126/week @ 2024-05-24 • Rust 包仓库 151/week @ 2024-05-31 • Rust 包仓库 196/week @ 2024-06-07 • Rust 包仓库 342/week @ 2024-06-14 • Rust 包仓库 165/week @ 2024-06-21 • Rust 包仓库 83/week @ 2024-06-28 • Rust 包仓库 183/week @ 2024-07-05 • Rust 包仓库 192/week @ 2024-07-12 • Rust 包仓库 151/week @ 2024-07-19 • Rust 包仓库 564/week @ 2024-07-26 • Rust 包仓库 737/week @ 2024-08-02 • Rust 包仓库 556/week @ 2024-08-09 • Rust 包仓库 1173/week @ 2024-08-16 • Rust 包仓库

3,049 每月下载量
12 个 crate 中使用 (通过 librashader-reflect)

MIT/Apache

7.5MB
147K SLoC

C++ 82K SLoC // 0.1% comments • Rust 包仓库 GLSL 56K SLoC // 0.0% comments • Rust 包仓库 Happy 4K SLoC • Rust 包仓库 Rust 3.5K SLoC // 0.0% comments • Rust 包仓库 Bitbake 360 SLoC • Rust 包仓库 Shell 295 SLoC // 0.6% comments • Rust 包仓库 Python 277 SLoC // 0.3% comments • Rust 包仓库 JavaScript 141 SLoC • Rust 包仓库 Forge Config 101 SLoC // 0.8% comments • Rust 包仓库 HLSL 44 SLoC // 0.0% comments • Rust 包仓库

glslang-rs

安全 Rust 绑定到 glslang

Latest Version Docs License

使用

[dependencies]
glslang = "0.3"

示例

编译着色器

    use rspirv::binary::Disassemble;
    use glslang::*;

    #[test]
    pub fn test_compile() {
        // Acquire the compiler instance
        let compiler = Compiler::acquire().unwrap();
        let source = ShaderSource::try_from(String::from(
r#"
#version 450

layout(location = 0) out vec4 color;
layout(binding = 1) uniform sampler2D tex;

void main() {
    color = texture(tex, vec2(0.0));
}
"#,
        ))
        .expect("source");

        let limits = ResourceLimits::default();
        let input = ShaderInput::new(
            &source,
            &limits,
            ShaderStage::Fragment,
            &CompilerOptions::default(),
            None,
        );
        let shader = Shader::new(&compiler, input).expect("shader init");

        let mut program = Program::new(&compiler);

        program.add_shader(shader);
        program.link().expect("link error");

        let code = program.compile(ShaderStage::Fragment).expect("shader");
       
        // Use rspirv to disassemble
        let mut loader = rspirv::dr::Loader::new();
        rspirv::binary::parse_words(&code, &mut loader).unwrap();
        let module = loader.module();

        println!("{}", module.disassemble())
    }

依赖