wde_wgpu/resources/mod.rs
1//! GPU resources shared across the renderer.
2//!
3//! - [`buffer`]: strongly-typed helpers around `wgpu::Buffer` for uploads, copies, and mapping.
4//! - [`texture`]: 2D texture wrappers with ready-to-use views and samplers.
5pub mod buffer;
6pub mod texture;
7
8pub use buffer::*;
9pub use texture::*;