summaryrefslogtreecommitdiff
path: root/src/cairo-paginated-private.h
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@behdad.org>2008-05-09 09:53:40 -0400
committerBehdad Esfahbod <behdad@behdad.org>2008-05-09 15:54:04 +0200
commit5f633580189fa48f5b650d3c63c585521bb833a9 (patch)
treefd74ca15704156e9c62a881af7ffc67c3400bebd /src/cairo-paginated-private.h
parent7dce5360424a98e4100bd78e768c220959633145 (diff)
downloadcairo-5f633580189fa48f5b650d3c63c585521bb833a9.tar.gz
[src/check-doc-syntax.sh] Fix some bugs in the check and fix errors found
Diffstat (limited to 'src/cairo-paginated-private.h')
-rw-r--r--src/cairo-paginated-private.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/cairo-paginated-private.h b/src/cairo-paginated-private.h
index 35384c9f4..bb31487aa 100644
--- a/src/cairo-paginated-private.h
+++ b/src/cairo-paginated-private.h
@@ -90,27 +90,27 @@ struct _cairo_paginated_surface_backend {
* operations for a page into a meta-surface. Then when the user calls
* cairo_show_page, the paginated surface performs the following
* sequence of operations (using the backend functions passed to
- * cairo_paginated_surface_create):
+ * cairo_paginated_surface_create()):
*
- * 1. Calls start_page (if non %NULL). At this point, it is appropriate
+ * 1. Calls start_page() (if not %NULL). At this point, it is appropriate
* for the target to emit any page-specific header information into
* its output.
*
- * 2. Calls set_paginated_mode with an argument of CAIRO_PAGINATED_MODE_ANALYZE
+ * 2. Calls set_paginated_mode() with an argument of %CAIRO_PAGINATED_MODE_ANALYZE
*
* 3. Replays the meta-surface to the target surface, (with an
* analysis surface inserted between which watches the return value
* from each operation). This analysis stage is used to decide which
* operations will require fallbacks.
*
- * 4. Calls set_bounding_box to provide the target surface with the
+ * 4. Calls set_bounding_box() to provide the target surface with the
* tight bounding box of the page.
*
- * 5. Calls set_paginated_mode with an argument of CAIRO_PAGINATED_MODE_RENDER
+ * 5. Calls set_paginated_mode() with an argument of %CAIRO_PAGINATED_MODE_RENDER
*
* 6. Replays a subset of the meta-surface operations to the target surface
*
- * 7. Calls set_paginated_mode with an argument of CAIRO_PAGINATED_MODE_FALLBACK
+ * 7. Calls set_paginated_mode() with an argument of %CAIRO_PAGINATED_MODE_FALLBACK
*
* 8. Replays the remaining operations to an image surface, sets an
* appropriate clip on the target, then paints the resulting image