[Coverage] Comment
This commit is contained in:
parent
06e2147a48
commit
6aaa16627c
|
@ -77,7 +77,9 @@ struct CoverageFormat1_3
|
||||||
|
|
||||||
bool intersects (const hb_set_t *glyphs) const
|
bool intersects (const hb_set_t *glyphs) const
|
||||||
{
|
{
|
||||||
/* TODO Speed up, using hb_set_next() and bsearch()? */
|
/* TODO Speed up, using hb_set_next() and bsearch()?
|
||||||
|
* Experience with other tables suggest that it would
|
||||||
|
* not speed up though. */
|
||||||
for (const auto& g : glyphArray.as_array ())
|
for (const auto& g : glyphArray.as_array ())
|
||||||
if (glyphs->has (g))
|
if (glyphs->has (g))
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in New Issue