diff options
author | 2020-02-26 20:36:52 +0100 | |
---|---|---|
committer | 2020-02-26 20:36:52 +0100 | |
commit | deedf6e8b66c5564c020dd61b72fdc71d8dd1eae (patch) | |
tree | d82db5d8ea2a7b34c7be3f42a4f0fb3e34bb6948 /wgpu/src | |
parent | 6cb7fb6d52a25dc69f44c0ed1bd8d0254b6b213f (diff) | |
download | iced-deedf6e8b66c5564c020dd61b72fdc71d8dd1eae.tar.gz iced-deedf6e8b66c5564c020dd61b72fdc71d8dd1eae.tar.bz2 iced-deedf6e8b66c5564c020dd61b72fdc71d8dd1eae.zip |
Make new `texture` module private for now
Diffstat (limited to 'wgpu/src')
-rw-r--r-- | wgpu/src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wgpu/src/lib.rs b/wgpu/src/lib.rs index 832da31d..a807b44d 100644 --- a/wgpu/src/lib.rs +++ b/wgpu/src/lib.rs @@ -19,14 +19,13 @@ //! [`wgpu`]: https://github.com/gfx-rs/wgpu-rs //! [WebGPU API]: https://gpuweb.github.io/gpuweb/ //! [`wgpu_glyph`]: https://github.com/hecrj/wgpu_glyph -//#![deny(missing_docs)] +#![deny(missing_docs)] #![deny(missing_debug_implementations)] #![deny(unused_results)] #![forbid(unsafe_code)] #![forbid(rust_2018_idioms)] pub mod defaults; pub mod settings; -pub mod texture; pub mod triangle; pub mod widget; pub mod window; @@ -37,6 +36,7 @@ mod quad; mod renderer; mod target; mod text; +mod texture; mod transformation; mod viewport; |