[subset] Subset vmtx if present.

This commit is contained in:
Garret Rieger 2018-03-02 17:33:49 -08:00
parent 70ad69f244
commit 64cf53d619
2 changed files with 4 additions and 1 deletions

View File

@ -252,6 +252,9 @@ _subset_table (hb_subset_plan_t *plan,
case HB_OT_TAG_hmtx: case HB_OT_TAG_hmtx:
result = _subset<const OT::hmtx> (plan); result = _subset<const OT::hmtx> (plan);
break; break;
case HB_OT_TAG_vmtx:
result = _subset<const OT::vmtx> (plan);
break;
case HB_OT_TAG_maxp: case HB_OT_TAG_maxp:
result = _subset<const OT::maxp> (plan); result = _subset<const OT::maxp> (plan);
break; break;