You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-30 16:26:50 +00:00
HarfBuzz: Update to version 5.2.0, add new Unicode 15 blocks and scripts.
This commit is contained in:
6
thirdparty/harfbuzz/src/hb-face.cc
vendored
6
thirdparty/harfbuzz/src/hb-face.cc
vendored
@@ -132,7 +132,7 @@ hb_face_create_for_tables (hb_reference_table_func_t reference_table_func,
|
||||
face->user_data = user_data;
|
||||
face->destroy = destroy;
|
||||
|
||||
face->num_glyphs.set_relaxed (-1);
|
||||
face->num_glyphs = -1;
|
||||
|
||||
face->data.init0 (face);
|
||||
face->table.init0 (face);
|
||||
@@ -479,7 +479,7 @@ hb_face_set_upem (hb_face_t *face,
|
||||
if (hb_object_is_immutable (face))
|
||||
return;
|
||||
|
||||
face->upem.set_relaxed (upem);
|
||||
face->upem = upem;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -514,7 +514,7 @@ hb_face_set_glyph_count (hb_face_t *face,
|
||||
if (hb_object_is_immutable (face))
|
||||
return;
|
||||
|
||||
face->num_glyphs.set_relaxed (glyph_count);
|
||||
face->num_glyphs = glyph_count;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user