diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2023-07-10 00:51:41 +0300 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2023-07-10 00:51:41 +0300 |
commit | ad83a3194c821e2ce1f2c9ccd5b572aa5bd8c136 (patch) | |
tree | f36c41780d072ad14468ce88ce9ccd02324ffbf5 /thirdparty/harfbuzz/src/hb-ot-map.hh | |
parent | 85c9db592f22941ce7c2a540a526e702f4cc1848 (diff) | |
download | redot-engine-ad83a3194c821e2ce1f2c9ccd5b572aa5bd8c136.tar.gz |
HarfBuzz: Update to version 8.0.0
Diffstat (limited to 'thirdparty/harfbuzz/src/hb-ot-map.hh')
-rw-r--r-- | thirdparty/harfbuzz/src/hb-ot-map.hh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/thirdparty/harfbuzz/src/hb-ot-map.hh b/thirdparty/harfbuzz/src/hb-ot-map.hh index efc8cae96a..8af8129ceb 100644 --- a/thirdparty/harfbuzz/src/hb-ot-map.hh +++ b/thirdparty/harfbuzz/src/hb-ot-map.hh @@ -60,6 +60,13 @@ struct hb_ot_map_t int cmp (const hb_tag_t tag_) const { return tag_ < tag ? -1 : tag_ > tag ? 1 : 0; } + + HB_INTERNAL static int cmp (const void *pa, const void *pb) + { + const feature_map_t *a = (const feature_map_t *) pa; + const feature_map_t *b = (const feature_map_t *) pb; + return a->tag < b->tag ? -1 : a->tag > b->tag ? 1 : 0; + } }; struct lookup_map_t { @@ -273,6 +280,7 @@ struct hb_ot_map_builder_t hb_face_t *face; hb_segment_properties_t props; + bool is_simple; hb_tag_t chosen_script[2]; bool found_script[2]; |