gecko/gfx/cairo/fix-unnecessary-fallback.patch
Jeff Muizelaar 1ff50fe646 Bug 542605. Update cairo to 12d521df8acc483b2daa844d4f05dc2fe2765ba6. r=vlad,jwatt,bas
Reland after fixing quartz related clipping bug and a bunch of other ones
2010-04-05 22:28:54 -04:00

15 lines
548 B
Diff

diff --git a/src/cairo-xlib-surface.c b/src/cairo-xlib-surface.c
index 353cbcd..1a053d0 100644
--- a/src/cairo-xlib-surface.c
+++ b/src/cairo-xlib-surface.c
@@ -1818,7 +1817,8 @@ _recategorize_composite_operation (cairo_xlib_surface_t *dst,
return DO_XTILE;
}
- if (dst->buggy_repeat && src_attr->extend == CAIRO_EXTEND_REPEAT)
+ if (dst->buggy_repeat && src_attr->extend == CAIRO_EXTEND_REPEAT &&
+ (src->width != 1 || src->height != 1))
return DO_UNSUPPORTED;
if (! CAIRO_SURFACE_RENDER_HAS_COMPOSITE (src))