mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-05 13:35:06 +00:00
[perf/benchmark-subset] Rename subset_codepoints to subset_unicodes
This commit is contained in:
parent
a56288488c
commit
b2d648e41b
1 changed files with 3 additions and 3 deletions
|
@ -11,8 +11,8 @@
|
|||
|
||||
enum operation_t
|
||||
{
|
||||
subset_codepoints,
|
||||
subset_glyphs,
|
||||
subset_unicodes,
|
||||
instance,
|
||||
};
|
||||
|
||||
|
@ -164,7 +164,7 @@ static void BM_subset (benchmark::State &state,
|
|||
|
||||
switch (operation)
|
||||
{
|
||||
case subset_codepoints:
|
||||
case subset_unicodes:
|
||||
{
|
||||
hb_set_t* all_codepoints = hb_set_create ();
|
||||
hb_face_collect_unicodes (face, all_codepoints);
|
||||
|
@ -264,7 +264,7 @@ int main(int argc, char** argv)
|
|||
#define TEST_OPERATION(op, time_unit) test_operation (op, #op, tests, num_tests, time_unit)
|
||||
|
||||
TEST_OPERATION (subset_glyphs, benchmark::kMicrosecond);
|
||||
TEST_OPERATION (subset_codepoints, benchmark::kMicrosecond);
|
||||
TEST_OPERATION (subset_unicodes, benchmark::kMicrosecond);
|
||||
TEST_OPERATION (instance, benchmark::kMicrosecond);
|
||||
|
||||
#undef TEST_OPERATION
|
||||
|
|
Loading…
Add table
Reference in a new issue