[truetype/GX] Fix an old typo.

* src/truetype/ttgxvar.c (TT_Vary_Apply_Glyph_Deltas): Vertical
advance is measured along y-coordinate.
This commit is contained in:
Alexei Podtelezhnikov 2022-06-16 22:13:25 -04:00
parent 9c706dcca7
commit d9b8a69e9a
1 changed files with 2 additions and 2 deletions

View File

@ -4259,8 +4259,8 @@
loader->linear = FT_PIX_ROUND( unrounded[n_points - 3].x -
unrounded[n_points - 4].x ) / 64;
if ( !( face->variation_support & TT_FACE_FLAG_VAR_VADVANCE ) )
loader->vadvance = FT_PIX_ROUND( unrounded[n_points - 1].x -
unrounded[n_points - 2].x ) / 64;
loader->vadvance = FT_PIX_ROUND( unrounded[n_points - 1].y -
unrounded[n_points - 2].y ) / 64;
Fail3:
FT_FREE( point_deltas_x );