[gvar] Optimize apply_deltas_to_points

This commit is contained in:
Behdad Esfahbod 2022-06-27 15:41:02 -06:00
parent e9af9062c0
commit a96647841a
1 changed files with 2 additions and 2 deletions

View File

@ -667,8 +667,8 @@ no_more_gaps:
/* apply specified / inferred deltas to points */
for (unsigned int i = 0; i < points.length; i++)
{
points[i].x += deltas[i].x;
points[i].y += deltas[i].y;
points.arrayZ[i].x += deltas.arrayZ[i].x;
points.arrayZ[i].y += deltas.arrayZ[i].y;
}
} while (iterator.move_to_next ());