[benchmark-font] Minor rename

This commit is contained in:
Behdad Esfahbod 2023-04-24 14:39:20 -06:00
parent 0a52084228
commit fc8dfe64d0

View file

@ -40,7 +40,7 @@ enum operation_t
nominal_glyphs,
glyph_h_advances,
glyph_extents,
glyph_shape,
draw_glyph,
};
static void
@ -158,7 +158,7 @@ static void BM_Font (benchmark::State &state,
hb_font_get_glyph_extents (font, gid, &extents);
break;
}
case glyph_shape:
case draw_glyph:
{
hb_draw_funcs_t *draw_funcs = _draw_funcs_create ();
for (auto _ : state)
@ -233,7 +233,7 @@ int main(int argc, char** argv)
TEST_OPERATION (nominal_glyphs, benchmark::kMicrosecond);
TEST_OPERATION (glyph_h_advances, benchmark::kMicrosecond);
TEST_OPERATION (glyph_extents, benchmark::kMicrosecond);
TEST_OPERATION (glyph_shape, benchmark::kMicrosecond);
TEST_OPERATION (draw_glyph, benchmark::kMicrosecond);
#undef TEST_OPERATION