wgpu/documentation/
mod.rs

1#![cfg_attr(not(doc), expect(unused_imports))]
2
3/*!
4General documentation and guides for the `wgpu` crate.
5
6Each module here is documentation only (it contains no runtime code) and
7collects concept primers, best practices, debugging tips, platform notes,
8and explanations of `wgpu`'s internals that don't belong on any single API item.
9*/
10
11pub mod best_practices;
12pub mod color;
13pub mod debugging;
14pub mod extensions;
15pub mod features;
16pub mod getting_started;
17pub mod internals;
18pub mod platforms;
19pub mod shaders;