mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-04 13:05:04 +00:00
[vmtx] Fix v_origin when no vmtx available
This commit is contained in:
parent
c39ac0e171
commit
ef95dc0e7f
1 changed files with 7 additions and 1 deletions
|
@ -359,7 +359,13 @@ struct hmtxvmtx
|
|||
return true;
|
||||
}
|
||||
|
||||
return _glyf_get_leading_bearing_with_var_unscaled (font, glyph, T::tableTag == HB_OT_TAG_vmtx, lsb);
|
||||
// If there's no vmtx data, the phantom points from glyf table are not accurate,
|
||||
// so we cannot take the next path.
|
||||
bool is_vertical = T::tableTag == HB_OT_TAG_vmtx;
|
||||
if (is_vertical && !has_data ())
|
||||
return false;
|
||||
|
||||
return _glyf_get_leading_bearing_with_var_unscaled (font, glyph, is_vertical, lsb);
|
||||
#else
|
||||
return false;
|
||||
#endif
|
||||
|
|
Loading…
Add table
Reference in a new issue