diff options
Diffstat (limited to 'wgpu')
-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; |