mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-05 21:45:06 +00:00
Don't make variation-selectors default-ignorable if not-found set
https://github.com/harfbuzz/harfbuzz/pull/4863#issuecomment-2366908261
This commit is contained in:
parent
b94a39d7f3
commit
5e5cd10e10
3 changed files with 6 additions and 3 deletions
|
@ -222,9 +222,10 @@ handle_variation_selector_cluster (const hb_ot_shape_normalize_context_t *c,
|
|||
(void) buffer->next_glyph ();
|
||||
|
||||
buffer->scratch_flags |= HB_BUFFER_SCRATCH_FLAG_HAS_VARIATION_SELECTOR_FALLBACK;
|
||||
|
||||
_hb_glyph_info_set_general_category (&buffer->cur(),
|
||||
_HB_UNICODE_GENERAL_CATEGORY_VARIATION_SELECTOR);
|
||||
if (buffer->not_found_variation_selector != HB_CODEPOINT_INVALID)
|
||||
_hb_glyph_info_clear_default_ignorable (&buffer->cur());
|
||||
|
||||
set_glyph (buffer->cur(), font);
|
||||
(void) buffer->next_glyph ();
|
||||
|
|
|
@ -846,14 +846,16 @@ hb_ot_deal_with_variation_selectors (hb_buffer_t *buffer)
|
|||
|
||||
unsigned int count = buffer->len;
|
||||
hb_glyph_info_t *info = buffer->info;
|
||||
hb_glyph_position_t *pos = buffer->pos;
|
||||
|
||||
for (unsigned int i = 0; i < count; i++)
|
||||
{
|
||||
if (_hb_glyph_info_get_general_category (&info[i]) ==
|
||||
_HB_UNICODE_GENERAL_CATEGORY_VARIATION_SELECTOR)
|
||||
{
|
||||
_hb_glyph_info_clear_default_ignorable (&info[i]);
|
||||
info[i].codepoint = buffer->not_found_variation_selector;
|
||||
pos[i].x_advance = pos[i].y_advance = pos[i].x_offset = pos[i].y_offset = 0;
|
||||
_hb_glyph_info_set_general_category (&info[i], HB_UNICODE_GENERAL_CATEGORY_NON_SPACING_MARK);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
../fonts/bbc24004e776f348a0f72287d24b0124867ee750.ttf;;U+0066,U+FE00,U+0069;[gid5=0+1134|gid1=0+0]
|
||||
../fonts/bbc24004e776f348a0f72287d24b0124867ee750.ttf;--not-found-variation-selector-glyph=1000000;U+0066,U+FE00,U+0069;[gid5=0+1134|gid1000000=0+0]
|
||||
../fonts/bbc24004e776f348a0f72287d24b0124867ee750.ttf;--not-found-variation-selector-glyph=1000000;U+0066,U+FE00,U+0069;[gid2=0+711|gid1000000=0+0|gid3=2+497]
|
||||
|
|
Loading…
Add table
Reference in a new issue