diff options
author | 2020-02-09 03:25:13 +0100 | |
---|---|---|
committer | 2020-02-09 03:25:13 +0100 | |
commit | f1e20a61f16388ed4d2dac734bab30d67bbd84b3 (patch) | |
tree | e4112411df1b0493ecb34aa75ecd04e92e9a82af /native/src/window.rs | |
parent | 95880ca74bddb6a23774621ef766b91956d40a61 (diff) | |
download | iced-f1e20a61f16388ed4d2dac734bab30d67bbd84b3.tar.gz iced-f1e20a61f16388ed4d2dac734bab30d67bbd84b3.tar.bz2 iced-f1e20a61f16388ed4d2dac734bab30d67bbd84b3.zip |
Allow `iced_wgpu` to render to any `TextureView`
Diffstat (limited to 'native/src/window.rs')
-rw-r--r-- | native/src/window.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/native/src/window.rs b/native/src/window.rs index db9226dc..4dcae62f 100644 --- a/native/src/window.rs +++ b/native/src/window.rs @@ -1,6 +1,6 @@ //! Build window-based GUI applications. +mod backend; mod event; -mod renderer; +pub use backend::Backend; pub use event::Event; -pub use renderer::{Renderer, Target}; |