[benchmark-font] Minor move a variable

This commit is contained in:
Behdad Esfahbod 2023-07-02 12:56:13 -06:00
parent 7f5380fe94
commit 13438da16e

View file

@ -183,10 +183,12 @@ static void BM_Font (benchmark::State &state,
case draw_glyph:
{
hb_draw_funcs_t *draw_funcs = _draw_funcs_create ();
float i = 0;
for (auto _ : state)
{
float i = 0;
for (unsigned gid = 0; gid < num_glyphs; ++gid)
hb_font_draw_glyph (font, gid, draw_funcs, &i);
}
hb_draw_funcs_destroy (draw_funcs);
break;
}