diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2013-09-27 14:36:51 -0400 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2013-09-27 14:36:51 -0400 |
commit | 6d08bcab0d2821365a2ffd955cbbb07270565664 (patch) | |
tree | 6bffdc716a62ea60c0db7ed08d7f5a0d205302f1 /pango/pango-ot-private.h | |
parent | bb5c4c8497157afddcb5ced7e16c5dad4e893a03 (diff) | |
download | pango-6d08bcab0d2821365a2ffd955cbbb07270565664.tar.gz |
Bug 685167 - migrate docs to no-tmpl flavour
Patch from Rafał Mużyło.
Diffstat (limited to 'pango/pango-ot-private.h')
-rw-r--r-- | pango/pango-ot-private.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/pango/pango-ot-private.h b/pango/pango-ot-private.h index 81ae7e84..0d803ec1 100644 --- a/pango/pango-ot-private.h +++ b/pango/pango-ot-private.h @@ -35,6 +35,15 @@ G_BEGIN_DECLS typedef struct _PangoOTInfoClass PangoOTInfoClass; +/** + * PangoOTInfo: + * + * The #PangoOTInfo struct contains the various + * tables associated with an OpenType font. It contains only private fields and + * should only be accessed via the <function>pango_ot_info_*</function> functions + * which are documented below. To obtain a #PangoOTInfo, + * use pango_ot_info_get(). + */ struct _PangoOTInfo { GObject parent_instance; @@ -61,6 +70,15 @@ struct _PangoOTRulesetClass GObjectClass parent_class; }; +/** + * PangoOTBuffer: + * + * The #PangoOTBuffer structure is used to store strings of glyphs associated + * with a #PangoFcFont, suitable for OpenType layout processing. It contains + * only private fields and should only be accessed via the + * <function>pango_ot_buffer_*</function> functions which are documented below. + * To obtain a #PangoOTBuffer, use pango_ot_buffer_new(). + */ struct _PangoOTBuffer { hb_buffer_t *buffer; |