Re: patch: quartz - fallback when source/mask has CAIRO_EXTEND_PAD and they are surface type
"Henry (Yu) Song - SISA" <[email protected]>
| Newsgroups | gmane.comp.lib.cairo |
|---|---|
| Message-ID | <3955FA337689574EB32F94B12A7E6E9E16363E1E@sisaex01sj> |
Hi, Andrea How about the other patch that fixes crashes for all record test cases? Thanks Henry ________________________________________ From: Andrea Canciani [[email protected]] Sent: Tuesday, July 24, 2012 2:39 AM To: Henry (Yu) Song - SISA Cc: [email protected] Subject: Re: [cairo] patch: quartz - fallback when source/mask has CAIRO_EXTEND_PAD and they are surface type Thanks for your patches! I tested and pushed them (with minor whitespace and commit message changes). On Mon, Jul 23, 2012 at 9:35 PM, Henry (Yu) Song - SISA <[email protected]> wrote: > commit 20d3005bc98d0f75606c67175ec73a9ce3827e31 > Author: Henry Song <[email protected]> > Date: Mon Jul 23 12:33:45 2012 -0700 > > quartz: quartz does not handle CAIRO_EXTEND_PAD, let's fallback I had posted a patch to do the same, but the Mozilla guys did not want the fallback to happen. > > diff --git a/src/cairo-quartz-surface.c b/src/cairo-quartz-surface.c > index 28bdae6..471c95d 100644 > --- a/src/cairo-quartz-surface.c > +++ b/src/cairo-quartz-surface.c > @@ -1139,6 +1139,15 @@ _cairo_quartz_setup_state (cairo_quartz_drawing_state_t *state, > state->cgDrawContext = NULL; > state->cgMaskContext = NULL; > > + /* FIXME: ideally, we should use CIImage's CIAffineClamp for > + CAIRO_EXTEND_PAD > + */ A related issue happens for repeated images, which are interpolated in the inside but not across the image edges. Maybe both can be fixed using CIImage... but is it possible to use it without using Objective-C? Another thing I wanted to look into was modifying the dataprovider to handle repeat/pad. > + if ((composite->source_pattern.base.type == CAIRO_PATTERN_TYPE_SURFACE && > + composite->source_pattern.base.extend == CAIRO_EXTEND_PAD) || > + (composite->mask_pattern.base.type == CAIRO_PATTERN_TYPE_SURFACE && > + composite->mask_pattern.base.extend == CAIRO_EXTEND_PAD)) > + return CAIRO_INT_STATUS_UNSUPPORTED; > + > status = _cairo_surface_clipper_set_clip (&surface->clipper, clip); > if (unlikely (status)) > return status; > -- > cairo mailing list > [email protected] > http://lists.cairographics.org/mailman/listinfo/cairo -- cairo mailing list [email protected] http://lists.cairographics.org/mailman/listinfo/cairo