summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFederico Mena Quintero <federico@gnome.org>2018-03-08 13:27:38 -0600
committerBryce Harrington <b.harrington@samsung.com>2018-09-05 17:00:44 -0700
commit78a5d543b65491bb34094235364fead82904d54d (patch)
tree64a35294e268096f8b554b296c272f67596ce7fa
parent38fc475995afade7edfe43af4bea6345ab989ea5 (diff)
test/extended-blend.c: Remove obsolete comments about buggy librsvg
The comment said that using CAIRO_OPERATOR_SOURCE for the background triggered a librsvg bug, but the relevant commit message does not even include a link to a librsvg bug. Also, changing it from OVER to SOURCE completely breaks these tests (the reference images don't match at all), so this comment is stale. Just remove it. Signed-off-by: Bryce Harrington <b.harrington@samsung.com>
-rw-r--r--test/extended-blend.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/test/extended-blend.c b/test/extended-blend.c
index 8edd182d6..9c6f07d7d 100644
--- a/test/extended-blend.c
+++ b/test/extended-blend.c
@@ -71,7 +71,6 @@ do_blend_solid (cairo_t *cr, cairo_operator_t op, cairo_bool_t alpha)
cairo_save (cr);
cairo_scale (cr, SIZE, SIZE);
- /* not using CAIRO_OPERATOR_SOURCE here, it triggers a librsvg bug */
cairo_set_operator (cr, CAIRO_OPERATOR_OVER);
for (x = 0; x < STEPS; x++) {
/* draw the background using discrete steps */
@@ -126,7 +125,6 @@ do_blend (cairo_t *cr, cairo_operator_t op, cairo_bool_t alpha)
create_patterns (cr, &bg, &fg, alpha);
- /* not using CAIRO_OPERATOR_SOURCE here, it triggers a librsvg bug */
cairo_set_operator (cr, CAIRO_OPERATOR_OVER);
cairo_set_source_surface (cr, bg, 0, 0);
cairo_paint (cr);
@@ -146,7 +144,6 @@ do_blend_mask (cairo_t *cr, cairo_operator_t op, cairo_bool_t alpha)
create_patterns (cr, &bg, &fg, alpha);
- /* not using CAIRO_OPERATOR_SOURCE here, it triggers a librsvg bug */
cairo_set_operator (cr, CAIRO_OPERATOR_OVER);
cairo_set_source_surface (cr, bg, 0, 0);
cairo_paint (cr);