ass-renderer 0.1.2

High-performance ASS subtitle renderer with modular backends
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Utility types and helper functions

mod caches;
mod errors;
mod math;
mod regions;

pub use caches::{GlyphCache, TextureAtlas};
pub use errors::RenderError;
pub use math::{cubic_bezier, lerp, Matrix3x3, Transform2D};
pub use regions::DirtyRegion;