Aftermath-rs

Rust bindings for the NVIDIA Aftermath SDK, targeting Vulkan applications.

This crate helps you to obtain NVIDIA Aftermath GPU dump files after a device lost event.

Supports both Windows and Linux. Closed-source binaries are automatically downloaded and statically linked.

Usage

```rs extern crate aftermath_rs as aftermath; use ash::vk;

struct Delegate; impl aftermath::AftermathDelegate for Delegate { fn dumped(&mut self, dumpdata: &[u8]) { // Write dump_data to file, or send to telemetry server } fn shaderdebug_info(&mut self, data: &[u8]) { }

fn description(&mut self, describe: &mut aftermath::DescriptionBuilder) {
}

}

let _guard = aftermath::Aftermath::new(Delegate);

fn handleerror(error: vk::Result) -> vk::Result { let status = aftermath::Status::waitforstatus(Some(std::time::Duration::fromsecs(5))); if status != aftermath::Status::Finished { panic!("Unexpected crash dump status: {:?}", status); } std::process::exit(1); }

// Make Vulkan API Calls device.queuesubmit(..) .maperr(handle_error) .unwrap();

```