mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-05-05 11:08:12 +02:00
Document the implicit closing of sub-paths for cairo_fill and cairo_fill_preserve.
This commit is contained in:
parent
d150513c6a
commit
4ad365f183
2 changed files with 11 additions and 4 deletions
|
|
@ -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
|
||||
|
|
|
|||
10
src/cairo.c
10
src/cairo.c
|
|
@ -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().
|
||||
**/
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue