wgpu-info 29.0.3

A tool to print and process information about available wgpu adapters.
1
2
3
4
5
6
7
8
9
10
11
12
13
#![cfg_attr(target_arch = "wasm32", no_main)]
#![cfg(not(target_arch = "wasm32"))]

mod cli;
mod human;
mod report;
#[cfg(test)]
mod tests;
mod texture;

fn main() -> anyhow::Result<()> {
    cli::main()
}