5 releases

0.23.5 Apr 19, 2023
0.23.4 Apr 19, 2023
0.23.3 Apr 11, 2023
0.23.2 Mar 11, 2023
0.23.1 Mar 7, 2023

#432 in Graphics APIs

Download history 6/week @ 2024-02-20 13/week @ 2024-02-27 4/week @ 2024-03-05 7/week @ 2024-03-12 7/week @ 2024-03-19 183/week @ 2024-03-26 12/week @ 2024-04-02

202 downloads per month
Used in phobos

MIT/Apache

10MB
254K SLoC

GLSL 196K SLoC // 0.0% comments C++ 47K SLoC // 0.1% comments Rust 9K SLoC // 0.0% comments Python 883 SLoC // 0.0% comments C 162 SLoC Shell 91 SLoC // 0.1% comments Swift 60 SLoC // 0.1% comments Assembly 55 SLoC // 0.1% comments AsciiDoc 6 SLoC // 0.3% comments

spirv_cross

Safe wrapper around SPIR-V Cross

Crate Travis Build Status Appveyor Build Status

Disclaimer

This is a continued version of spirv-cross with updated dependencies. MSL is currently not supported. All credit for the original version goes to Joshua Groves. If possible, I would merge the changes in this crate into the original repo (after fixing MSL).

Additional features of this fork compared to the original:

  • Acceleration structures.

Example

spirv_cross provides a safe wrapper around SPIRV-Cross for use with Rust. For example, here is a simple function to parse a SPIR-V module and compile it to HLSL and MSL:

extern crate spirv_cross;
use spirv_cross::{spirv, hlsl, msl, ErrorCode};

fn example(module: spirv::Module) -> Result<(), ErrorCode> {
    // Compile to HLSL
    let ast = spirv::Ast::<hlsl::Target>::parse(&module)?;
    println!("{}", ast.compile()?);

    // Compile to MSL
    let ast = spirv::Ast::<msl::Target>::parse(&module)?;
    println!("{}", ast.compile()?);

    Ok(())
}

License

This project is licensed under either of Apache License, Version 2.0 or MIT license, at your option.

Contribution

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

See CONTRIBUTING.md.

Dependencies