2020-05-28 01:37:59 +02:00
//! A bunch of backend-agnostic types that can be leveraged to build a renderer
//! for [`iced`].
//!
2020-11-26 07:22:03 +01:00
//! 
//!
2020-05-28 01:37:59 +02:00
//! [`iced`]: https://github.com/hecrj/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
) ]
2021-11-05 15:38:40 +07:00
#![ deny(missing_docs) ]
2020-05-28 01:37:59 +02:00
#![ deny(missing_debug_implementations) ]
#![ deny(unused_results) ]
#![ deny(unsafe_code) ]
#![ forbid(rust_2018_idioms) ]
#![ cfg_attr(docsrs, feature(doc_cfg)) ]
2020-05-19 20:34:17 +02:00
mod antialiasing ;
2020-09-08 00:35:17 +02:00
mod error ;
2020-05-19 17:15:44 +02:00
mod primitive ;
2020-05-19 19:55:05 +02:00
mod transformation ;
2020-05-19 19:57:42 +02:00
mod viewport ;
2020-05-19 17:15:44 +02:00
pub mod backend ;
2020-05-19 20:20:51 +02:00
pub mod font ;
2020-05-19 22:55:12 +02:00
pub mod layer ;
2020-06-11 20:41:11 +02:00
pub mod overlay ;
2021-10-18 15:19:04 +07:00
pub mod renderer ;
2020-05-19 17:15:44 +02:00
pub mod triangle ;
2020-06-11 20:41:11 +02:00
pub mod widget ;
2020-05-20 20:28:35 +02:00
pub mod window ;
2020-05-19 17:15:44 +02:00
#[ doc(no_inline) ]
pub use widget ::* ;
2020-05-19 20:34:17 +02:00
pub use antialiasing ::Antialiasing ;
2020-05-19 17:15:44 +02:00
pub use backend ::Backend ;
2020-09-08 00:35:17 +02:00
pub use error ::Error ;
2020-05-19 22:55:12 +02:00
pub use layer ::Layer ;
2020-05-19 17:15:44 +02:00
pub use primitive ::Primitive ;
pub use renderer ::Renderer ;
2020-05-19 19:55:05 +02:00
pub use transformation ::Transformation ;
2020-05-19 19:57:42 +02:00
pub use viewport ::Viewport ;
2020-05-19 22:55:12 +02:00
2021-09-20 15:09:55 +07:00
pub use iced_native ::alignment ;
2020-05-19 22:55:12 +02:00
pub use iced_native ::{
2021-09-20 15:09:55 +07:00
Alignment , Background , Color , Font , Point , Rectangle , Size , Vector ,
2020-05-19 22:55:12 +02:00
} ;