wgpu_examples/
lib.rs

1#![allow(clippy::arc_with_non_send_sync)] // False positive on wasm
2#![warn(clippy::allow_attributes)]
3
4pub mod framework;
5pub mod utils;
6
7pub mod big_compute_buffers;
8pub mod boids;
9pub mod bunnymark;
10pub mod conservative_raster;
11pub mod cube;
12pub mod hello_synchronization;
13pub mod hello_triangle;
14pub mod hello_windows;
15pub mod hello_workgroups;
16pub mod mesh_shader;
17pub mod mipmap;
18pub mod msaa_line;
19pub mod multiple_render_targets;
20pub mod ray_cube_compute;
21pub mod ray_cube_fragment;
22pub mod ray_cube_normals;
23pub mod ray_scene;
24pub mod ray_shadows;
25pub mod ray_traced_triangle;
26pub mod render_to_texture;
27pub mod repeated_compute;
28pub mod shadow;
29pub mod skybox;
30pub mod srgb_blend;
31pub mod stencil_triangles;
32pub mod storage_texture;
33pub mod texture_arrays;
34pub mod timestamp_queries;
35pub mod uniform_values;
36pub mod water;
37
38#[cfg(test)]
39wgpu_test::gpu_test_main!();