From 41f85d0179dd60ee49e3064213bd4bbf5edaec96 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Tue, 27 Jun 2023 12:50:04 -0600 Subject: [PATCH] [benchmark-font] Add RobotoFlex We didn't have a variable TTF before! --- perf/benchmark-font.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/perf/benchmark-font.cc b/perf/benchmark-font.cc index cdf33c369..6ba43549f 100644 --- a/perf/benchmark-font.cc +++ b/perf/benchmark-font.cc @@ -21,7 +21,8 @@ struct test_input_t const char *font_path; } default_tests[] = { - {true , SUBSET_FONT_BASE_PATH "Roboto-Regular.ttf"}, + {false, SUBSET_FONT_BASE_PATH "Roboto-Regular.ttf"}, + {true , SUBSET_FONT_BASE_PATH "RobotoFlex-Variable.ttf"}, {false, SUBSET_FONT_BASE_PATH "SourceSansPro-Regular.otf"}, {true , SUBSET_FONT_BASE_PATH "AdobeVFPrototype.otf"}, {true , SUBSET_FONT_BASE_PATH "SourceSerifVariable-Roman.ttf"},