wde_wgpu/pipelines/
mod.rs

1//! Pipeline and bind-group construction utilities.
2//!
3//! - [`render_pipeline`]: WGSL vertex/fragment pipelines with depth, topology, and push constants.
4//! - [`compute_pipeline`]: WGSL compute pipelines with bind groups and push constants.
5//! - [`bind_group`]: builders for layouts and concrete bind groups aligned to WGSL bindings.
6pub mod bind_group;
7pub mod compute_pipeline;
8pub mod render_pipeline;
9
10pub use bind_group::*;
11pub use compute_pipeline::*;
12pub use render_pipeline::*;