uzor_render/lib.rs
1//! Platform-agnostic rendering abstraction for uzor
2
3mod context;
4mod types;
5mod helpers;
6mod ops;
7mod svg;
8
9pub mod icons;
10
11pub use context::{RenderContext, RenderContextExt};
12pub use types::{TextAlign, TextBaseline};
13pub use helpers::{crisp, crisp_rect};
14pub use ops::{RenderOp, RenderOps, execute_ops};
15pub use svg::{draw_svg_icon, draw_svg_icon_rotated};