minwebgpu 0.2.0

Minimal WebGPU toolkit for modern graphics programming with compute shaders and rendering pipelines
1
2
3
4
5
6
//! Build script to enable `web_sys` unstable APIs for WebGPU support.

fn main() {
  // Enable web_sys unstable APIs for WebGPU support
  println!("cargo:rustc-cfg=web_sys_unstable_apis");
}