Skip to main content

ass_renderer/utils/
mod.rs

1//! Utility types and helper functions
2
3mod caches;
4mod errors;
5mod math;
6mod regions;
7
8pub use caches::{GlyphCache, TextureAtlas};
9pub use errors::RenderError;
10pub use math::{cubic_bezier, lerp, Matrix3x3, Transform2D};
11pub use regions::DirtyRegion;