[util] Fix --glyphs output with negative numbers

This commit is contained in:
Behdad Esfahbod 2025-03-28 16:25:58 -06:00
parent cb44134cbf
commit ea08b04752

View file

@ -145,8 +145,10 @@ struct shape_options_t
/* Scale positions. */
int x_scale, y_scale;
hb_font_get_scale (font, &x_scale, &y_scale);
unsigned upem = hb_face_get_upem (hb_font_get_face (font));
signed upem = (int) hb_face_get_upem (hb_font_get_face (font));
unsigned count;
if (x_scale != upem || y_scale != upem)
{
auto *positions = hb_buffer_get_glyph_positions (buffer, &count);
for (unsigned i = 0; i < count; i++)
{
@ -160,6 +162,7 @@ struct shape_options_t
}
}
}
}
else
{
if (advance <= 0)