wgpu/player
Andreas Reich 34e770b281 Fix query resolve not marking buffer as initialized
-> on uninitialized buffers query results would be overriden with 0
2021-06-27 08:22:05 +02:00
..
src add clear buffer/image to wgpu-rs api 2021-06-05 11:49:13 +02:00
tests Fix query resolve not marking buffer as initialized 2021-06-27 08:22:05 +02:00
Cargo.toml Relicense to MIT/Apache 2021-06-19 01:39:35 -04:00
README.md Update players readme 2020-11-05 16:58:40 -05:00

wgpu player

This is an application that allows replaying the wgpu workloads recorded elsewhere. It requires the player to be 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.