minor
This commit is contained in:
parent
5c46683ab8
commit
46ec6db965
|
@ -229,9 +229,7 @@ struct KerxSubTableFormat1
|
||||||
|
|
||||||
bool is_actionable (StateTableDriver<Types, EntryData> *driver HB_UNUSED,
|
bool is_actionable (StateTableDriver<Types, EntryData> *driver HB_UNUSED,
|
||||||
const Entry<EntryData> &entry)
|
const Entry<EntryData> &entry)
|
||||||
{
|
{ return Format1EntryT::performAction (entry); }
|
||||||
return Format1EntryT::performAction (entry);
|
|
||||||
}
|
|
||||||
void transition (StateTableDriver<Types, EntryData> *driver,
|
void transition (StateTableDriver<Types, EntryData> *driver,
|
||||||
const Entry<EntryData> &entry)
|
const Entry<EntryData> &entry)
|
||||||
{
|
{
|
||||||
|
|
|
@ -213,8 +213,8 @@ struct hb_ot_map_builder_t
|
||||||
{ add_feature (feat.tag, feat.flags); }
|
{ add_feature (feat.tag, feat.flags); }
|
||||||
|
|
||||||
void enable_feature (hb_tag_t tag,
|
void enable_feature (hb_tag_t tag,
|
||||||
hb_ot_map_feature_flags_t flags=F_NONE,
|
hb_ot_map_feature_flags_t flags=F_NONE,
|
||||||
unsigned int value=1)
|
unsigned int value=1)
|
||||||
{ add_feature (tag, F_GLOBAL | flags, value); }
|
{ add_feature (tag, F_GLOBAL | flags, value); }
|
||||||
|
|
||||||
void disable_feature (hb_tag_t tag)
|
void disable_feature (hb_tag_t tag)
|
||||||
|
|
|
@ -114,7 +114,7 @@ struct cff1_top_dict_values_mod_t : cff1_top_dict_values_t
|
||||||
struct top_dict_modifiers_t
|
struct top_dict_modifiers_t
|
||||||
{
|
{
|
||||||
top_dict_modifiers_t (const cff1_sub_table_info_t &info_,
|
top_dict_modifiers_t (const cff1_sub_table_info_t &info_,
|
||||||
const unsigned int (&nameSIDs_)[name_dict_values_t::ValCount])
|
const unsigned int (&nameSIDs_)[name_dict_values_t::ValCount])
|
||||||
: info (info_),
|
: info (info_),
|
||||||
nameSIDs (nameSIDs_)
|
nameSIDs (nameSIDs_)
|
||||||
{}
|
{}
|
||||||
|
|
Loading…
Reference in New Issue