-
Notifications
You must be signed in to change notification settings - Fork 977
/
Copy pathmain.rs
34 lines (32 loc) · 1 KB
/
main.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/// This example shows how to describe the adapter in use.
async fn run() {
#[cfg_attr(target_arch = "wasm32", allow(unused_variables))]
let adapter = {
let instance = wgpu::Instance::default();
#[cfg(not(target_arch = "wasm32"))]
{
log::info!("Available adapters:");
for a in instance.enumerate_adapters(wgpu::Backends::all()) {
log::info!(" {:?}", a.get_info())
}
}
instance
.request_adapter(&wgpu::RequestAdapterOptions::default())
.await
.unwrap()
};
log::info!("Selected adapter: {:?}", adapter.get_info())
}
fn main() {
#[cfg(not(target_arch = "wasm32"))]
{
env_logger::init();
pollster::block_on(run());
}
#[cfg(target_arch = "wasm32")]
{
std::panic::set_hook(Box::new(console_error_panic_hook::hook));
console_log::init().expect("could not initialize logger");
wasm_bindgen_futures::spawn_local(run());
}
}