mirror of
https://gitlab.freedesktop.org/freetype/freetype.git
synced 2026-05-07 13:28:03 +02:00
* src/truetype/ttinterp.c (Ins_IUP): Use unsigned counter.
Fixes #1421.
This commit is contained in:
parent
f2b3f96901
commit
7974be74d8
1 changed files with 6 additions and 6 deletions
|
|
@ -6191,14 +6191,14 @@
|
|||
IUP_WorkerRec V;
|
||||
FT_Byte mask;
|
||||
|
||||
FT_UInt first_point; /* first point of contour */
|
||||
FT_UInt end_point; /* end point (last+1) of contour */
|
||||
FT_UInt first_point; /* first point of contour */
|
||||
FT_UInt end_point; /* end point (last+1) of contour */
|
||||
|
||||
FT_UInt first_touched; /* first touched point in contour */
|
||||
FT_UInt cur_touched; /* current touched point in contour */
|
||||
FT_UInt first_touched; /* first touched point in contour */
|
||||
FT_UInt cur_touched; /* current touched point in contour */
|
||||
|
||||
FT_UInt point; /* current point */
|
||||
FT_Short contour; /* current contour */
|
||||
FT_UInt point; /* current point */
|
||||
FT_UInt contour; /* current contour */
|
||||
|
||||
|
||||
#ifdef TT_SUPPORT_SUBPIXEL_HINTING_MINIMAL
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue