[perf/perf] Fix run when ttfparser is not available
This commit is contained in:
parent
f48647e589
commit
df3ecea773
|
@ -130,6 +130,9 @@ static void draw (benchmark::State &state, const char *font_path, bool is_var, b
|
||||||
|
|
||||||
hb_blob_destroy (blob);
|
hb_blob_destroy (blob);
|
||||||
free (tp_font);
|
free (tp_font);
|
||||||
|
#else
|
||||||
|
state.SkipWithError("ttfparser not available.");
|
||||||
|
return;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
else abort ();
|
else abort ();
|
||||||
|
|
|
@ -56,6 +56,9 @@ static void extents (benchmark::State &state, const char *font_path, bool is_var
|
||||||
|
|
||||||
hb_blob_destroy (blob);
|
hb_blob_destroy (blob);
|
||||||
free (tp_font);
|
free (tp_font);
|
||||||
|
#else
|
||||||
|
state.SkipWithError("ttfparser not available.");
|
||||||
|
return;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue