mirror of
https://gitlab.freedesktop.org/freetype/freetype.git
synced 2026-05-07 06:28:02 +02:00
* src/truetype/ttgxvar.c (tt_delta_shift): Use unsigned references.
This commit is contained in:
parent
0d45c7f191
commit
6d9fc45fc4
1 changed files with 4 additions and 4 deletions
|
|
@ -4025,13 +4025,13 @@
|
|||
/* modeled after `af_iup_shift' */
|
||||
|
||||
static void
|
||||
tt_delta_shift( int p1,
|
||||
int p2,
|
||||
int ref,
|
||||
tt_delta_shift( FT_UInt p1,
|
||||
FT_UInt p2,
|
||||
FT_UInt ref,
|
||||
FT_Vector* in_points,
|
||||
FT_Vector* out_points )
|
||||
{
|
||||
int p;
|
||||
FT_UInt p;
|
||||
FT_Vector delta;
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue