diff options
Diffstat (limited to 'pango/fonts.c')
-rw-r--r-- | pango/fonts.c | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/pango/fonts.c b/pango/fonts.c index 2dd39f2e..081596df 100644 --- a/pango/fonts.c +++ b/pango/fonts.c @@ -2327,3 +2327,27 @@ pango_font_covers (PangoFont *font, pango_coverage_unref (coverage); return result != PANGO_COVERAGE_NONE; } + +/** + * pango_font_get_features: + * @font: a #PangoFont + * @features: (out caller-allocates) (array length=len): Array to features in + * @len: the length of @features + * @num_features: (inout): the number of used items in @features + * + * Obtain the OpenType features for this font. + * + * These are the features used by default for this font, + * unless overridden. + * + * Since: 1.44 + */ +void +pango_font_get_features (PangoFont *font, + hb_feature_t *features, + guint len, + guint *num_features) +{ + if (PANGO_FONT_GET_CLASS (font)->get_features) + PANGO_FONT_GET_CLASS (font)->get_features (font, features, len, num_features); +} |