diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2022-03-02 10:48:37 +0200 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2022-03-02 10:48:37 +0200 |
commit | 9b0fbfa06dcfc5edab5d3a31ad5cb0d12c21bd4a (patch) | |
tree | 2719d3fb7b2d20275cadc5d434d745c0ce6d9697 /thirdparty/harfbuzz/src/hb-common.h | |
parent | b7a852a05d3598771bc1b9456ed34c0f5d011652 (diff) | |
download | redot-engine-9b0fbfa06dcfc5edab5d3a31ad5cb0d12c21bd4a.tar.gz |
HarfBuzz: Update to version 4.0.0
Diffstat (limited to 'thirdparty/harfbuzz/src/hb-common.h')
-rw-r--r-- | thirdparty/harfbuzz/src/hb-common.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/thirdparty/harfbuzz/src/hb-common.h b/thirdparty/harfbuzz/src/hb-common.h index 0384117a4d..7b897a6c51 100644 --- a/thirdparty/harfbuzz/src/hb-common.h +++ b/thirdparty/harfbuzz/src/hb-common.h @@ -130,6 +130,16 @@ typedef union _hb_var_int_t { int8_t i8[4]; } hb_var_int_t; +typedef union _hb_var_num_t { + float f; + uint32_t u32; + int32_t i32; + uint16_t u16[2]; + int16_t i16[2]; + uint8_t u8[4]; + int8_t i8[4]; +} hb_var_num_t; + /* hb_tag_t */ @@ -481,6 +491,7 @@ hb_language_get_default (void); * @HB_SCRIPT_TANGSA: `Tnsa`, Since: 3.0.0 * @HB_SCRIPT_TOTO: `Toto`, Since: 3.0.0 * @HB_SCRIPT_VITHKUQI: `Vith`, Since: 3.0.0 + * @HB_SCRIPT_MATH: `Zmth`, Since: 3.4.0 * @HB_SCRIPT_INVALID: No script set * * Data type for scripts. Each #hb_script_t's value is an #hb_tag_t corresponding @@ -697,6 +708,11 @@ typedef enum HB_SCRIPT_TOTO = HB_TAG ('T','o','t','o'), /*14.0*/ HB_SCRIPT_VITHKUQI = HB_TAG ('V','i','t','h'), /*14.0*/ + /* + * Since 3.4.0 + */ + HB_SCRIPT_MATH = HB_TAG ('Z','m','t','h'), + /* No script set. */ HB_SCRIPT_INVALID = HB_TAG_NONE, |