[subset] Minor internal parameter rename

This commit is contained in:
Behdad Esfahbod 2021-08-24 23:22:49 -06:00
parent 955f86a034
commit e9e6d66cd6
1 changed files with 3 additions and 3 deletions

View File

@ -93,7 +93,7 @@ static void _collect_layout_indices (hb_face_t *face,
const T& table, const T& table,
const hb_set_t *layout_features_to_retain, const hb_set_t *layout_features_to_retain,
layout_collect_func_t layout_collect_func, layout_collect_func_t layout_collect_func,
hb_set_t *lookup_indices /* OUT */) hb_set_t *indices /* OUT */)
{ {
hb_vector_t<hb_tag_t> features; hb_vector_t<hb_tag_t> features;
if (!features.alloc (table.get_feature_count () + 1)) if (!features.alloc (table.get_feature_count () + 1))
@ -120,7 +120,7 @@ static void _collect_layout_indices (hb_face_t *face,
nullptr, nullptr,
nullptr, nullptr,
nullptr, nullptr,
lookup_indices); indices);
return; return;
} }
@ -129,7 +129,7 @@ static void _collect_layout_indices (hb_face_t *face,
nullptr, nullptr,
nullptr, nullptr,
features.arrayZ, features.arrayZ,
lookup_indices); indices);
} }
template <typename T> template <typename T>