1 unstable release

0.1.0+irconverter-1.1 Jul 16, 2024

#631 in Graphics APIs

Apache-2.0

26KB
555 lines

🤘 Saxaboom runtime

Actions Status Latest version Documentation Apache Contributor Covenant

Banner

saxaboom-runtime provides the runtime structures and interop with the metal crate needed to make use of the metallib shaders generated by saxaboom (bindings for Metal shader converter).

Usage

After compiling your DXIL shaders to metallib using saxaboom, follow these steps in your render backend.

Add this to your Cargo.toml:

[dependencies]
saxaboom-runtime = "0.1.0"
use saxaboom_runtime::ffi::IRDescriptorTableEntry;

let gpu_address = 0; // TODO: Read from metal::Buffer::gpu_address()
let metadata = IRDescriptorTableEntry::buffer_metadata(&todo!("Fill saxaboom_runtime::BufferView"));
let buffer_descriptor = IRDescriptorTableEntry::buffer(gpu_address, metadata);

Dependencies

~4.5MB
~40K SLoC