wde_wgpu/passes/
mod.rs

1//! Render and compute pass helpers built on top of `wgpu` encoders.
2//!
3//! - [`command_buffer`]: encoder orchestration and common copy helpers.
4//! - [`render_pass`]: guard-railed render pass wrapper that checks pipelines and buffers.
5//! - [`compute_pass`]: compute dispatch wrapper with push-constant helpers.
6pub mod command_buffer;
7pub mod compute_pass;
8pub mod render_pass;
9
10pub use command_buffer::*;
11pub use compute_pass::*;
12pub use render_pass::*;