Use .sub_array for DataMap tags iteration
This commit is contained in:
parent
a250af98ae
commit
821d9e9034
|
@ -82,13 +82,11 @@ struct meta
|
||||||
unsigned int *count,
|
unsigned int *count,
|
||||||
hb_ot_metadata_t *entries) const
|
hb_ot_metadata_t *entries) const
|
||||||
{
|
{
|
||||||
unsigned int entries_count = table->dataMaps.len;
|
|
||||||
if (count && *count)
|
if (count && *count)
|
||||||
{
|
{
|
||||||
unsigned int len = hb_min (entries_count - start_offset, *count);
|
hb_array_t<const DataMap> array = table->dataMaps.sub_array (start_offset, count);
|
||||||
for (unsigned int i = 0; i < len; i++)
|
for (unsigned int i = 0; i < *count; i++)
|
||||||
entries[i] = (hb_ot_metadata_t) table->dataMaps[i + start_offset].get_tag ();
|
entries[i] = (hb_ot_metadata_t) array[i].get_tag ();
|
||||||
*count = len;
|
|
||||||
}
|
}
|
||||||
return table->dataMaps.len;
|
return table->dataMaps.len;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue