mirui 0.5.0

A lightweight, no_std ECS-driven UI framework for embedded, desktop, and WebAssembly
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod backend;
pub mod command;
pub mod font;
pub mod painter;
pub mod partial;
pub mod path;
pub(crate) mod raster;
pub mod renderer;
pub mod sw_backend;
pub mod texture;

pub use command::DrawCommand;
pub use renderer::Renderer;
#[cfg(feature = "perf")]
pub use sw_backend::PerfCtx;
pub use sw_backend::SwDrawBackend;