docs.rs failed to build mach-dxcompiler-rs-2023.12.14+0b7073b.1
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
mach-dxcompiler-rs
This library allows for statically linking prebuilt binaries from mach-dxcompiler-rs
into a Rust project. The mach-dxcompiler
repository is a fork of Microsoft's DirectXShaderCompiler
that replaces the CMake build system with Zig. This allows for building the project statically and linking it into existing applications - but the core logic comes from the original DXC library.
Usage
The curl.exe
and tar.exe
command line utilities are required for this crate's build script. They should be installed by default in Windows 10 and 11.
First, add this crate to the project: cargo add mach-dxcompiler-rs
Next, use the DxcCreateInstance
function to create DXC COM objects. Once created, these objects are usable with the normal COM windows API.
use Dxc;
let mut obj = null_mut;
DxcCreateInstance;
// ... use the shader compiler ...