Skip to main content

orinium_browser/engine/renderer_model/
mod.rs

1//! Render model and draw command generation module.
2
3mod box_model;
4mod draw_command;
5mod geom;
6mod path;
7
8pub use box_model::generate_draw_commands;
9pub use draw_command::{Brush, DrawCommand, FillRule, Image, Paint, SystemUiKind};
10pub use geom::{AffineTransform, Rect};
11pub use path::{
12    Path, PathCommand, clamp_radii, ellipse_path, polygon_path, rect_path, rounded_rect_path,
13};