dxpdf 0.2.15

A fast DOCX-to-PDF converter powered by Skia
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Emoji rendering pipeline.
//!
//! This module implements the staged plan in `docs/emoji-rendering.md`:
//! cluster classification (UAX #29 + UTS #51), host-OS color emoji typeface
//! resolution, and Skia raster-backend rasterization with a per-render cache.
//!
//! The rest of the renderer interacts with this module through typed ADTs;
//! no string-name allowlists, no font bundling.

pub mod cluster;
pub mod raster;
pub mod resolve;
pub mod shape;