diff options
author | Matthias Clasen <mclasen@redhat.com> | 2021-02-19 08:11:14 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2021-03-11 13:17:36 -0500 |
commit | 50bd9eff39f715598eeb574fcb766394e8764e0d (patch) | |
tree | b198af9ef04f3aa2285bb4228321cd6d45594f10 /pango/pango-renderer.h | |
parent | baea52e0a6cbff7397ec35269284ee1091cee844 (diff) | |
download | pango-50bd9eff39f715598eeb574fcb766394e8764e0d.tar.gz |
docs: Tweak renderer docs
Add summaries, convert markup, etc.
Diffstat (limited to 'pango/pango-renderer.h')
-rw-r--r-- | pango/pango-renderer.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/pango/pango-renderer.h b/pango/pango-renderer.h index 89107fd1..98c4cfb0 100644 --- a/pango/pango-renderer.h +++ b/pango/pango-renderer.h @@ -65,12 +65,15 @@ typedef enum * the Renderer; may be %NULL, which should be treated the * same as the identity matrix. * - * #PangoRenderer is a base class for objects that are used to - * render Pango objects such as #PangoGlyphString and - * #PangoLayout. + * `PangoRenderer` is a base class for objects that can render text + * provided as `PangoGlyphString` or `PangoLayout`. + * + * By subclassing `PangoRenderer` and overriding operations such as + * @draw_glyphs and @draw_rectangle, renderers for particular font + * backends and destinations can be created. * * Since: 1.8 - **/ + */ struct _PangoRenderer { /*< private >*/ |