Crates.io | aclysma_spirv_cross |
lib.rs | aclysma_spirv_cross |
version | 0.0.1 |
source | src |
created_at | 2024-02-17 12:28:52.993139 |
updated_at | 2024-02-17 12:28:52.993139 |
description | Safe wrapper around SPIRV-Cross |
homepage | https://github.com/aclysma/spirv_cross.git |
repository | https://github.com/aclysma/spirv_cross.git |
max_upload_size | |
id | 1143191 |
size | 2,783,547 |
This repository exists so that my other projects that require a few extra PRs that have not been merged can be published.
Unless you also want those commits, I suggest using the original:
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(())
}
This project is licensed under either of Apache License, Version 2.0 or MIT license, at your option.
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.