mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-05 13:35:06 +00:00
[Glyph] Don't round to int when shifting glyphs
Fixes a fuzzer issue and seems harmless.
This commit is contained in:
parent
2db636c65e
commit
4ec3cb0fc3
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue