diff options
author | Mattias Andrée <maandree@kth.se> | 2020-04-30 21:40:51 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2020-04-30 21:40:51 +0200 |
commit | 9d656007d504921d74f23e0a0860cd5a8294cb91 (patch) | |
tree | 6f738db6dab7cf3b6c3587f6b6ee4b68b62fa7b9 | |
parent | Add libskrift_open_font_at (diff) | |
download | libskrift-9d656007d504921d74f23e0a0860cd5a8294cb91.tar.gz libskrift-9d656007d504921d74f23e0a0860cd5a8294cb91.tar.bz2 libskrift-9d656007d504921d74f23e0a0860cd5a8294cb91.tar.xz |
Add flag for ignoring variant selectors that the font does not support
Signed-off-by: Mattias Andrée <maandree@kth.se>
-rw-r--r-- | libskrift.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libskrift.h b/libskrift.h index cbfe9df..d587294 100644 --- a/libskrift.h +++ b/libskrift.h @@ -106,6 +106,7 @@ enum libskrift_hinting { #define LIBSKRIFT_NO_AUTOHINTING UINT32_C(0x00010000) /* Use autohinter if no hint information exist */ #define LIBSKRIFT_AUTOKERNING UINT32_C(0x00020000) /* Use autokerner even if kerning information exists */ #define LIBSKRIFT_NO_AUTOKERNING UINT32_C(0x00040000) /* Use autokerner if no kerning information exist */ +#define LIBSKRIFT_IGNORE_IGNORABLE UINT32_C(0x00080000) /* Ignore ignorable unhandled codepoints, such as variant selectors */ struct libskrift_rendering { int struct_version; |