simple-render 0.2.0

a simple immediate mode wayland ui renderer inspired by clay
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use super::*;

mod commands;
mod content;
mod geometry;
mod layout;
mod paint;
mod style;

pub(in crate::ui) use commands::PaintCommand;
pub use commands::*;
pub use content::*;
pub use geometry::*;
pub(in crate::ui) use layout::Size;
pub use layout::*;
pub use paint::*;
pub use style::*;