Add code
This commit is contained in:
parent
19d50aa262
commit
6f39c22029
|
@ -339,6 +339,11 @@ _hb_glyph_info_set_continuation (hb_glyph_info_t *info)
|
||||||
{
|
{
|
||||||
info->unicode_props() |= UPROPS_MASK_CONTINUATION;
|
info->unicode_props() |= UPROPS_MASK_CONTINUATION;
|
||||||
}
|
}
|
||||||
|
static inline void
|
||||||
|
_hb_glyph_info_reset_continuation (hb_glyph_info_t *info)
|
||||||
|
{
|
||||||
|
info->unicode_props() &= ~ UPROPS_MASK_CONTINUATION;
|
||||||
|
}
|
||||||
static inline bool
|
static inline bool
|
||||||
_hb_glyph_info_is_continuation (const hb_glyph_info_t *info)
|
_hb_glyph_info_is_continuation (const hb_glyph_info_t *info)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue