[VVAR] Rename vorg function for clarity
This commit is contained in:
parent
b2d60cbd6e
commit
ab5ce64313
|
@ -299,9 +299,9 @@ hb_ot_get_glyph_v_origin (hb_font_t *font,
|
|||
const OT::vmtx_accelerator_t &vmtx = *ot_face->vmtx;
|
||||
const OT::VVAR &VVAR = *vmtx.var_table;
|
||||
if (font->num_coords)
|
||||
VVAR.get_vorg_var (glyph,
|
||||
font->coords, font->num_coords,
|
||||
&delta);
|
||||
VVAR.get_vorg_delta_unscaled (glyph,
|
||||
font->coords, font->num_coords,
|
||||
&delta);
|
||||
#endif
|
||||
|
||||
*y = font->em_scalef_y (VORG.get_y_origin (glyph) + delta);
|
||||
|
|
|
@ -391,9 +391,9 @@ struct VVAR : HVARVVAR {
|
|||
|
||||
bool subset (hb_subset_context_t *c) const { return HVARVVAR::_subset<VVAR> (c); }
|
||||
|
||||
bool get_vorg_var (hb_codepoint_t glyph,
|
||||
const int *coords, unsigned int coord_count,
|
||||
float *delta) const
|
||||
bool get_vorg_delta_unscaled (hb_codepoint_t glyph,
|
||||
const int *coords, unsigned int coord_count,
|
||||
float *delta) const
|
||||
{
|
||||
if (!vorgMap) return false;
|
||||
uint32_t varidx = (this+vorgMap).map (glyph);
|
||||
|
|
Loading…
Reference in New Issue