blob: 2c0961ab83c8254654078782903364666e260209 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
2/*
3 * Copyright 2011 Google Inc.
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
7 */
reed@google.com5c3d1472011-02-22 19:12:23 +00008#include "SkClipStack.h"
9#include "SkPath.h"
robertphillips@google.com46f93502012-08-07 15:38:08 +000010#include "SkThread.h"
11
reed@google.com5c3d1472011-02-22 19:12:23 +000012#include <new>
13
robertphillips@google.com607fe072012-07-24 13:54:00 +000014
robertphillips@google.com46f93502012-08-07 15:38:08 +000015// 0-2 are reserved for invalid, empty & wide-open
bsalomon@google.comedb26fd2012-11-28 14:42:41 +000016static const int32_t kFirstUnreservedGenID = 3;
17int32_t SkClipStack::gGenID = kFirstUnreservedGenID;
robertphillips@google.com46f93502012-08-07 15:38:08 +000018
bsalomon@google.comc6b3e482012-12-07 20:43:52 +000019void SkClipStack::Element::invertShapeFillType() {
20 switch (fType) {
21 case kRect_Type:
22 fPath.reset();
23 fPath.addRect(fRect);
24 fPath.setFillType(SkPath::kInverseWinding_FillType);
25 fType = kPath_Type;
26 break;
27 case kPath_Type:
28 fPath.toggleInverseFillType();
29 case kEmpty_Type:
30 break;
31 }
32}
33
bsalomon@google.com8a98e3b2012-11-29 21:05:13 +000034void SkClipStack::Element::checkEmpty() const {
35 SkASSERT(fFiniteBound.isEmpty());
36 SkASSERT(kNormal_BoundsType == fFiniteBoundType);
37 SkASSERT(!fIsIntersectionOfRects);
38 SkASSERT(kEmptyGenID == fGenID);
39 SkASSERT(fPath.isEmpty());
40}
reed@google.com5c3d1472011-02-22 19:12:23 +000041
bsalomon@google.com8a98e3b2012-11-29 21:05:13 +000042bool SkClipStack::Element::canBeIntersectedInPlace(int saveCount, SkRegion::Op op) const {
43 if (kEmpty_Type == fType &&
44 (SkRegion::kDifference_Op == op || SkRegion::kIntersect_Op == op)) {
45 return true;
46 }
47 // Only clips within the same save/restore frame (as captured by
48 // the save count) can be merged
49 return fSaveCount == saveCount &&
50 SkRegion::kIntersect_Op == op &&
51 (SkRegion::kIntersect_Op == fOp || SkRegion::kReplace_Op == fOp);
52}
robertphillips@google.com607fe072012-07-24 13:54:00 +000053
bsalomon@google.com8a98e3b2012-11-29 21:05:13 +000054bool SkClipStack::Element::rectRectIntersectAllowed(const SkRect& newR, bool newAA) const {
55 SkASSERT(kRect_Type == fType);
56
57 if (fDoAA == newAA) {
58 // if the AA setting is the same there is no issue
59 return true;
robertphillips@google.com607fe072012-07-24 13:54:00 +000060 }
61
bsalomon@google.com8a98e3b2012-11-29 21:05:13 +000062 if (!SkRect::Intersects(fRect, newR)) {
63 // The calling code will correctly set the result to the empty clip
64 return true;
robertphillips@google.com607fe072012-07-24 13:54:00 +000065 }
66
bsalomon@google.com8a98e3b2012-11-29 21:05:13 +000067 if (fRect.contains(newR)) {
68 // if the new rect carves out a portion of the old one there is no
69 // issue
70 return true;
robertphillips@google.com607fe072012-07-24 13:54:00 +000071 }
72
bsalomon@google.com8a98e3b2012-11-29 21:05:13 +000073 // So either the two overlap in some complex manner or newR contains oldR.
74 // In the first, case the edges will require different AA. In the second,
75 // the AA setting that would be carried forward is incorrect (e.g., oldR
76 // is AA while newR is BW but since newR contains oldR, oldR will be
77 // drawn BW) since the new AA setting will predominate.
78 return false;
79}
robertphillips@google.com607fe072012-07-24 13:54:00 +000080
bsalomon@google.com8a98e3b2012-11-29 21:05:13 +000081// a mirror of combineBoundsRevDiff
82void SkClipStack::Element::combineBoundsDiff(FillCombo combination, const SkRect& prevFinite) {
83 switch (combination) {
84 case kInvPrev_InvCur_FillCombo:
85 // In this case the only pixels that can remain set
86 // are inside the current clip rect since the extensions
87 // to infinity of both clips cancel out and whatever
88 // is outside of the current clip is removed
robertphillips@google.com607fe072012-07-24 13:54:00 +000089 fFiniteBoundType = kNormal_BoundsType;
bsalomon@google.com8a98e3b2012-11-29 21:05:13 +000090 break;
91 case kInvPrev_Cur_FillCombo:
92 // In this case the current op is finite so the only pixels
93 // that aren't set are whatever isn't set in the previous
94 // clip and whatever this clip carves out
95 fFiniteBound.join(prevFinite);
96 fFiniteBoundType = kInsideOut_BoundsType;
97 break;
98 case kPrev_InvCur_FillCombo:
99 // In this case everything outside of this clip's bound
100 // is erased, so the only pixels that can remain set
101 // occur w/in the intersection of the two finite bounds
102 if (!fFiniteBound.intersect(prevFinite)) {
103 fFiniteBound.setEmpty();
104 fGenID = kEmptyGenID;
robertphillips@google.com4c2a2f72012-07-24 22:07:50 +0000105 }
bsalomon@google.com8a98e3b2012-11-29 21:05:13 +0000106 fFiniteBoundType = kNormal_BoundsType;
107 break;
108 case kPrev_Cur_FillCombo:
109 // The most conservative result bound is that of the
110 // prior clip. This could be wildly incorrect if the
111 // second clip either exactly matches the first clip
112 // (which should yield the empty set) or reduces the
113 // size of the prior bound (e.g., if the second clip
114 // exactly matched the bottom half of the prior clip).
115 // We ignore these two possibilities.
116 fFiniteBound = prevFinite;
117 break;
118 default:
119 SkDEBUGFAIL("SkClipStack::Element::combineBoundsDiff Invalid fill combination");
120 break;
121 }
122}
robertphillips@google.com4c2a2f72012-07-24 22:07:50 +0000123
bsalomon@google.com8a98e3b2012-11-29 21:05:13 +0000124void SkClipStack::Element::combineBoundsXOR(int combination, const SkRect& prevFinite) {
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000125
bsalomon@google.com8a98e3b2012-11-29 21:05:13 +0000126 switch (combination) {
127 case kInvPrev_Cur_FillCombo: // fall through
128 case kPrev_InvCur_FillCombo:
129 // With only one of the clips inverted the result will always
130 // extend to infinity. The only pixels that may be un-writeable
131 // lie within the union of the two finite bounds
132 fFiniteBound.join(prevFinite);
133 fFiniteBoundType = kInsideOut_BoundsType;
134 break;
135 case kInvPrev_InvCur_FillCombo:
136 // The only pixels that can survive are within the
137 // union of the two bounding boxes since the extensions
138 // to infinity of both clips cancel out
139 // fall through!
140 case kPrev_Cur_FillCombo:
141 // The most conservative bound for xor is the
142 // union of the two bounds. If the two clips exactly overlapped
143 // the xor could yield the empty set. Similarly the xor
144 // could reduce the size of the original clip's bound (e.g.,
145 // if the second clip exactly matched the bottom half of the
146 // first clip). We ignore these two cases.
147 fFiniteBound.join(prevFinite);
148 fFiniteBoundType = kNormal_BoundsType;
149 break;
150 default:
151 SkDEBUGFAIL("SkClipStack::Element::combineBoundsXOR Invalid fill combination");
152 break;
153 }
154}
robertphillips@google.com607fe072012-07-24 13:54:00 +0000155
bsalomon@google.com8a98e3b2012-11-29 21:05:13 +0000156// a mirror of combineBoundsIntersection
157void SkClipStack::Element::combineBoundsUnion(int combination, const SkRect& prevFinite) {
158
159 switch (combination) {
160 case kInvPrev_InvCur_FillCombo:
161 if (!fFiniteBound.intersect(prevFinite)) {
162 fFiniteBound.setEmpty();
163 fGenID = kWideOpenGenID;
robertphillips@google.com607fe072012-07-24 13:54:00 +0000164 }
bsalomon@google.com8a98e3b2012-11-29 21:05:13 +0000165 fFiniteBoundType = kInsideOut_BoundsType;
166 break;
167 case kInvPrev_Cur_FillCombo:
168 // The only pixels that won't be drawable are inside
169 // the prior clip's finite bound
170 fFiniteBound = prevFinite;
171 fFiniteBoundType = kInsideOut_BoundsType;
172 break;
173 case kPrev_InvCur_FillCombo:
174 // The only pixels that won't be drawable are inside
175 // this clip's finite bound
176 break;
177 case kPrev_Cur_FillCombo:
178 fFiniteBound.join(prevFinite);
179 break;
180 default:
181 SkDEBUGFAIL("SkClipStack::Element::combineBoundsUnion Invalid fill combination");
182 break;
183 }
184}
185
186// a mirror of combineBoundsUnion
187void SkClipStack::Element::combineBoundsIntersection(int combination, const SkRect& prevFinite) {
188
189 switch (combination) {
190 case kInvPrev_InvCur_FillCombo:
191 // The only pixels that aren't writable in this case
192 // occur in the union of the two finite bounds
193 fFiniteBound.join(prevFinite);
194 fFiniteBoundType = kInsideOut_BoundsType;
195 break;
196 case kInvPrev_Cur_FillCombo:
197 // In this case the only pixels that will remain writeable
198 // are within the current clip
199 break;
200 case kPrev_InvCur_FillCombo:
201 // In this case the only pixels that will remain writeable
202 // are with the previous clip
203 fFiniteBound = prevFinite;
204 fFiniteBoundType = kNormal_BoundsType;
205 break;
206 case kPrev_Cur_FillCombo:
207 if (!fFiniteBound.intersect(prevFinite)) {
208 fFiniteBound.setEmpty();
209 fGenID = kEmptyGenID;
210 }
211 break;
212 default:
213 SkDEBUGFAIL("SkClipStack::Element::combineBoundsIntersection Invalid fill combination");
214 break;
215 }
216}
217
218// a mirror of combineBoundsDiff
219void SkClipStack::Element::combineBoundsRevDiff(int combination, const SkRect& prevFinite) {
220
221 switch (combination) {
222 case kInvPrev_InvCur_FillCombo:
223 // The only pixels that can survive are in the
224 // previous bound since the extensions to infinity in
225 // both clips cancel out
226 fFiniteBound = prevFinite;
227 fFiniteBoundType = kNormal_BoundsType;
228 break;
229 case kInvPrev_Cur_FillCombo:
230 if (!fFiniteBound.intersect(prevFinite)) {
231 fFiniteBound.setEmpty();
232 fGenID = kEmptyGenID;
233 }
234 fFiniteBoundType = kNormal_BoundsType;
235 break;
236 case kPrev_InvCur_FillCombo:
237 fFiniteBound.join(prevFinite);
238 fFiniteBoundType = kInsideOut_BoundsType;
239 break;
240 case kPrev_Cur_FillCombo:
241 // Fall through - as with the kDifference_Op case, the
242 // most conservative result bound is the bound of the
243 // current clip. The prior clip could reduce the size of this
244 // bound (as in the kDifference_Op case) but we are ignoring
245 // those cases.
246 break;
247 default:
248 SkDEBUGFAIL("SkClipStack::Element::combineBoundsRevDiff Invalid fill combination");
249 break;
250 }
251}
252
253void SkClipStack::Element::updateBoundAndGenID(const Element* prior) {
254 // We set this first here but we may overwrite it later if we determine that the clip is
255 // either wide-open or empty.
256 fGenID = GetNextGenID();
257
258 // First, optimistically update the current Element's bound information
259 // with the current clip's bound
260 fIsIntersectionOfRects = false;
261 if (kRect_Type == fType) {
262 fFiniteBound = fRect;
263 fFiniteBoundType = kNormal_BoundsType;
264
265 if (SkRegion::kReplace_Op == fOp ||
266 (SkRegion::kIntersect_Op == fOp && NULL == prior) ||
267 (SkRegion::kIntersect_Op == fOp && prior->fIsIntersectionOfRects &&
268 prior->rectRectIntersectAllowed(fRect, fDoAA))) {
269 fIsIntersectionOfRects = true;
robertphillips@google.com607fe072012-07-24 13:54:00 +0000270 }
271
bsalomon@google.com8a98e3b2012-11-29 21:05:13 +0000272 } else {
273 SkASSERT(kPath_Type == fType);
robertphillips@google.com607fe072012-07-24 13:54:00 +0000274
bsalomon@google.com8a98e3b2012-11-29 21:05:13 +0000275 fFiniteBound = fPath.getBounds();
robertphillips@google.com607fe072012-07-24 13:54:00 +0000276
bsalomon@google.com8a98e3b2012-11-29 21:05:13 +0000277 if (fPath.isInverseFillType()) {
278 fFiniteBoundType = kInsideOut_BoundsType;
robertphillips@google.com607fe072012-07-24 13:54:00 +0000279 } else {
bsalomon@google.com8a98e3b2012-11-29 21:05:13 +0000280 fFiniteBoundType = kNormal_BoundsType;
robertphillips@google.com607fe072012-07-24 13:54:00 +0000281 }
282 }
bsalomon@google.com8a98e3b2012-11-29 21:05:13 +0000283
284 if (!fDoAA) {
285 // Here we mimic a non-anti-aliased scanline system. If there is
286 // no anti-aliasing we can integerize the bounding box to exclude
287 // fractional parts that won't be rendered.
288 // Note: the left edge is handled slightly differently below. We
289 // are a bit more generous in the rounding since we don't want to
290 // risk missing the left pixels when fLeft is very close to .5
291 fFiniteBound.set(SkIntToScalar(SkScalarFloorToInt(fFiniteBound.fLeft+0.45f)),
292 SkIntToScalar(SkScalarRound(fFiniteBound.fTop)),
293 SkIntToScalar(SkScalarRound(fFiniteBound.fRight)),
294 SkIntToScalar(SkScalarRound(fFiniteBound.fBottom)));
295 }
296
297 // Now determine the previous Element's bound information taking into
298 // account that there may be no previous clip
299 SkRect prevFinite;
300 SkClipStack::BoundsType prevType;
301
302 if (NULL == prior) {
303 // no prior clip means the entire plane is writable
304 prevFinite.setEmpty(); // there are no pixels that cannot be drawn to
305 prevType = kInsideOut_BoundsType;
306 } else {
307 prevFinite = prior->fFiniteBound;
308 prevType = prior->fFiniteBoundType;
309 }
310
311 FillCombo combination = kPrev_Cur_FillCombo;
312 if (kInsideOut_BoundsType == fFiniteBoundType) {
313 combination = (FillCombo) (combination | 0x01);
314 }
315 if (kInsideOut_BoundsType == prevType) {
316 combination = (FillCombo) (combination | 0x02);
317 }
318
319 SkASSERT(kInvPrev_InvCur_FillCombo == combination ||
320 kInvPrev_Cur_FillCombo == combination ||
321 kPrev_InvCur_FillCombo == combination ||
322 kPrev_Cur_FillCombo == combination);
323
324 // Now integrate with clip with the prior clips
325 switch (fOp) {
326 case SkRegion::kDifference_Op:
327 this->combineBoundsDiff(combination, prevFinite);
328 break;
329 case SkRegion::kXOR_Op:
330 this->combineBoundsXOR(combination, prevFinite);
331 break;
332 case SkRegion::kUnion_Op:
333 this->combineBoundsUnion(combination, prevFinite);
334 break;
335 case SkRegion::kIntersect_Op:
336 this->combineBoundsIntersection(combination, prevFinite);
337 break;
338 case SkRegion::kReverseDifference_Op:
339 this->combineBoundsRevDiff(combination, prevFinite);
340 break;
341 case SkRegion::kReplace_Op:
342 // Replace just ignores everything prior
343 // The current clip's bound information is already filled in
344 // so nothing to do
345 break;
346 default:
347 SkDebugf("SkRegion::Op error/n");
348 SkASSERT(0);
349 break;
350 }
351}
reed@google.com5c3d1472011-02-22 19:12:23 +0000352
bsalomon@google.com9128edc2012-11-29 18:58:19 +0000353// This constant determines how many Element's are allocated together as a block in
robertphillips@google.comf9a90842012-08-17 14:25:43 +0000354// the deque. As such it needs to balance allocating too much memory vs.
355// incurring allocation/deallocation thrashing. It should roughly correspond to
356// the deepest save/restore stack we expect to see.
bsalomon@google.com9128edc2012-11-29 18:58:19 +0000357static const int kDefaultElementAllocCnt = 8;
robertphillips@google.com46f93502012-08-07 15:38:08 +0000358
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000359SkClipStack::SkClipStack()
bsalomon@google.com9128edc2012-11-29 18:58:19 +0000360 : fDeque(sizeof(Element), kDefaultElementAllocCnt)
robertphillips@google.com46f93502012-08-07 15:38:08 +0000361 , fSaveCount(0) {
reed@google.com5c3d1472011-02-22 19:12:23 +0000362}
363
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000364SkClipStack::SkClipStack(const SkClipStack& b)
bsalomon@google.com9128edc2012-11-29 18:58:19 +0000365 : fDeque(sizeof(Element), kDefaultElementAllocCnt) {
vandebo@chromium.org1e1c36f2011-05-03 16:26:09 +0000366 *this = b;
367}
368
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000369SkClipStack::SkClipStack(const SkRect& r)
bsalomon@google.com9128edc2012-11-29 18:58:19 +0000370 : fDeque(sizeof(Element), kDefaultElementAllocCnt)
robertphillips@google.com46f93502012-08-07 15:38:08 +0000371 , fSaveCount(0) {
robertphillips@google.comcc6493b2012-07-26 18:39:13 +0000372 if (!r.isEmpty()) {
373 this->clipDevRect(r, SkRegion::kReplace_Op, false);
374 }
375}
376
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000377SkClipStack::SkClipStack(const SkIRect& r)
bsalomon@google.com9128edc2012-11-29 18:58:19 +0000378 : fDeque(sizeof(Element), kDefaultElementAllocCnt)
robertphillips@google.com46f93502012-08-07 15:38:08 +0000379 , fSaveCount(0) {
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000380 if (!r.isEmpty()) {
381 SkRect temp;
382 temp.set(r);
383 this->clipDevRect(temp, SkRegion::kReplace_Op, false);
384 }
385}
386
vandebo@chromium.org610f7162012-03-14 18:34:15 +0000387SkClipStack::~SkClipStack() {
388 reset();
389}
390
vandebo@chromium.org1e1c36f2011-05-03 16:26:09 +0000391SkClipStack& SkClipStack::operator=(const SkClipStack& b) {
392 if (this == &b) {
393 return *this;
394 }
395 reset();
396
397 fSaveCount = b.fSaveCount;
398 SkDeque::F2BIter recIter(b.fDeque);
bsalomon@google.com9128edc2012-11-29 18:58:19 +0000399 for (const Element* element = (const Element*)recIter.next();
400 element != NULL;
401 element = (const Element*)recIter.next()) {
402 new (fDeque.push_back()) Element(*element);
vandebo@chromium.org1e1c36f2011-05-03 16:26:09 +0000403 }
404
405 return *this;
406}
407
408bool SkClipStack::operator==(const SkClipStack& b) const {
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000409 if (fSaveCount != b.fSaveCount ||
robertphillips@google.com46f93502012-08-07 15:38:08 +0000410 fDeque.count() != b.fDeque.count()) {
vandebo@chromium.org1e1c36f2011-05-03 16:26:09 +0000411 return false;
412 }
413 SkDeque::F2BIter myIter(fDeque);
414 SkDeque::F2BIter bIter(b.fDeque);
bsalomon@google.com9128edc2012-11-29 18:58:19 +0000415 const Element* myElement = (const Element*)myIter.next();
416 const Element* bElement = (const Element*)bIter.next();
vandebo@chromium.org1e1c36f2011-05-03 16:26:09 +0000417
bsalomon@google.com9128edc2012-11-29 18:58:19 +0000418 while (myElement != NULL && bElement != NULL) {
419 if (*myElement != *bElement) {
vandebo@chromium.org1e1c36f2011-05-03 16:26:09 +0000420 return false;
421 }
bsalomon@google.com9128edc2012-11-29 18:58:19 +0000422 myElement = (const Element*)myIter.next();
423 bElement = (const Element*)bIter.next();
vandebo@chromium.org1e1c36f2011-05-03 16:26:09 +0000424 }
bsalomon@google.com9128edc2012-11-29 18:58:19 +0000425 return myElement == NULL && bElement == NULL;
vandebo@chromium.org1e1c36f2011-05-03 16:26:09 +0000426}
427
reed@google.com5c3d1472011-02-22 19:12:23 +0000428void SkClipStack::reset() {
vandebo@chromium.org610f7162012-03-14 18:34:15 +0000429 // We used a placement new for each object in fDeque, so we're responsible
430 // for calling the destructor on each of them as well.
431 while (!fDeque.empty()) {
bsalomon@google.com9128edc2012-11-29 18:58:19 +0000432 Element* element = (Element*)fDeque.back();
433 element->~Element();
vandebo@chromium.org610f7162012-03-14 18:34:15 +0000434 fDeque.pop_back();
435 }
reed@google.com5c3d1472011-02-22 19:12:23 +0000436
437 fSaveCount = 0;
438}
439
440void SkClipStack::save() {
441 fSaveCount += 1;
442}
443
444void SkClipStack::restore() {
445 fSaveCount -= 1;
commit-bot@chromium.org6fbe54c2013-06-11 11:01:48 +0000446 restoreTo(fSaveCount);
447}
448
449void SkClipStack::restoreTo(int saveCount) {
reed@google.com5c3d1472011-02-22 19:12:23 +0000450 while (!fDeque.empty()) {
bsalomon@google.com9128edc2012-11-29 18:58:19 +0000451 Element* element = (Element*)fDeque.back();
commit-bot@chromium.org6fbe54c2013-06-11 11:01:48 +0000452 if (element->fSaveCount <= saveCount) {
reed@google.com5c3d1472011-02-22 19:12:23 +0000453 break;
454 }
bsalomon@google.com9128edc2012-11-29 18:58:19 +0000455 this->purgeClip(element);
456 element->~Element();
reed@google.com5c3d1472011-02-22 19:12:23 +0000457 fDeque.pop_back();
458 }
459}
460
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000461void SkClipStack::getBounds(SkRect* canvFiniteBound,
robertphillips@google.com4c2a2f72012-07-24 22:07:50 +0000462 BoundsType* boundType,
463 bool* isIntersectionOfRects) const {
robertphillips@google.com7b112892012-07-31 15:18:21 +0000464 SkASSERT(NULL != canvFiniteBound && NULL != boundType);
robertphillips@google.com607fe072012-07-24 13:54:00 +0000465
bsalomon@google.com9128edc2012-11-29 18:58:19 +0000466 Element* element = (Element*)fDeque.back();
robertphillips@google.com607fe072012-07-24 13:54:00 +0000467
bsalomon@google.com9128edc2012-11-29 18:58:19 +0000468 if (NULL == element) {
robertphillips@google.com607fe072012-07-24 13:54:00 +0000469 // the clip is wide open - the infinite plane w/ no pixels un-writeable
robertphillips@google.com7b112892012-07-31 15:18:21 +0000470 canvFiniteBound->setEmpty();
robertphillips@google.com607fe072012-07-24 13:54:00 +0000471 *boundType = kInsideOut_BoundsType;
robertphillips@google.com4c2a2f72012-07-24 22:07:50 +0000472 if (NULL != isIntersectionOfRects) {
473 *isIntersectionOfRects = false;
474 }
robertphillips@google.com607fe072012-07-24 13:54:00 +0000475 return;
476 }
477
bsalomon@google.com9128edc2012-11-29 18:58:19 +0000478 *canvFiniteBound = element->fFiniteBound;
479 *boundType = element->fFiniteBoundType;
robertphillips@google.com4c2a2f72012-07-24 22:07:50 +0000480 if (NULL != isIntersectionOfRects) {
bsalomon@google.com9128edc2012-11-29 18:58:19 +0000481 *isIntersectionOfRects = element->fIsIntersectionOfRects;
robertphillips@google.com4c2a2f72012-07-24 22:07:50 +0000482 }
robertphillips@google.com607fe072012-07-24 13:54:00 +0000483}
484
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000485bool SkClipStack::intersectRectWithClip(SkRect* rect) const {
486 SkASSERT(NULL != rect);
487
488 SkRect bounds;
489 SkClipStack::BoundsType bt;
490 this->getBounds(&bounds, &bt);
491 if (bt == SkClipStack::kInsideOut_BoundsType) {
492 if (bounds.contains(*rect)) {
493 return false;
494 } else {
495 // If rect's x values are both within bound's x range we
496 // could clip here. Same for y. But we don't bother to check.
497 return true;
498 }
skia.committer@gmail.com5b6f9162012-10-12 02:01:15 +0000499 } else {
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000500 return rect->intersect(bounds);
501 }
502}
503
junov@chromium.org8cdf0f52012-12-12 17:58:15 +0000504bool SkClipStack::quickContains(const SkRect& rect) const {
505
506 Iter iter(*this, Iter::kTop_IterStart);
507 const Element* element = iter.prev();
508 while (element != NULL) {
509 if (SkRegion::kIntersect_Op != element->getOp() && SkRegion::kReplace_Op != element->getOp())
510 return false;
511 if (element->isInverseFilled()) {
512 // Part of 'rect' could be trimmed off by the inverse-filled clip element
513 if (SkRect::Intersects(element->getBounds(), rect)) {
514 return false;
515 }
516 } else {
517 if (!element->contains(rect)) {
518 return false;
519 }
520 }
521 if (SkRegion::kReplace_Op == element->getOp()) {
522 break;
523 }
524 element = iter.prev();
525 }
526 return true;
527}
528
reed@google.com00177082011-10-12 14:34:30 +0000529void SkClipStack::clipDevRect(const SkRect& rect, SkRegion::Op op, bool doAA) {
robertphillips@google.com4c2a2f72012-07-24 22:07:50 +0000530
robertphillips@google.com63ae1cf2012-08-17 13:53:05 +0000531 // Use reverse iterator instead of back because Rect path may need previous
robertphillips@google.com4c2a2f72012-07-24 22:07:50 +0000532 SkDeque::Iter iter(fDeque, SkDeque::Iter::kBack_IterStart);
bsalomon@google.com9128edc2012-11-29 18:58:19 +0000533 Element* element = (Element*) iter.prev();
robertphillips@google.com4c2a2f72012-07-24 22:07:50 +0000534
commit-bot@chromium.org6fbe54c2013-06-11 11:01:48 +0000535 if (NULL != element) {
536 if (element->canBeIntersectedInPlace(fSaveCount, op)) {
537 switch (element->fType) {
538 case Element::kEmpty_Type:
539 element->checkEmpty();
540 return;
541 case Element::kRect_Type:
542 if (element->rectRectIntersectAllowed(rect, doAA)) {
543 this->purgeClip(element);
544 if (!element->fRect.intersect(rect)) {
545 element->setEmpty();
546 return;
547 }
548
549 element->fDoAA = doAA;
550 Element* prev = (Element*) iter.prev();
551 element->updateBoundAndGenID(prev);
552 return;
553 }
554 break;
555 case Element::kPath_Type:
556 if (!SkRect::Intersects(element->fPath.getBounds(), rect)) {
557 this->purgeClip(element);
bsalomon@google.com9128edc2012-11-29 18:58:19 +0000558 element->setEmpty();
robertphillips@google.com08eacc12012-08-02 12:49:00 +0000559 return;
560 }
commit-bot@chromium.org6fbe54c2013-06-11 11:01:48 +0000561 break;
562 }
563 } else if (SkRegion::kReplace_Op == op) {
564 this->restoreTo(fSaveCount - 1);
565 element = (Element*) fDeque.back();
reed@google.com5c3d1472011-02-22 19:12:23 +0000566 }
567 }
bsalomon@google.com9128edc2012-11-29 18:58:19 +0000568 new (fDeque.push_back()) Element(fSaveCount, rect, op, doAA);
569 ((Element*) fDeque.back())->updateBoundAndGenID(element);
robertphillips@google.com46f93502012-08-07 15:38:08 +0000570
bsalomon@google.com9128edc2012-11-29 18:58:19 +0000571 if (element && element->fSaveCount == fSaveCount) {
572 this->purgeClip(element);
robertphillips@google.com46f93502012-08-07 15:38:08 +0000573 }
reed@google.com5c3d1472011-02-22 19:12:23 +0000574}
575
reed@google.com00177082011-10-12 14:34:30 +0000576void SkClipStack::clipDevPath(const SkPath& path, SkRegion::Op op, bool doAA) {
tomhudson@google.com4c433722012-03-09 16:48:20 +0000577 SkRect alt;
junov@chromium.orgedf32d52012-12-10 14:57:54 +0000578 if (path.isRect(&alt) && !path.isInverseFillType()) {
tomhudson@google.com4c433722012-03-09 16:48:20 +0000579 return this->clipDevRect(alt, op, doAA);
580 }
robertphillips@google.com46f93502012-08-07 15:38:08 +0000581
bsalomon@google.com9128edc2012-11-29 18:58:19 +0000582 Element* element = (Element*)fDeque.back();
commit-bot@chromium.org6fbe54c2013-06-11 11:01:48 +0000583 if (NULL != element) {
584 if (element->canBeIntersectedInPlace(fSaveCount, op)) {
585 const SkRect& pathBounds = path.getBounds();
586 switch (element->fType) {
587 case Element::kEmpty_Type:
588 element->checkEmpty();
reed@google.com5c3d1472011-02-22 19:12:23 +0000589 return;
commit-bot@chromium.org6fbe54c2013-06-11 11:01:48 +0000590 case Element::kRect_Type:
591 if (!SkRect::Intersects(element->fRect, pathBounds)) {
592 this->purgeClip(element);
593 element->setEmpty();
594 return;
595 }
596 break;
597 case Element::kPath_Type:
598 if (!SkRect::Intersects(element->fPath.getBounds(), pathBounds)) {
599 this->purgeClip(element);
600 element->setEmpty();
601 return;
602 }
603 break;
604 }
605 } else if (SkRegion::kReplace_Op == op) {
606 this->restoreTo(fSaveCount - 1);
607 element = (Element*) fDeque.back();
reed@google.com5c3d1472011-02-22 19:12:23 +0000608 }
609 }
bsalomon@google.com9128edc2012-11-29 18:58:19 +0000610 new (fDeque.push_back()) Element(fSaveCount, path, op, doAA);
611 ((Element*) fDeque.back())->updateBoundAndGenID(element);
robertphillips@google.com46f93502012-08-07 15:38:08 +0000612
bsalomon@google.com9128edc2012-11-29 18:58:19 +0000613 if (element && element->fSaveCount == fSaveCount) {
614 this->purgeClip(element);
robertphillips@google.com46f93502012-08-07 15:38:08 +0000615 }
reed@google.com5c3d1472011-02-22 19:12:23 +0000616}
617
reed@google.com0557d9e2012-08-16 15:59:59 +0000618void SkClipStack::clipEmpty() {
robertphillips@google.com63ae1cf2012-08-17 13:53:05 +0000619
bsalomon@google.com9128edc2012-11-29 18:58:19 +0000620 Element* element = (Element*) fDeque.back();
robertphillips@google.com63ae1cf2012-08-17 13:53:05 +0000621
bsalomon@google.com9128edc2012-11-29 18:58:19 +0000622 if (element && element->canBeIntersectedInPlace(fSaveCount, SkRegion::kIntersect_Op)) {
bsalomon@google.com417bc132012-11-29 19:16:32 +0000623 switch (element->fType) {
624 case Element::kEmpty_Type:
bsalomon@google.com9128edc2012-11-29 18:58:19 +0000625 element->checkEmpty();
reed@google.com0557d9e2012-08-16 15:59:59 +0000626 return;
bsalomon@google.com417bc132012-11-29 19:16:32 +0000627 case Element::kRect_Type:
628 case Element::kPath_Type:
bsalomon@google.com9128edc2012-11-29 18:58:19 +0000629 this->purgeClip(element);
630 element->setEmpty();
reed@google.com0557d9e2012-08-16 15:59:59 +0000631 return;
632 }
633 }
bsalomon@google.com9128edc2012-11-29 18:58:19 +0000634 new (fDeque.push_back()) Element(fSaveCount);
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000635
bsalomon@google.com9128edc2012-11-29 18:58:19 +0000636 if (element && element->fSaveCount == fSaveCount) {
637 this->purgeClip(element);
reed@google.com0557d9e2012-08-16 15:59:59 +0000638 }
bsalomon@google.com9128edc2012-11-29 18:58:19 +0000639 ((Element*)fDeque.back())->fGenID = kEmptyGenID;
reed@google.com0557d9e2012-08-16 15:59:59 +0000640}
641
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000642bool SkClipStack::isWideOpen() const {
robertphillips@google.comcc6493b2012-07-26 18:39:13 +0000643 if (0 == fDeque.count()) {
644 return true;
645 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000646
bsalomon@google.com9128edc2012-11-29 18:58:19 +0000647 const Element* back = (const Element*) fDeque.back();
bsalomon@google.comedb26fd2012-11-28 14:42:41 +0000648 return kWideOpenGenID == back->fGenID ||
649 (kInsideOut_BoundsType == back->fFiniteBoundType && back->fFiniteBound.isEmpty());
robertphillips@google.comcc6493b2012-07-26 18:39:13 +0000650}
651
reed@google.com5c3d1472011-02-22 19:12:23 +0000652///////////////////////////////////////////////////////////////////////////////
653
robertphillips@google.com5836b6d2012-07-18 12:06:15 +0000654SkClipStack::Iter::Iter() : fStack(NULL) {
bsalomon@google.comd302f142011-03-03 13:54:13 +0000655}
656
robertphillips@google.com5836b6d2012-07-18 12:06:15 +0000657SkClipStack::Iter::Iter(const SkClipStack& stack, IterStart startLoc)
658 : fStack(&stack) {
robertphillips@google.com52cb2c72012-07-16 18:52:29 +0000659 this->reset(stack, startLoc);
reed@google.com5c3d1472011-02-22 19:12:23 +0000660}
661
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000662const SkClipStack::Element* SkClipStack::Iter::next() {
663 return (const SkClipStack::Element*)fIter.next();
reed@google.com5c3d1472011-02-22 19:12:23 +0000664}
bsalomon@google.comd302f142011-03-03 13:54:13 +0000665
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000666const SkClipStack::Element* SkClipStack::Iter::prev() {
667 return (const SkClipStack::Element*)fIter.prev();
robertphillips@google.com52cb2c72012-07-16 18:52:29 +0000668}
669
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000670const SkClipStack::Element* SkClipStack::Iter::skipToTopmost(SkRegion::Op op) {
robertphillips@google.com5836b6d2012-07-18 12:06:15 +0000671
672 if (NULL == fStack) {
673 return NULL;
674 }
675
676 fIter.reset(fStack->fDeque, SkDeque::Iter::kBack_IterStart);
677
bsalomon@google.com9128edc2012-11-29 18:58:19 +0000678 const SkClipStack::Element* element = NULL;
robertphillips@google.com5836b6d2012-07-18 12:06:15 +0000679
bsalomon@google.com9128edc2012-11-29 18:58:19 +0000680 for (element = (const SkClipStack::Element*) fIter.prev();
681 NULL != element;
682 element = (const SkClipStack::Element*) fIter.prev()) {
robertphillips@google.com5836b6d2012-07-18 12:06:15 +0000683
bsalomon@google.com9128edc2012-11-29 18:58:19 +0000684 if (op == element->fOp) {
robertphillips@google.com5836b6d2012-07-18 12:06:15 +0000685 // The Deque's iterator is actually one pace ahead of the
bsalomon@google.com9128edc2012-11-29 18:58:19 +0000686 // returned value. So while "element" is the element we want to
robertphillips@google.com5836b6d2012-07-18 12:06:15 +0000687 // return, the iterator is actually pointing at (and will
688 // return on the next "next" or "prev" call) the element
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000689 // in front of it in the deque. Bump the iterator forward a
robertphillips@google.com5836b6d2012-07-18 12:06:15 +0000690 // step so we get the expected result.
691 if (NULL == fIter.next()) {
692 // The reverse iterator has run off the front of the deque
693 // (i.e., the "op" clip is the first clip) and can't
694 // recover. Reset the iterator to start at the front.
695 fIter.reset(fStack->fDeque, SkDeque::Iter::kFront_IterStart);
696 }
697 break;
698 }
699 }
700
bsalomon@google.com9128edc2012-11-29 18:58:19 +0000701 if (NULL == element) {
robertphillips@google.com5836b6d2012-07-18 12:06:15 +0000702 // There were no "op" clips
703 fIter.reset(fStack->fDeque, SkDeque::Iter::kFront_IterStart);
704 }
705
706 return this->next();
707}
708
robertphillips@google.com52cb2c72012-07-16 18:52:29 +0000709void SkClipStack::Iter::reset(const SkClipStack& stack, IterStart startLoc) {
robertphillips@google.coma6f11c42012-07-23 17:39:44 +0000710 fStack = &stack;
robertphillips@google.com52cb2c72012-07-16 18:52:29 +0000711 fIter.reset(stack.fDeque, static_cast<SkDeque::Iter::IterStart>(startLoc));
bsalomon@google.comd302f142011-03-03 13:54:13 +0000712}
robertphillips@google.com607fe072012-07-24 13:54:00 +0000713
714// helper method
715void SkClipStack::getConservativeBounds(int offsetX,
716 int offsetY,
717 int maxWidth,
718 int maxHeight,
robertphillips@google.com7b112892012-07-31 15:18:21 +0000719 SkRect* devBounds,
robertphillips@google.com4c2a2f72012-07-24 22:07:50 +0000720 bool* isIntersectionOfRects) const {
robertphillips@google.com7b112892012-07-31 15:18:21 +0000721 SkASSERT(NULL != devBounds);
robertphillips@google.com607fe072012-07-24 13:54:00 +0000722
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000723 devBounds->setLTRB(0, 0,
robertphillips@google.com7b112892012-07-31 15:18:21 +0000724 SkIntToScalar(maxWidth), SkIntToScalar(maxHeight));
robertphillips@google.com607fe072012-07-24 13:54:00 +0000725
726 SkRect temp;
727 SkClipStack::BoundsType boundType;
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000728
robertphillips@google.com7b112892012-07-31 15:18:21 +0000729 // temp starts off in canvas space here
robertphillips@google.com4c2a2f72012-07-24 22:07:50 +0000730 this->getBounds(&temp, &boundType, isIntersectionOfRects);
robertphillips@google.com607fe072012-07-24 13:54:00 +0000731 if (SkClipStack::kInsideOut_BoundsType == boundType) {
732 return;
733 }
734
robertphillips@google.com7b112892012-07-31 15:18:21 +0000735 // but is converted to device space here
robertphillips@google.com607fe072012-07-24 13:54:00 +0000736 temp.offset(SkIntToScalar(offsetX), SkIntToScalar(offsetY));
737
robertphillips@google.com7b112892012-07-31 15:18:21 +0000738 if (!devBounds->intersect(temp)) {
739 devBounds->setEmpty();
robertphillips@google.com607fe072012-07-24 13:54:00 +0000740 }
741}
robertphillips@google.com46f93502012-08-07 15:38:08 +0000742
743void SkClipStack::addPurgeClipCallback(PFPurgeClipCB callback, void* data) const {
744 ClipCallbackData temp = { callback, data };
745 fCallbackData.append(1, &temp);
746}
747
748void SkClipStack::removePurgeClipCallback(PFPurgeClipCB callback, void* data) const {
749 ClipCallbackData temp = { callback, data };
750 int index = fCallbackData.find(temp);
751 if (index >= 0) {
752 fCallbackData.removeShuffle(index);
753 }
754}
755
bsalomon@google.com9128edc2012-11-29 18:58:19 +0000756// The clip state represented by 'element' will never be used again. Purge it.
757void SkClipStack::purgeClip(Element* element) {
758 SkASSERT(NULL != element);
759 if (element->fGenID >= 0 && element->fGenID < kFirstUnreservedGenID) {
bsalomon@google.comedb26fd2012-11-28 14:42:41 +0000760 return;
761 }
robertphillips@google.com46f93502012-08-07 15:38:08 +0000762
763 for (int i = 0; i < fCallbackData.count(); ++i) {
bsalomon@google.com9128edc2012-11-29 18:58:19 +0000764 (*fCallbackData[i].fCallback)(element->fGenID, fCallbackData[i].fData);
robertphillips@google.com46f93502012-08-07 15:38:08 +0000765 }
766
bsalomon@google.com9128edc2012-11-29 18:58:19 +0000767 // Invalidate element's gen ID so handlers can detect already handled records
768 element->fGenID = kInvalidGenID;
robertphillips@google.com46f93502012-08-07 15:38:08 +0000769}
770
771int32_t SkClipStack::GetNextGenID() {
bsalomon@google.comedb26fd2012-11-28 14:42:41 +0000772 // TODO: handle overflow.
robertphillips@google.com46f93502012-08-07 15:38:08 +0000773 return sk_atomic_inc(&gGenID);
774}
robertphillips@google.com73e71022012-08-09 18:10:49 +0000775
776int32_t SkClipStack::getTopmostGenID() const {
777
778 if (fDeque.empty()) {
779 return kInvalidGenID;
780 }
781
bsalomon@google.com9128edc2012-11-29 18:58:19 +0000782 Element* element = (Element*)fDeque.back();
783 return element->fGenID;
robertphillips@google.com73e71022012-08-09 18:10:49 +0000784}