diff options
-rw-r--r-- | docs/meson.build | 1 | ||||
-rw-r--r-- | docs/pipeline.png | bin | 0 -> 11216 bytes | |||
-rw-r--r-- | pango/pango-context.c | 2 | ||||
-rw-r--r-- | pango/pango-layout.c | 3 |
4 files changed, 5 insertions, 1 deletions
diff --git a/docs/meson.build b/docs/meson.build index 249faa7d..edf04dbe 100644 --- a/docs/meson.build +++ b/docs/meson.build @@ -64,6 +64,7 @@ content_files = [ html_images = [ 'layout.png', + 'pipeline.png', 'rotated-text.png', ] diff --git a/docs/pipeline.png b/docs/pipeline.png Binary files differnew file mode 100644 index 00000000..15a6e9c4 --- /dev/null +++ b/docs/pipeline.png diff --git a/pango/pango-context.c b/pango/pango-context.c index 4b258c9c..8dd097ee 100644 --- a/pango/pango-context.c +++ b/pango/pango-context.c @@ -28,6 +28,8 @@ * Unicode characters and converts it into glyphs. * The functions described in this section accomplish * various steps of this process. + * + * ![](pipeline.png) */ #include "config.h" #include <string.h> diff --git a/pango/pango-layout.c b/pango/pango-layout.c index 97beccc8..4660b069 100644 --- a/pango/pango-layout.c +++ b/pango/pango-layout.c @@ -29,7 +29,8 @@ * that functionality directly involves writing a fairly large amount * of code. The objects and functions in this section provide a * high-level driver for formatting entire paragraphs of text - * at once. + * at once. This includes paragraph-level functionality such as + * line-breaking, justification, alignment and ellipsization. */ /** |