summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2007-04-27 22:46:47 -0700
committerCarl Worth <cworth@cworth.org>2007-04-27 22:46:47 -0700
commita392cc85081dd1e0fa3342c313af94a1e0c289b1 (patch)
treeacc96b16e876504e5ca3e9dfc0ecff2022a9695c
parent8286b8741675ae163fc40187cd04e84395954c6e (diff)
Clarify documentation of cairo_in_stroke and cairo_in_fill
Like cairo_stroke_extents and cairo_fill_extents, these functions work without regard to the surface dimensions or the current clip region.
-rw-r--r--src/cairo.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/cairo.c b/src/cairo.c
index cd28cbba2..69dfee238 100644
--- a/src/cairo.c
+++ b/src/cairo.c
@@ -2151,7 +2151,8 @@ cairo_show_page (cairo_t *cr)
*
* Tests whether the given point is inside the area that would be
* affected by a cairo_stroke() operation given the current path and
- * stroking parameters.
+ * stroking parameters. Surface dimensions and clipping are not taken
+ * into account.
*
* See cairo_stroke(), cairo_set_line_width(), cairo_set_line_join(),
* cairo_set_line_cap(), cairo_set_dash(), and
@@ -2186,7 +2187,8 @@ cairo_in_stroke (cairo_t *cr, double x, double y)
*
* Tests whether the given point is inside the area that would be
* affected by a cairo_fill() operation given the current path and
- * filling parameters.
+ * filling parameters. Surface dimensions and clipping are not taken
+ * into account.
*
* See cairo_fill(), cairo_set_fill_rule() and cairo_fill_preserve().
*