wgpu/wgpu-info
Luke Street 76bcd9c494
Implement min_{uniform,storage}_buffer_offset_alignment limits (#1923)
* Implement min_{uniform,storage}_buffer_offset_alignment limits

* Add Limits::using_alignment

* Update docs & examples

* Create binding_model::buffer_binding_type_alignment fn
2021-09-08 13:53:02 -04:00
..
src Implement min_{uniform,storage}_buffer_offset_alignment limits (#1923) 2021-09-08 13:53:02 -04:00
Cargo.toml Release v0.10 (#1820) 2021-08-18 19:06:21 +00:00
README.md Assorted touchups 2021-06-23 20:23:19 -04:00

wgpu-info

This is a command line utility that does two different functions.

Listing Adapters

When called with no arguments, wgpu-info will list all adapters visible to wgpu and all the information about them we have.

cargo run --bin wgpu-info

Running Test on many Adapters

When called with any amount of arguments it will interpret all of the arguments as a command to run. It will run this command N different times, one for every combination of adapter and backend on the system.

For every command invocation, it will set WGPU_ADAPTER_NAME to the name of the adapter name and WGPU_BACKEND to the name of the backend. This is used as the primary means of testing across many adapters.