Document the implicit closing of sub-paths for cairo_fill and cairo_fill_preserve.

This commit is contained in:
Carl Worth 2005-08-05 20:15:19 +00:00
parent d150513c6a
commit 4ad365f183
2 changed files with 11 additions and 4 deletions

View file

@ -1,3 +1,8 @@
2005-08-05 Carl Worth <cworth@cworth.org>
* src/cairo.c: Document the implicit closing of sub-paths for
cairo_fill and cairo_fill_preserve.
2005-08-05 Carl Worth <cworth@cworth.org>
* src/cairoint.h: Rename parameters to scalend_font_backend from

View file

@ -1405,8 +1405,9 @@ slim_hidden_def(cairo_stroke_preserve);
* @cr: a cairo context
*
* A drawing operator that fills the current path according to the
* current fill rule. After cairo_fill, the current path will be
* cleared from the cairo context. See cairo_set_fill_rule() and
* current fill rule, (each sub-path is implicitly closed before being
* filled). After cairo_fill, the current path will be cleared from
* the cairo context. See cairo_set_fill_rule() and
* cairo_fill_preserve().
**/
void
@ -1422,8 +1423,9 @@ cairo_fill (cairo_t *cr)
* @cr: a cairo context
*
* A drawing operator that fills the current path according to the
* current fill rule. Unlike cairo_fill(), cairo_fill_preserve
* preserves the path within the cairo context.
* current fill rule, (each sub-path is implicitly closed before being
* filled). Unlike cairo_fill(), cairo_fill_preserve preserves the
* path within the cairo context.
*
* See cairo_set_fill_rule() and cairo_fill().
**/