[subset] Minor

Remove Lookup::subset().
This commit is contained in:
Behdad Esfahbod 2018-09-02 17:00:27 -07:00
parent bfa72a9a72
commit 61ce62e554
2 changed files with 1 additions and 12 deletions

View File

@ -703,17 +703,6 @@ struct Lookup
return_trace (true);
}
inline bool subset (hb_subset_context_t *c) const
{
TRACE_SUBSET (this);
struct Lookup *out = c->serializer->embed (*this);
if (unlikely (!out)) return_trace (false);
unsigned int count = subTable.len;
for (unsigned int i = 0; i < count; i++)
out->subTable[i].set (0); /* To be filled out by SubstLookup/PosLookup. */
return_trace (true);
}
inline bool sanitize (hb_sanitize_context_t *c) const
{
TRACE_SANITIZE (this);

View File

@ -2377,7 +2377,7 @@ struct GSUBGPOS
if (unlikely (!out)) return_trace (false);
out->scriptList.serialize_subset (c, this+scriptList, this);
out->featureList.serialize_subset (c, this+featureList, this);
out->lookupList.serialize_subset (c, this+lookupList, this);
out->lookupList.set (0); /* GSUB/GPOS fill this one in. */
if (version.to_int () >= 0x00010001u)
out->featureVars.serialize_subset (c, this+featureVars, this);
return_trace (true);