summaryrefslogtreecommitdiff
path: root/src/cairo-region.c
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2010-07-08 03:21:45 +0200
committerBenjamin Otte <otte@redhat.com>2010-07-08 13:58:53 +0200
commite7594aebce6007bfa2027ba2655875db6c036e73 (patch)
treecfc0e365e94a0841c2c6f73603123bcc65eb260a /src/cairo-region.c
parentda2663a0aa1e3f0a6b2f6ae2e9952ac27dec3f5d (diff)
downloadcairo-e7594aebce6007bfa2027ba2655875db6c036e73.tar.gz
doc: Fix some consistency issues that confuse gtk-doc
Diffstat (limited to 'src/cairo-region.c')
-rw-r--r--src/cairo-region.c16
1 files changed, 13 insertions, 3 deletions
diff --git a/src/cairo-region.c b/src/cairo-region.c
index 85d7c0900..5237df396 100644
--- a/src/cairo-region.c
+++ b/src/cairo-region.c
@@ -417,7 +417,7 @@ slim_hidden_def (cairo_region_get_rectangle);
/**
* cairo_region_get_extents:
* @region: a #cairo_region_t
- * @rectangle: rectangle into which to store the extents
+ * @extents: rectangle into which to store the extents
*
* Gets the bounding rectangle of @region as a #cairo_rectangle_int_t
*
@@ -773,6 +773,16 @@ cairo_region_translate (cairo_region_t *region,
slim_hidden_def (cairo_region_translate);
/**
+ * cairo_region_overlap_t:
+ * @CAIRO_REGION_OVERLAP_IN: The contents are entirely inside the region
+ * @CAIRO_REGION_OVERLAP_OUT: The contents are entirely outside the region
+ * @CAIRO_REGION_OVERLAP_PART: The contents are partially inside and
+ * partially outside the region.
+ *
+ * Used as the return value for cairo_region_contains_rectangle().
+ */
+
+/**
* cairo_region_contains_rectangle:
* @region: a #cairo_region_t
* @rectangle: a #cairo_rectangle_int_t
@@ -840,8 +850,8 @@ slim_hidden_def (cairo_region_contains_point);
/**
* cairo_region_equal:
- * @region_a: a #cairo_region_t or %NULL
- * @region_b: a #cairo_region_t or %NULL
+ * @a: a #cairo_region_t or %NULL
+ * @b: a #cairo_region_t or %NULL
*
* Compares whether region_a is equivalent to region_b. %NULL as an argument
* is equal to itself, but not to any non-%NULL region.