diff options
| -rw-r--r-- | sys/src/libttf/impl.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/sys/src/libttf/impl.h b/sys/src/libttf/impl.h new file mode 100644 index 000000000..04581f705 --- /dev/null +++ b/sys/src/libttf/impl.h @@ -0,0 +1,17 @@ +enum { + ONCURVE = 1, + TOUCHX = 2, + TOUCHY = 4, + TOUCH = 6, +}; + +int ttfgototable(TTFontU *, char *); +int ttfrounddiv(int, int); +int ttfvrounddiv(vlong, int); +int ttfhint(TTGlyph *); +int ttfparsecmap(TTFontU *); +int ttfrunfpgm(TTFont *); +int ttfruncvt(TTFont *); +void ttfunpack(TTFontU *, char *, ...); +void ttfscan(TTGlyph *); +void ttffreebitmap(TTBitmap *); |
