提交 1ea375da 编写于 作者: B Behdad Esfahbod

[OTLayout] Only collect output glyphs during recursion in collect_glyphs()

上级 f1b12781
......@@ -158,7 +158,9 @@ struct hb_collect_glyphs_context_t
return default_return_value ();
nesting_level_left--;
recurse_func (this, lookup_index);
/* Only collect output glyphs in the recursion. */
hb_collect_glyphs_context_t new_c (this->face, NULL, NULL, NULL, &output, nesting_level_left);
recurse_func (&new_c, lookup_index);
nesting_level_left++;
return default_return_value ();
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册