[aat] Minor
This commit is contained in:
parent
71da9ca62f
commit
1043ddbee8
|
@ -961,7 +961,7 @@ struct Chain
|
||||||
hb_aat_layout_feature_type_t type = (hb_aat_layout_feature_type_t) (unsigned int) feature.featureType;
|
hb_aat_layout_feature_type_t type = (hb_aat_layout_feature_type_t) (unsigned int) feature.featureType;
|
||||||
hb_aat_layout_feature_selector_t setting = (hb_aat_layout_feature_selector_t) (unsigned int) feature.featureSetting;
|
hb_aat_layout_feature_selector_t setting = (hb_aat_layout_feature_selector_t) (unsigned int) feature.featureSetting;
|
||||||
retry:
|
retry:
|
||||||
const hb_aat_map_builder_t::feature_info_t *info = map->features.bsearch ((uint16_t) type);
|
const hb_aat_map_builder_t::feature_info_t *info = map->features.bsearch (type);
|
||||||
if (info && info->setting == setting)
|
if (info && info->setting == setting)
|
||||||
{
|
{
|
||||||
flags &= feature.disableFlags;
|
flags &= feature.disableFlags;
|
||||||
|
|
|
@ -74,7 +74,7 @@ struct hb_aat_map_builder_t
|
||||||
(a->seq < b->seq ? -1 : a->seq > b->seq ? 1 : 0);
|
(a->seq < b->seq ? -1 : a->seq > b->seq ? 1 : 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
int cmp (unsigned int ty) const
|
int cmp (hb_aat_layout_feature_type_t ty) const
|
||||||
{
|
{
|
||||||
return (type != ty) ? (type < ty ? -1 : 1) : 0;
|
return (type != ty) ? (type < ty ? -1 : 1) : 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue