[hb-info] Format

pull/4048/head
Behdad Esfahbod 2 years ago
parent d7cf69ede2
commit 9395bbaa67
  1. 3
      util/hb-info.cc

@ -549,6 +549,7 @@ struct info_t
if (verbose)
{
printf ("\nNamed instances:\n\n");
printf ("Index Name Position\n------------------------------------------------\n");
}
for (unsigned i = 0; i < count; i++)
@ -566,7 +567,7 @@ struct info_t
coords = (float *) calloc (coords_count, sizeof (float));
hb_ot_var_named_instance_get_design_coords (face, i, &coords_count, coords);
printf ("%u. %-32s", i, name);
printf ("%u %-32s", i, name);
for (unsigned j = 0; j < coords_count; j++)
printf ("%g, ", (double) coords[j]);
printf ("\n");

Loading…
Cancel
Save