summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2019-07-13 03:42:08 -0400
committerMatthias Clasen <mclasen@redhat.com>2019-07-13 03:42:08 -0400
commitb3cd1503ae2cf6ab9e12d8ba86934e23dfee3898 (patch)
treee19f4ffa7d2aaea73d69fa6c50efccd3af84952f
parentbdede53bbe1e4bebe3316621eb7d1b7dd697fe6e (diff)
downloadpango-b3cd1503ae2cf6ab9e12d8ba86934e23dfee3898.tar.gz
Add some more docs
-rw-r--r--docs/meson.build1
-rw-r--r--docs/pipeline.pngbin0 -> 11216 bytes
-rw-r--r--pango/pango-context.c2
-rw-r--r--pango/pango-layout.c3
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
new file mode 100644
index 00000000..15a6e9c4
--- /dev/null
+++ b/docs/pipeline.png
Binary files differ
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.
*/
/**