wgpu/backend/
mod.rs

1#[cfg(webgpu)]
2pub mod webgpu;
3#[cfg(webgpu)]
4pub(crate) use webgpu::{get_browser_gpu_property, ContextWebGpu};
5
6#[cfg(wgpu_core)]
7pub mod wgpu_core;
8
9#[cfg(wgpu_core)]
10pub(crate) use wgpu_core::ContextWgpuCore;
11
12#[cfg(custom)]
13pub mod custom;