wgpu/player
2020-07-25 19:33:21 -04:00
..
src Convert all logging to tracing and add fmt logger 2020-07-25 19:33:21 -04:00
tests Replace borrowed slices in Descriptor structs with copy on write slices (#822) 2020-07-20 12:31:05 -04:00
Cargo.toml Convert all logging to tracing and add fmt logger 2020-07-25 19:33:21 -04:00
README.md Player-based GPU test framework 2020-07-17 00:08:43 -04:00

wgpu player

This is application that allows replaying the wgpu workloads recorded elsewhere. You must use the player built from the same revision as an application was linking to, or otherwise the data may fail to load.

Launch as:

play <trace-dir>

When built with "winit" feature, it's able to replay the workloads that operate on a swapchain. It renders each frame sequentially, then waits for the user to close the window. When built without "winit", it launches in console mode and can replay any trace that doesn't use swapchains.

Note: replaying is currently restricted to the same backend, as one used for recording a trace. It is straightforward, however, to just replace the backend in RON, since it's serialized as plain text. Valid values are: Vulkan, Metal, Dx12, and Dx11.