Subversion Repositories Kolibri OS

Rev

Rev 1892 | Go to most recent revision | Only display areas with differences | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1892 Rev 3959
1
/* cairo - a vector graphics library with display and print output
1
/* cairo - a vector graphics library with display and print output
2
 *
2
 *
3
 * Copyright © 2009 Chris Wilson
3
 * Copyright © 2009 Chris Wilson
4
 *
4
 *
5
 * This library is free software; you can redistribute it and/or
5
 * This library is free software; you can redistribute it and/or
6
 * modify it either under the terms of the GNU Lesser General Public
6
 * modify it either under the terms of the GNU Lesser General Public
7
 * License version 2.1 as published by the Free Software Foundation
7
 * License version 2.1 as published by the Free Software Foundation
8
 * (the "LGPL") or, at your option, under the terms of the Mozilla
8
 * (the "LGPL") or, at your option, under the terms of the Mozilla
9
 * Public License Version 1.1 (the "MPL"). If you do not alter this
9
 * Public License Version 1.1 (the "MPL"). If you do not alter this
10
 * notice, a recipient may use your version of this file under either
10
 * notice, a recipient may use your version of this file under either
11
 * the MPL or the LGPL.
11
 * the MPL or the LGPL.
12
 *
12
 *
13
 * You should have received a copy of the LGPL along with this library
13
 * You should have received a copy of the LGPL along with this library
14
 * in the file COPYING-LGPL-2.1; if not, write to the Free Software
14
 * in the file COPYING-LGPL-2.1; if not, write to the Free Software
15
 * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA
15
 * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA
16
 * You should have received a copy of the MPL along with this library
16
 * You should have received a copy of the MPL along with this library
17
 * in the file COPYING-MPL-1.1
17
 * in the file COPYING-MPL-1.1
18
 *
18
 *
19
 * The contents of this file are subject to the Mozilla Public License
19
 * The contents of this file are subject to the Mozilla Public License
20
 * Version 1.1 (the "License"); you may not use this file except in
20
 * Version 1.1 (the "License"); you may not use this file except in
21
 * compliance with the License. You may obtain a copy of the License at
21
 * compliance with the License. You may obtain a copy of the License at
22
 * http://www.mozilla.org/MPL/
22
 * http://www.mozilla.org/MPL/
23
 *
23
 *
24
 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY
24
 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY
25
 * OF ANY KIND, either express or implied. See the LGPL or the MPL for
25
 * OF ANY KIND, either express or implied. See the LGPL or the MPL for
26
 * the specific language governing rights and limitations.
26
 * the specific language governing rights and limitations.
27
 *
27
 *
28
 * The Original Code is the cairo graphics library.
28
 * The Original Code is the cairo graphics library.
29
 *
29
 *
30
 * The Initial Developer of the Original Code is Red Hat, Inc.
30
 * The Initial Developer of the Original Code is Red Hat, Inc.
31
 *
31
 *
32
 * Contributor(s):
32
 * Contributor(s):
33
 *      Chris Wilson 
33
 *      Chris Wilson 
34
 */
34
 */
35
 
35
 
36
#include "cairoint.h"
36
#include "cairoint.h"
-
 
37
 
37
 
38
#include "cairo-clip-inline.h"
38
#include "cairo-surface-clipper-private.h"
39
#include "cairo-surface-clipper-private.h"
39
 
40
 
40
/* A collection of routines to facilitate vector surface clipping */
41
/* A collection of routines to facilitate vector surface clipping */
-
 
42
 
-
 
43
/* XXX Eliminate repeated paths and nested clips */
-
 
44
 
-
 
45
static cairo_status_t
-
 
46
_cairo_path_fixed_add_box (cairo_path_fixed_t *path,
-
 
47
			   const cairo_box_t *box)
-
 
48
{
-
 
49
    cairo_status_t status;
-
 
50
 
-
 
51
    status = _cairo_path_fixed_move_to (path, box->p1.x, box->p1.y);
-
 
52
    if (unlikely (status))
-
 
53
	return status;
-
 
54
 
-
 
55
    status = _cairo_path_fixed_line_to (path, box->p2.x, box->p1.y);
-
 
56
    if (unlikely (status))
-
 
57
	return status;
-
 
58
 
-
 
59
    status = _cairo_path_fixed_line_to (path, box->p2.x, box->p2.y);
-
 
60
    if (unlikely (status))
-
 
61
	return status;
-
 
62
 
-
 
63
    status = _cairo_path_fixed_line_to (path, box->p1.x, box->p2.y);
-
 
64
    if (unlikely (status))
-
 
65
	return status;
-
 
66
 
-
 
67
    return _cairo_path_fixed_close_path (path);
-
 
68
}
-
 
69
 
-
 
70
static cairo_status_t
-
 
71
_cairo_surface_clipper_intersect_clip_boxes (cairo_surface_clipper_t *clipper,
-
 
72
					     const cairo_clip_t *clip)
-
 
73
{
-
 
74
    cairo_path_fixed_t path;
-
 
75
    cairo_status_t status;
-
 
76
    int i;
-
 
77
 
-
 
78
    if (clip->num_boxes == 0)
-
 
79
	return CAIRO_STATUS_SUCCESS;
-
 
80
 
-
 
81
    /* Reconstruct the path for the clip boxes.
-
 
82
     * XXX maybe a new clipper callback?
-
 
83
     */
-
 
84
 
-
 
85
    _cairo_path_fixed_init (&path);
-
 
86
    for (i = 0; i < clip->num_boxes; i++) {
-
 
87
	status = _cairo_path_fixed_add_box (&path, &clip->boxes[i]);
-
 
88
	if (unlikely (status)) {
-
 
89
	    _cairo_path_fixed_fini (&path);
-
 
90
	    return status;
-
 
91
	}
-
 
92
    }
-
 
93
 
-
 
94
    status = clipper->intersect_clip_path (clipper, &path,
-
 
95
					   CAIRO_FILL_RULE_WINDING,
-
 
96
					   0.,
-
 
97
					   CAIRO_ANTIALIAS_DEFAULT);
-
 
98
    _cairo_path_fixed_fini (&path);
-
 
99
 
-
 
100
    return status;
-
 
101
}
41
 
102
 
42
static cairo_status_t
103
static cairo_status_t
43
_cairo_surface_clipper_intersect_clip_path_recursive (cairo_surface_clipper_t *clipper,
104
_cairo_surface_clipper_intersect_clip_path_recursive (cairo_surface_clipper_t *clipper,
-
 
105
						      cairo_clip_path_t *clip_path,
44
						      cairo_clip_path_t *clip_path)
106
						      cairo_clip_path_t *end)
45
{
107
{
46
    cairo_status_t status;
108
    cairo_status_t status;
47
 
109
 
48
    if (clip_path->prev != NULL) {
110
    if (clip_path->prev != end) {
49
	status =
111
	status =
50
	    _cairo_surface_clipper_intersect_clip_path_recursive (clipper,
112
	    _cairo_surface_clipper_intersect_clip_path_recursive (clipper,
-
 
113
								  clip_path->prev,
51
								  clip_path->prev);
114
								  end);
52
	if (unlikely (status))
115
	if (unlikely (status))
53
	    return status;
116
	    return status;
54
    }
117
    }
55
 
118
 
56
    return clipper->intersect_clip_path (clipper,
119
    return clipper->intersect_clip_path (clipper,
57
					 &clip_path->path,
120
					 &clip_path->path,
58
					 clip_path->fill_rule,
121
					 clip_path->fill_rule,
59
					 clip_path->tolerance,
122
					 clip_path->tolerance,
60
					 clip_path->antialias);
123
					 clip_path->antialias);
61
}
124
}
62
 
125
 
63
cairo_status_t
126
cairo_status_t
64
_cairo_surface_clipper_set_clip (cairo_surface_clipper_t *clipper,
127
_cairo_surface_clipper_set_clip (cairo_surface_clipper_t *clipper,
65
				 cairo_clip_t *clip)
128
				 const cairo_clip_t *clip)
66
{
129
{
67
    cairo_status_t status;
130
    cairo_status_t status;
68
    cairo_bool_t clear;
131
    cairo_bool_t incremental = FALSE;
69
 
-
 
70
    /* XXX as we cache a reference to the path, and compare every time,
-
 
71
     * we may in future need to install a notification if the clip->path
-
 
72
     * is every modified (e.g. cairo_clip_translate).
-
 
73
     */
-
 
74
 
132
 
75
    if (clip == NULL && clipper->clip.path == NULL)
133
    if (_cairo_clip_equal (clip, clipper->clip))
-
 
134
	return CAIRO_STATUS_SUCCESS;
-
 
135
 
-
 
136
    /* all clipped out state should never propagate this far */
-
 
137
    assert (!_cairo_clip_is_all_clipped (clip));
76
	return CAIRO_STATUS_SUCCESS;
138
 
-
 
139
    /* XXX Is this an incremental clip? */
77
 
140
    if (clipper->clip && clip &&
-
 
141
	clip->num_boxes == clipper->clip->num_boxes &&
78
    if (clip != NULL && clipper->clip.path != NULL &&
142
	memcmp (clip->boxes, clipper->clip->boxes,
-
 
143
		sizeof (cairo_box_t) * clip->num_boxes) == 0)
-
 
144
    {
-
 
145
	cairo_clip_path_t *clip_path = clip->path;
-
 
146
	while (clip_path != NULL && clip_path != clipper->clip->path)
-
 
147
	    clip_path = clip_path->prev;
79
	_cairo_clip_equal (clip, &clipper->clip))
148
 
-
 
149
	if (clip_path) {
-
 
150
	    incremental = TRUE;
-
 
151
	    status = _cairo_surface_clipper_intersect_clip_path_recursive (clipper,
-
 
152
									   clip->path,
80
    {
153
									   clipper->clip->path);
81
	return CAIRO_STATUS_SUCCESS;
154
	}
82
    }
155
    }
83
 
-
 
84
    /* all clipped out state should never propagate this far */
-
 
85
    assert (clip == NULL || clip->path != NULL);
156
 
86
 
-
 
87
    /* Check whether this clip is a continuation of the previous.
-
 
88
     * If not, we have to remove the current clip and rebuild.
157
    _cairo_clip_destroy (clipper->clip);
89
     */
-
 
90
    clear = clip == NULL || clip->path->prev != clipper->clip.path;
-
 
91
 
-
 
92
    _cairo_clip_reset (&clipper->clip);
158
    clipper->clip = _cairo_clip_copy (clip);
93
    _cairo_clip_init_copy (&clipper->clip, clip);
159
 
94
 
160
    if (incremental)
95
    if (clear) {
161
	return status;
96
	clipper->is_clipped = FALSE;
162
 
97
	status = clipper->intersect_clip_path (clipper, NULL, 0, 0, 0);
163
    status = clipper->intersect_clip_path (clipper, NULL, 0, 0, 0);
98
	if (unlikely (status))
164
    if (unlikely (status))
99
	    return status;
165
	return status;
100
 
166
 
101
	if (clip != NULL && clip->path != NULL) {
167
    if (clip == NULL)
-
 
168
	return CAIRO_STATUS_SUCCESS;
102
	    status =
169
 
103
		_cairo_surface_clipper_intersect_clip_path_recursive (clipper,
-
 
104
								      clip->path);
170
    status = _cairo_surface_clipper_intersect_clip_boxes (clipper, clip);
105
	    clipper->is_clipped = TRUE;
-
 
106
	}
171
    if (unlikely (status))
107
    } else {
-
 
108
	cairo_clip_path_t *path = clip->path;
172
	return status;
109
 
173
 
110
	clipper->is_clipped = TRUE;
174
    if (clip->path != NULL) {
111
	status = clipper->intersect_clip_path (clipper,
-
 
112
					       &path->path,
-
 
113
					       path->fill_rule,
175
	    status = _cairo_surface_clipper_intersect_clip_path_recursive (clipper,
114
					       path->tolerance,
176
									   clip->path,
115
					       path->antialias);
177
									   NULL);
116
    }
178
    }
117
 
179
 
118
    return status;
180
    return status;
119
}
181
}
120
 
182
 
121
void
183
void
122
_cairo_surface_clipper_init (cairo_surface_clipper_t *clipper,
184
_cairo_surface_clipper_init (cairo_surface_clipper_t *clipper,
123
			     cairo_surface_clipper_intersect_clip_path_func_t func)
185
			     cairo_surface_clipper_intersect_clip_path_func_t func)
124
{
186
{
125
    _cairo_clip_init (&clipper->clip);
-
 
126
    clipper->is_clipped = FALSE;
187
    clipper->clip = NULL;
127
    clipper->intersect_clip_path = func;
188
    clipper->intersect_clip_path = func;
128
}
189
}
129
 
190
 
130
void
191
void
131
_cairo_surface_clipper_reset (cairo_surface_clipper_t *clipper)
192
_cairo_surface_clipper_reset (cairo_surface_clipper_t *clipper)
132
{
193
{
133
    _cairo_clip_reset (&clipper->clip);
194
    _cairo_clip_destroy (clipper->clip);
134
    clipper->is_clipped = FALSE;
195
    clipper->clip = NULL;
135
}
196
}