diff options
author | 2023-02-24 23:24:48 +0100 | |
---|---|---|
committer | 2023-02-24 23:24:48 +0100 | |
commit | 5100b5d0a1f654ec1254b7765ceadfb9091d6939 (patch) | |
tree | ac33dc79803af7040659380c0c94440b29e93e77 /graphics/src/lib.rs | |
parent | 368cadd25a8b57ee5c41e45d1abe8d1dfb194c69 (diff) | |
download | iced-5100b5d0a1f654ec1254b7765ceadfb9091d6939.tar.gz iced-5100b5d0a1f654ec1254b7765ceadfb9091d6939.tar.bz2 iced-5100b5d0a1f654ec1254b7765ceadfb9091d6939.zip |
Introduce `iced_renderer` subcrate featuring runtime renderer fallback
Diffstat (limited to 'graphics/src/lib.rs')
-rw-r--r-- | graphics/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/src/lib.rs b/graphics/src/lib.rs index 41bef2c3..bbbdfa0e 100644 --- a/graphics/src/lib.rs +++ b/graphics/src/lib.rs @@ -46,9 +46,9 @@ pub use primitive::Primitive; pub use renderer::Renderer; pub use transformation::Transformation; pub use viewport::Viewport; -pub use window::compositor; pub use iced_native::alignment; +pub use iced_native::text; pub use iced_native::{ Alignment, Background, Color, Font, Point, Rectangle, Size, Vector, }; |