diff options
author | 2022-11-03 05:00:35 +0100 | |
---|---|---|
committer | 2022-11-03 05:00:35 +0100 | |
commit | 99cf98971dae22ae65adb2104c5a3eec578649f1 (patch) | |
tree | 63dacbee235d79c5895fda9072a0f6b683129131 /wgpu/src/lib.rs | |
parent | 7e22e2d45293c5916812be03dc7367134b69b3ad (diff) | |
download | iced-99cf98971dae22ae65adb2104c5a3eec578649f1.tar.gz iced-99cf98971dae22ae65adb2104c5a3eec578649f1.tar.bz2 iced-99cf98971dae22ae65adb2104c5a3eec578649f1.zip |
Rename `buffers` module to `buffer`
... and move `StaticBuffer` to nested `static` module
Diffstat (limited to 'wgpu/src/lib.rs')
-rw-r--r-- | wgpu/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wgpu/src/lib.rs b/wgpu/src/lib.rs index a2b4ff39..1295516b 100644 --- a/wgpu/src/lib.rs +++ b/wgpu/src/lib.rs @@ -43,7 +43,7 @@ pub mod triangle; pub mod window; mod backend; -mod buffers; +mod buffer; mod quad; mod text; |