From abe6f9541eb1fe10c063540dbffe3499ec8a9d3e Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Sun, 6 Apr 2008 02:01:04 -0700 Subject: [PATCH] Document EXTEND_REFLECT and EXTEND_PAD as implemented for surfaces since 1.6 --- src/cairo.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/cairo.h b/src/cairo.h index ab730e7ad..542a99628 100644 --- a/src/cairo.h +++ b/src/cairo.h @@ -1789,10 +1789,10 @@ cairo_pattern_get_matrix (cairo_pattern_t *pattern, * are fully transparent * @CAIRO_EXTEND_REPEAT: the pattern is tiled by repeating * @CAIRO_EXTEND_REFLECT: the pattern is tiled by reflecting - * at the edges (not implemented for surface patterns currently) + * at the edges (Implemented for surface patterns since 1.6) * @CAIRO_EXTEND_PAD: pixels outside of the pattern copy - * the closest pixel from the source (Since 1.2; not implemented - * for surface patterns currently) + * the closest pixel from the source (Since 1.2; but only + * implemented for surface patterns since 1.6) * * #cairo_extend_t is used to describe how the area outside * of a pattern will be drawn.