iced-yoda/graphics/src/lib.rs

45 lines
1.1 KiB
Rust
Raw Normal View History

//! A bunch of backend-agnostic types that can be leveraged to build a renderer
//! for [`iced`].
//!
//! ![The native path of the Iced ecosystem](https://github.com/iced-rs/iced/blob/0525d76ff94e828b7b21634fa94a747022001c83/docs/graphs/native.png?raw=true)
2020-11-26 07:22:03 +01:00
//!
//! [`iced`]: https://github.com/iced-rs/iced
2021-12-08 08:04:46 +01:00
#![doc(
2021-12-09 15:10:38 +07:00
html_logo_url = "https://raw.githubusercontent.com/iced-rs/iced/9ab6923e943f784985e9ef9ca28b10278297225d/docs/logo.svg"
2021-12-08 08:04:46 +01:00
)]
#![cfg_attr(docsrs, feature(doc_cfg))]
2020-05-19 20:34:17 +02:00
mod antialiasing;
mod settings;
2020-05-19 19:57:42 +02:00
mod viewport;
2020-05-19 17:15:44 +02:00
pub mod cache;
pub mod color;
pub mod compositor;
pub mod damage;
pub mod error;
pub mod gradient;
pub mod image;
pub mod layer;
pub mod mesh;
pub mod shell;
pub mod text;
2020-05-19 17:15:44 +02:00
#[cfg(feature = "geometry")]
pub mod geometry;
2020-05-19 20:34:17 +02:00
pub use antialiasing::Antialiasing;
pub use cache::Cache;
pub use compositor::Compositor;
pub use error::Error;
pub use gradient::Gradient;
pub use image::Image;
pub use layer::Layer;
pub use mesh::Mesh;
pub use settings::Settings;
pub use shell::Shell;
pub use text::Text;
2020-05-19 19:57:42 +02:00
pub use viewport::Viewport;
2020-05-19 22:55:12 +02:00
pub use iced_core as core;
pub use iced_futures as futures;