11 releases

0.4.7 Feb 19, 2024
0.4.6 Feb 7, 2024
0.4.1 Jan 15, 2024
0.4.0 Jul 20, 2023
0.1.1-beta.3 Feb 4, 2023

#179 in Graphics APIs

Download history 1/week @ 2023-12-18 3/week @ 2023-12-25 75/week @ 2024-01-15 422/week @ 2024-01-29 1120/week @ 2024-02-05 1394/week @ 2024-02-12 847/week @ 2024-02-19 485/week @ 2024-02-26 618/week @ 2024-03-04 89/week @ 2024-03-11 116/week @ 2024-03-18 459/week @ 2024-03-25 513/week @ 2024-04-01

1,223 downloads per month
Used in 7 crates (via librashader-reflect)

MIT license

61MB
2.5M SLoC

C 2M SLoC // 0.1% comments C++ 80K SLoC // 0.2% comments Python 25K SLoC // 0.4% comments GNU Style Assembly 18K SLoC Rust 16K SLoC // 0.1% comments Happy 4.5K SLoC GLSL 3K SLoC // 0.2% comments Bitbake 1.5K SLoC LLVM 773 SLoC Forge Config 256 SLoC XSL 145 SLoC // 0.1% comments Shell 129 SLoC // 0.1% comments GraphQL 50 SLoC

spirv-to-dxil-rs

Safe Rust bindings to spirv-to-dxil.

Latest Version Docs License

Building

spirv-to-dxil-rs builds a copy of spirv-to-dxil statically from Mesa.

A script to clone a minimal subset of Mesa required to build spirv-to-dxil has been provided.

$ ./clone-mesa.sh
$ cargo build

Updating Mesa

Unless you are maintaining spirv-to-dxil-rs, you do not need to update Mesa frequently.

Updating Mesa requires Python 3.6 and mako to pre-generate templated files. CMake is also required to regenerate the Rust bindings from spirv-to-dxil.h, this is to ensure that bindings can be generated regardless of whether changes need to be made to the spirv-to-dxil-sys build script.

  1. Update the submodule to HEAD

    git submodule update --init --remote --depth 1 --single-branch --progress spirv-to-dxil-sys/native/mesa

  2. Re-apply sparse-checkout

    git submodule absorbgitdirs
    git -C spirv-to-dxil-sys/native/mesa config core.sparseCheckout true
    git -C spirv-to-dxil-sys/native/mesa config core.symlinks false
    cp spirv-to-dxil-sys/native/mesa-sparse-checkout .git/modules/spirv-to-dxil-sys/native/mesa/info/sparse-checkout
    git submodule foreach git sparse-checkout reapply
    
  3. Regenerate bindings

    cargo run --bin bindings_generator
    
  4. Regenerate mako-generated files for cc

    ./mesa_mako 
    

Dependencies