mirror of
https://gitlab.freedesktop.org/freetype/freetype.git
synced 2026-05-03 21:58:04 +02:00
[VARC] Another rounding fix
This commit is contained in:
parent
0505a23487
commit
75d65f2c05
1 changed files with 2 additions and 2 deletions
|
|
@ -3025,8 +3025,8 @@ Skip_Axis_Override:
|
|||
|
||||
for ( i = 0; i < slot->outline.n_points; i++ )
|
||||
{
|
||||
slot->outline.points[i].x >>= 6;
|
||||
slot->outline.points[i].y >>= 6;
|
||||
slot->outline.points[i].x = ( slot->outline.points[i].x + 32 ) >> 6;
|
||||
slot->outline.points[i].y = ( slot->outline.points[i].y + 32 ) >> 6;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue