Re: [PATCH 10/51] core: fixed code duplication

Bryce Harrington <[email protected]>
Newsgroups gmane.comp.lib.cairo
Message-ID <[email protected]>
On Fri, Dec 18, 2015 at 02:28:49PM +0100, Enrico Weigelt, metux IT consult wrote:
> We have two places where copying from box set to clip is
> implemented in the same way. Just move that to one function.
> 
> Signed-off-by: Enrico Weigelt, metux IT consult <[email protected]>

Seems like a straightforward refactoring.

Reviewed-by: Bryce Harrington <[email protected]>

> ---
>  src/cairo-clip-boxes.c | 48 ++++++++++++++++++++++++++++++++----------------
>  1 file changed, 32 insertions(+), 16 deletions(-)
> 
> diff --git a/src/cairo-clip-boxes.c b/src/cairo-clip-boxes.c
> index b1ff705..7d2c99f 100644
> --- a/src/cairo-clip-boxes.c
> +++ b/src/cairo-clip-boxes.c
> @@ -264,6 +264,33 @@ _cairo_clip_intersect_box (cairo_clip_t *clip,
>      return _cairo_clip_intersect_rectangle_box (clip, &r, box);
>  }
>  
> +/**
> + * copy a box set to an clip
> + *
> + * @param  box   the box set to copy from
> + * @param  clip  the clip to copy to (return buffer)
> + * @result       zero if the allocation failed - the clip will be set to all-clipped
> + *               otherwise non-zero
> + */
> +static int
> +_cairo_boxes_copy_to_clip(const cairo_boxes_t *boxes, cairo_clip_t *clip)
> +{
> +    /* XXX cow-boxes? */
> +    if(boxes->num_boxes == 1) {
> +	clip->boxes = &clip->embedded_box;
> +	clip->boxes[0] = boxes->chunks.base[0];
> +	clip->num_boxes = 1;
> +    } else {
> +	clip->boxes = _cairo_boxes_to_array(boxes, &clip->num_boxes);
> +	if (unlikely(clip->boxes == NULL))
> +	{
> +	    _cairo_clip_set_all_clipped (clip);
> +	    return 0;
> +	}
> +    }
> +    return 1;
> +}
> +
>  cairo_clip_t *
>  _cairo_clip_intersect_boxes (cairo_clip_t *clip,
>  			     const cairo_boxes_t *boxes)
> @@ -301,13 +328,10 @@ _cairo_clip_intersect_boxes (cairo_clip_t *clip,
>      if (boxes->num_boxes == 0) {
>  	clip = _cairo_clip_set_all_clipped (clip);
>  	goto out;
> -    } else if (boxes->num_boxes == 1) {
> -	clip->boxes = &clip->embedded_box;
> -	clip->boxes[0] = boxes->chunks.base[0];
> -	clip->num_boxes = 1;
> -    } else {
> -	clip->boxes = _cairo_boxes_to_array (boxes, &clip->num_boxes);
>      }
> +
> +    _cairo_boxes_copy_to_clip(boxes, clip);
> +
>      _cairo_boxes_extents (boxes, &limits);
>  
>      _cairo_box_round_to_rectangle (&limits, &extents);
> @@ -574,16 +598,8 @@ _cairo_clip_from_boxes (const cairo_boxes_t *boxes)
>      if (clip == NULL)
>  	return _cairo_clip_set_all_clipped (clip);
>  
> -    /* XXX cow-boxes? */
> -    if(boxes->num_boxes == 1) {
> -	clip->boxes = &clip->embedded_box;
> -	clip->boxes[0] = boxes->chunks.base[0];
> -	clip->num_boxes = 1;
> -    } else {
> -	clip->boxes = _cairo_boxes_to_array (boxes, &clip->num_boxes);
> -	if (clip->boxes == NULL)
> -	    return _cairo_clip_set_all_clipped (clip);
> -    }
> +    if (unlikely(!_cairo_boxes_copy_to_clip(boxes, clip)))
> +	return 0;
>  
>      _cairo_boxes_extents (boxes, &extents);
>      _cairo_box_round_to_rectangle (&extents, &clip->extents);
> -- 
> 2.6.4.442.g545299f
> 
> -- 
> cairo mailing list
> [email protected]
> http://lists.cairographics.org/mailman/listinfo/cairo
-- 
cairo mailing list
[email protected]
http://lists.cairographics.org/mailman/listinfo/cairo
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.