summaryrefslogtreecommitdiff
path: root/src/font/opentype.zig
blob: dd02efeb38d857d9750c39269c37eed47635a617 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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());
}