Rename buffers module to buffer

... and move `StaticBuffer` to nested `static` module
This commit is contained in:
Héctor Ramón Jiménez 2022-11-03 05:00:35 +01:00
parent 7e22e2d452
commit 99cf98971d
No known key found for this signature in database
GPG key ID: 140CC052C94F138E
7 changed files with 66 additions and 66 deletions

3
wgpu/src/buffer.rs Normal file
View file

@ -0,0 +1,3 @@
//! Utilities for buffer operations.
pub mod dynamic;
pub mod r#static;