Make new texture module private for now

This commit is contained in:
Héctor Ramón Jiménez 2020-02-26 20:36:52 +01:00
parent 6cb7fb6d52
commit deedf6e8b6

View File

@ -19,14 +19,13 @@
//! [`wgpu`]: https://github.com/gfx-rs/wgpu-rs //! [`wgpu`]: https://github.com/gfx-rs/wgpu-rs
//! [WebGPU API]: https://gpuweb.github.io/gpuweb/ //! [WebGPU API]: https://gpuweb.github.io/gpuweb/
//! [`wgpu_glyph`]: https://github.com/hecrj/wgpu_glyph //! [`wgpu_glyph`]: https://github.com/hecrj/wgpu_glyph
//#![deny(missing_docs)] #![deny(missing_docs)]
#![deny(missing_debug_implementations)] #![deny(missing_debug_implementations)]
#![deny(unused_results)] #![deny(unused_results)]
#![forbid(unsafe_code)] #![forbid(unsafe_code)]
#![forbid(rust_2018_idioms)] #![forbid(rust_2018_idioms)]
pub mod defaults; pub mod defaults;
pub mod settings; pub mod settings;
pub mod texture;
pub mod triangle; pub mod triangle;
pub mod widget; pub mod widget;
pub mod window; pub mod window;
@ -37,6 +36,7 @@ mod quad;
mod renderer; mod renderer;
mod target; mod target;
mod text; mod text;
mod texture;
mod transformation; mod transformation;
mod viewport; mod viewport;