ghostty/src/font/opentype.zig
Qwerasd 7e5a164be8 font/opentype: add table parsing for head, hhea, post, and OS/2
(and a utility for parsing SFNT font files and fetching table data from
them)
2024-12-10 16:35:51 -05:00

18 lines
453 B
Zig

pub const sfnt = @import("opentype/sfnt.zig");
const svg = @import("opentype/svg.zig");
const os2 = @import("opentype/os2.zig");
const post = @import("opentype/post.zig");
const hhea = @import("opentype/hhea.zig");
const head = @import("opentype/head.zig");
pub const SVG = svg.SVG;
pub const OS2 = os2.OS2;
pub const Post = post.Post;
pub const Hhea = hhea.Hhea;
pub const Head = head.Head;
test {
@import("std").testing.refAllDecls(@This());
}