Shrink code size

This commit is contained in:
Behdad Esfahbod 2011-05-27 18:15:56 -04:00
parent 90645fb24b
commit 51881a61ca
2 changed files with 12 additions and 10 deletions

View File

@ -42,16 +42,7 @@ struct hb_ot_map_builder_t
{ {
public: public:
inline void add_feature (hb_tag_t tag, unsigned int value, bool global) HB_INTERNAL void add_feature (hb_tag_t tag, unsigned int value, bool global);
{
feature_info_t *info = feature_infos.push();
if (unlikely (!info)) return;
info->tag = tag;
info->seq = feature_infos.len;
info->max_value = value;
info->global = global;
info->default_value = global ? value : 0;
}
inline void add_bool_feature (hb_tag_t tag, bool global = true) inline void add_bool_feature (hb_tag_t tag, bool global = true)
{ add_feature (tag, 1, global); } { add_feature (tag, 1, global); }

View File

@ -64,6 +64,17 @@ hb_ot_map_t::add_lookups (hb_face_t *face,
} }
void hb_ot_map_builder_t::add_feature (hb_tag_t tag, unsigned int value, bool global)
{
feature_info_t *info = feature_infos.push();
if (unlikely (!info)) return;
info->tag = tag;
info->seq = feature_infos.len;
info->max_value = value;
info->global = global;
info->default_value = global ? value : 0;
}
void void
hb_ot_map_builder_t::compile (hb_face_t *face, hb_ot_map_builder_t::compile (hb_face_t *face,
const hb_segment_properties_t *props, const hb_segment_properties_t *props,