wgpu/documentation/platforms/
mod.rs

1/*!
2Platform-Specific Guides
3
4Notes on running `wgpu` on specific platforms and targets: the web, mobile,
5ANGLE, and the requirements `wgpu` places on the Vulkan backend.
6*/
7
8pub mod android;
9pub mod angle;
10pub mod emscripten;
11pub mod mobile_app_integration;
12pub mod vulkan_requirements;
13pub mod web;