[Glyph] Don't round to int when shifting glyphs

Fixes a fuzzer issue and seems harmless.
This commit is contained in:
Behdad Esfahbod 2024-06-06 11:47:18 -06:00
parent 2db636c65e
commit 4ec3cb0fc3

View file

@ -503,7 +503,7 @@ struct Glyph
/* Undocumented rasterizer behavior:
* Shift points horizontally by the updated left side bearing
*/
int v = -phantoms[PHANTOM_LEFT].x;
float v = -phantoms[PHANTOM_LEFT].x;
if (v)
for (auto &point : all_points)
point.x += v;