blob: 1be1df7924cc2405b70ce1af795184b4d7b54ce8 [file] [log] [blame]
bsalomon@google.com170bd792012-12-05 22:26:11 +00001/*
csmartdalton77f2fae2016-08-08 09:55:06 -07002 * Copyright 2016 Google Inc.
bsalomon@google.com170bd792012-12-05 22:26:11 +00003 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#include "GrReducedClip.h"
csmartdaltonbde96c62016-08-31 12:54:46 -07009#include "GrAppliedClip.h"
csmartdaltoncbecb082016-07-22 08:59:08 -070010#include "GrClip.h"
csmartdaltonbde96c62016-08-31 12:54:46 -070011#include "GrColor.h"
12#include "GrContextPriv.h"
csmartdaltonbde96c62016-08-31 12:54:46 -070013#include "GrDrawingManager.h"
14#include "GrFixedClip.h"
15#include "GrPathRenderer.h"
Brian Salomon653f42f2018-07-10 10:07:31 -040016#include "GrRenderTargetContext.h"
17#include "GrRenderTargetContextPriv.h"
18#include "GrShape.h"
Chris Daltonbbfd5162017-11-07 13:35:22 -070019#include "GrStencilClip.h"
Brian Salomon653f42f2018-07-10 10:07:31 -040020#include "GrStencilSettings.h"
csmartdaltonbde96c62016-08-31 12:54:46 -070021#include "GrStyle.h"
22#include "GrUserStencilSettings.h"
Mike Reedebfce6d2016-12-12 10:02:12 -050023#include "SkClipOpPriv.h"
Chris Daltona32a3c32017-12-05 10:05:21 -070024#include "ccpr/GrCoverageCountingPathRenderer.h"
Ethan Nicholaseace9352018-10-15 20:09:54 +000025#include "effects/GrAARectEffect.h"
Chris Dalton584a79a2017-11-15 13:14:01 -070026#include "effects/GrConvexPolyEffect.h"
27#include "effects/GrRRectEffect.h"
csmartdaltoncbecb082016-07-22 08:59:08 -070028
csmartdalton5ecbbbe2016-08-23 13:26:40 -070029/**
30 * There are plenty of optimizations that could be added here. Maybe flips could be folded into
31 * earlier operations. Or would inserting flips and reversing earlier ops ever be a win? Perhaps
32 * for the case where the bounds are kInsideOut_BoundsType. We could restrict earlier operations
33 * based on later intersect operations, and perhaps remove intersect-rects. We could optionally
34 * take a rect in case the caller knows a bound on what is to be drawn through this clip.
35 */
csmartdaltonbf4a8f92016-09-06 10:01:06 -070036GrReducedClip::GrReducedClip(const SkClipStack& stack, const SkRect& queryBounds,
Ethan Nicholaseace9352018-10-15 20:09:54 +000037 const GrCaps* caps, int maxWindowRectangles, int maxAnalyticFPs,
38 int maxCCPRClipPaths)
39 : fCaps(caps)
Chris Daltona32a3c32017-12-05 10:05:21 -070040 , fMaxWindowRectangles(maxWindowRectangles)
41 , fMaxAnalyticFPs(maxAnalyticFPs)
Chris Dalton1dec19a2018-04-27 13:05:19 -060042 , fMaxCCPRClipPaths(maxCCPRClipPaths) {
csmartdaltoncbecb082016-07-22 08:59:08 -070043 SkASSERT(!queryBounds.isEmpty());
Chris Dalton584a79a2017-11-15 13:14:01 -070044 SkASSERT(fMaxWindowRectangles <= GrWindowRectangles::kMaxWindows);
Chris Dalton1dec19a2018-04-27 13:05:19 -060045 SkASSERT(fMaxCCPRClipPaths <= fMaxAnalyticFPs);
Chris Dalton79471932017-10-27 01:50:57 -060046 fHasScissor = false;
47 fAAClipRectGenID = SK_InvalidGenID;
csmartdaltoncbecb082016-07-22 08:59:08 -070048
bsalomon@google.com170bd792012-12-05 22:26:11 +000049 if (stack.isWideOpen()) {
csmartdalton77f2fae2016-08-08 09:55:06 -070050 fInitialState = InitialState::kAllIn;
51 return;
bsalomon@google.com170bd792012-12-05 22:26:11 +000052 }
53
54 SkClipStack::BoundsType stackBoundsType;
55 SkRect stackBounds;
56 bool iior;
57 stack.getBounds(&stackBounds, &stackBoundsType, &iior);
58
Chris Dalton348060f2017-06-05 13:15:37 -060059 if (GrClip::IsOutsideClip(stackBounds, queryBounds)) {
csmartdaltoncbecb082016-07-22 08:59:08 -070060 bool insideOut = SkClipStack::kInsideOut_BoundsType == stackBoundsType;
csmartdalton77f2fae2016-08-08 09:55:06 -070061 fInitialState = insideOut ? InitialState::kAllIn : InitialState::kAllOut;
62 return;
bsalomon@google.com170bd792012-12-05 22:26:11 +000063 }
64
csmartdaltoncbecb082016-07-22 08:59:08 -070065 if (iior) {
66 // "Is intersection of rects" means the clip is a single rect indicated by the stack bounds.
67 // This should only be true if aa/non-aa status matches among all elements.
68 SkASSERT(SkClipStack::kNormal_BoundsType == stackBoundsType);
Robert Phillips9548c3b422019-01-08 12:35:43 -050069
70 if (GrClip::IsInsideClip(stackBounds, queryBounds)) {
71 fInitialState = InitialState::kAllIn;
72 return;
73 }
74
csmartdaltoncbecb082016-07-22 08:59:08 -070075 SkClipStack::Iter iter(stack, SkClipStack::Iter::kTop_IterStart);
Robert Phillips9548c3b422019-01-08 12:35:43 -050076
csmartdaltoncbecb082016-07-22 08:59:08 -070077 if (!iter.prev()->isAA() || GrClip::IsPixelAligned(stackBounds)) {
Chris Dalton79471932017-10-27 01:50:57 -060078 // The clip is a non-aa rect. Here we just implement the entire thing using fScissor.
Mike Kleine26062a2017-10-31 20:56:54 +000079 stackBounds.round(&fScissor);
Chris Dalton79471932017-10-27 01:50:57 -060080 fHasScissor = true;
81 fInitialState = fScissor.isEmpty() ? InitialState::kAllOut : InitialState::kAllIn;
csmartdalton77f2fae2016-08-08 09:55:06 -070082 return;
csmartdaltoncbecb082016-07-22 08:59:08 -070083 }
csmartdaltoncbecb082016-07-22 08:59:08 -070084
csmartdaltond211e782016-08-15 11:17:19 -070085 SkRect tightBounds;
86 SkAssertResult(tightBounds.intersect(stackBounds, queryBounds));
Chris Dalton79471932017-10-27 01:50:57 -060087 fScissor = GrClip::GetPixelIBounds(tightBounds);
88 if (fScissor.isEmpty()) {
Chris Dalton348060f2017-06-05 13:15:37 -060089 fInitialState = InitialState::kAllOut;
90 return;
91 }
Chris Dalton79471932017-10-27 01:50:57 -060092 fHasScissor = true;
csmartdaltoncbecb082016-07-22 08:59:08 -070093
Chris Dalton79471932017-10-27 01:50:57 -060094 fAAClipRect = stackBounds;
Brian Salomonc3833b42018-07-09 18:23:58 +000095 fAAClipRectGenID = stack.getTopmostGenID();
96 SkASSERT(SK_InvalidGenID != fAAClipRectGenID);
csmartdalton77f2fae2016-08-08 09:55:06 -070097
Chris Dalton79471932017-10-27 01:50:57 -060098 fInitialState = InitialState::kAllIn;
99 } else {
100 SkRect tighterQuery = queryBounds;
101 if (SkClipStack::kNormal_BoundsType == stackBoundsType) {
102 // Tighten the query by introducing a new clip at the stack's pixel boundaries. (This
103 // new clip will be enforced by the scissor.)
104 SkAssertResult(tighterQuery.intersect(GrClip::GetPixelBounds(stackBounds)));
105 }
106
107 fScissor = GrClip::GetPixelIBounds(tighterQuery);
108 if (fScissor.isEmpty()) {
109 fInitialState = InitialState::kAllOut;
110 return;
111 }
112 fHasScissor = true;
113
Chris Dalton584a79a2017-11-15 13:14:01 -0700114 // Now that we have determined the bounds to use and filtered out the trivial cases, call
115 // the helper that actually walks the stack.
116 this->walkStack(stack, tighterQuery);
csmartdaltoncbecb082016-07-22 08:59:08 -0700117 }
118
Brian Salomonc3833b42018-07-09 18:23:58 +0000119 if (SK_InvalidGenID != fAAClipRectGenID && // Is there an AA clip rect?
120 ClipResult::kNotClipped == this->addAnalyticFP(fAAClipRect, Invert::kNo, GrAA::kYes)) {
121 if (fMaskElements.isEmpty()) {
122 // Use a replace since it is faster than intersect.
123 fMaskElements.addToHead(fAAClipRect, SkMatrix::I(), kReplace_SkClipOp, true /*doAA*/);
124 fInitialState = InitialState::kAllOut;
Chris Dalton79471932017-10-27 01:50:57 -0600125 } else {
Brian Salomonc3833b42018-07-09 18:23:58 +0000126 fMaskElements.addToTail(fAAClipRect, SkMatrix::I(), kIntersect_SkClipOp, true /*doAA*/);
Chris Dalton79471932017-10-27 01:50:57 -0600127 }
Brian Salomonc3833b42018-07-09 18:23:58 +0000128 fMaskRequiresAA = true;
129 fMaskGenID = fAAClipRectGenID;
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700130 }
csmartdalton5ecbbbe2016-08-23 13:26:40 -0700131}
132
Chris Dalton584a79a2017-11-15 13:14:01 -0700133void GrReducedClip::walkStack(const SkClipStack& stack, const SkRect& queryBounds) {
csmartdalton5ecbbbe2016-08-23 13:26:40 -0700134 // walk backwards until we get to:
135 // a) the beginning
136 // b) an operation that is known to make the bounds all inside/outside
137 // c) a replace operation
138
139 enum class InitialTriState {
140 kUnknown = -1,
141 kAllIn = (int)GrReducedClip::InitialState::kAllIn,
142 kAllOut = (int)GrReducedClip::InitialState::kAllOut
143 } initialTriState = InitialTriState::kUnknown;
144
145 // During our backwards walk, track whether we've seen ops that either grow or shrink the clip.
146 // TODO: track these per saved clip so that we can consider them on the forward pass.
147 bool embiggens = false;
148 bool emsmallens = false;
149
150 // We use a slightly relaxed set of query bounds for element containment tests. This is to
151 // account for floating point rounding error that may have occurred during coord transforms.
152 SkRect relaxedQueryBounds = queryBounds.makeInset(GrClip::kBoundsTolerance,
153 GrClip::kBoundsTolerance);
Chris Dalton69824002017-10-31 00:37:52 -0600154 if (relaxedQueryBounds.isEmpty()) {
155 relaxedQueryBounds = queryBounds;
156 }
csmartdalton5ecbbbe2016-08-23 13:26:40 -0700157
158 SkClipStack::Iter iter(stack, SkClipStack::Iter::kTop_IterStart);
159 int numAAElements = 0;
160 while (InitialTriState::kUnknown == initialTriState) {
Brian Salomonc3833b42018-07-09 18:23:58 +0000161 const Element* element = iter.prev();
csmartdalton5ecbbbe2016-08-23 13:26:40 -0700162 if (nullptr == element) {
163 initialTriState = InitialTriState::kAllIn;
164 break;
165 }
166 if (SkClipStack::kEmptyGenID == element->getGenID()) {
167 initialTriState = InitialTriState::kAllOut;
168 break;
169 }
170 if (SkClipStack::kWideOpenGenID == element->getGenID()) {
171 initialTriState = InitialTriState::kAllIn;
172 break;
173 }
174
175 bool skippable = false;
176 bool isFlip = false; // does this op just flip the in/out state of every point in the bounds
177
178 switch (element->getOp()) {
Mike Reedc1f77742016-12-09 09:00:50 -0500179 case kDifference_SkClipOp:
csmartdalton5ecbbbe2016-08-23 13:26:40 -0700180 // check if the shape subtracted either contains the entire bounds (and makes
181 // the clip empty) or is outside the bounds and therefore can be skipped.
182 if (element->isInverseFilled()) {
183 if (element->contains(relaxedQueryBounds)) {
184 skippable = true;
185 } else if (GrClip::IsOutsideClip(element->getBounds(), queryBounds)) {
186 initialTriState = InitialTriState::kAllOut;
187 skippable = true;
Chris Daltona32a3c32017-12-05 10:05:21 -0700188 } else if (!embiggens) {
189 ClipResult result = this->clipInsideElement(element);
190 if (ClipResult::kMadeEmpty == result) {
191 return;
192 }
193 skippable = (ClipResult::kClipped == result);
csmartdalton5ecbbbe2016-08-23 13:26:40 -0700194 }
195 } else {
196 if (element->contains(relaxedQueryBounds)) {
197 initialTriState = InitialTriState::kAllOut;
198 skippable = true;
199 } else if (GrClip::IsOutsideClip(element->getBounds(), queryBounds)) {
200 skippable = true;
Chris Dalton79471932017-10-27 01:50:57 -0600201 } else if (!embiggens) {
Chris Dalton584a79a2017-11-15 13:14:01 -0700202 ClipResult result = this->clipOutsideElement(element);
Chris Dalton79471932017-10-27 01:50:57 -0600203 if (ClipResult::kMadeEmpty == result) {
204 return;
205 }
206 skippable = (ClipResult::kClipped == result);
csmartdalton5ecbbbe2016-08-23 13:26:40 -0700207 }
208 }
209 if (!skippable) {
210 emsmallens = true;
211 }
212 break;
Mike Reedc1f77742016-12-09 09:00:50 -0500213 case kIntersect_SkClipOp:
csmartdalton5ecbbbe2016-08-23 13:26:40 -0700214 // check if the shape intersected contains the entire bounds and therefore can
215 // be skipped or it is outside the entire bounds and therefore makes the clip
216 // empty.
217 if (element->isInverseFilled()) {
218 if (element->contains(relaxedQueryBounds)) {
219 initialTriState = InitialTriState::kAllOut;
220 skippable = true;
221 } else if (GrClip::IsOutsideClip(element->getBounds(), queryBounds)) {
222 skippable = true;
Chris Daltona32a3c32017-12-05 10:05:21 -0700223 } else if (!embiggens) {
224 ClipResult result = this->clipOutsideElement(element);
225 if (ClipResult::kMadeEmpty == result) {
226 return;
227 }
228 skippable = (ClipResult::kClipped == result);
csmartdalton5ecbbbe2016-08-23 13:26:40 -0700229 }
230 } else {
231 if (element->contains(relaxedQueryBounds)) {
232 skippable = true;
233 } else if (GrClip::IsOutsideClip(element->getBounds(), queryBounds)) {
234 initialTriState = InitialTriState::kAllOut;
235 skippable = true;
Chris Dalton79471932017-10-27 01:50:57 -0600236 } else if (!embiggens) {
237 ClipResult result = this->clipInsideElement(element);
238 if (ClipResult::kMadeEmpty == result) {
csmartdalton5ecbbbe2016-08-23 13:26:40 -0700239 return;
240 }
Chris Dalton79471932017-10-27 01:50:57 -0600241 skippable = (ClipResult::kClipped == result);
csmartdalton5ecbbbe2016-08-23 13:26:40 -0700242 }
243 }
244 if (!skippable) {
245 emsmallens = true;
246 }
247 break;
Mike Reedc1f77742016-12-09 09:00:50 -0500248 case kUnion_SkClipOp:
csmartdalton5ecbbbe2016-08-23 13:26:40 -0700249 // If the union-ed shape contains the entire bounds then after this element
250 // the bounds is entirely inside the clip. If the union-ed shape is outside the
251 // bounds then this op can be skipped.
252 if (element->isInverseFilled()) {
253 if (element->contains(relaxedQueryBounds)) {
254 skippable = true;
255 } else if (GrClip::IsOutsideClip(element->getBounds(), queryBounds)) {
256 initialTriState = InitialTriState::kAllIn;
257 skippable = true;
258 }
259 } else {
260 if (element->contains(relaxedQueryBounds)) {
261 initialTriState = InitialTriState::kAllIn;
262 skippable = true;
263 } else if (GrClip::IsOutsideClip(element->getBounds(), queryBounds)) {
264 skippable = true;
265 }
266 }
267 if (!skippable) {
268 embiggens = true;
269 }
270 break;
Mike Reedc1f77742016-12-09 09:00:50 -0500271 case kXOR_SkClipOp:
csmartdalton5ecbbbe2016-08-23 13:26:40 -0700272 // If the bounds is entirely inside the shape being xor-ed then the effect is
273 // to flip the inside/outside state of every point in the bounds. We may be
274 // able to take advantage of this in the forward pass. If the xor-ed shape
275 // doesn't intersect the bounds then it can be skipped.
276 if (element->isInverseFilled()) {
277 if (element->contains(relaxedQueryBounds)) {
278 skippable = true;
279 } else if (GrClip::IsOutsideClip(element->getBounds(), queryBounds)) {
280 isFlip = true;
281 }
282 } else {
283 if (element->contains(relaxedQueryBounds)) {
284 isFlip = true;
285 } else if (GrClip::IsOutsideClip(element->getBounds(), queryBounds)) {
286 skippable = true;
287 }
288 }
289 if (!skippable) {
290 emsmallens = embiggens = true;
291 }
292 break;
Mike Reedc1f77742016-12-09 09:00:50 -0500293 case kReverseDifference_SkClipOp:
csmartdalton5ecbbbe2016-08-23 13:26:40 -0700294 // When the bounds is entirely within the rev-diff shape then this behaves like xor
295 // and reverses every point inside the bounds. If the shape is completely outside
296 // the bounds then we know after this element is applied that the bounds will be
297 // all outside the current clip.B
298 if (element->isInverseFilled()) {
299 if (element->contains(relaxedQueryBounds)) {
300 initialTriState = InitialTriState::kAllOut;
301 skippable = true;
302 } else if (GrClip::IsOutsideClip(element->getBounds(), queryBounds)) {
303 isFlip = true;
304 }
305 } else {
306 if (element->contains(relaxedQueryBounds)) {
307 isFlip = true;
308 } else if (GrClip::IsOutsideClip(element->getBounds(), queryBounds)) {
309 initialTriState = InitialTriState::kAllOut;
310 skippable = true;
311 }
312 }
313 if (!skippable) {
314 emsmallens = embiggens = true;
315 }
316 break;
317
Mike Reedc1f77742016-12-09 09:00:50 -0500318 case kReplace_SkClipOp:
csmartdalton5ecbbbe2016-08-23 13:26:40 -0700319 // Replace will always terminate our walk. We will either begin the forward walk
320 // at the replace op or detect here than the shape is either completely inside
321 // or completely outside the bounds. In this latter case it can be skipped by
322 // setting the correct value for initialTriState.
323 if (element->isInverseFilled()) {
324 if (element->contains(relaxedQueryBounds)) {
325 initialTriState = InitialTriState::kAllOut;
326 skippable = true;
327 } else if (GrClip::IsOutsideClip(element->getBounds(), queryBounds)) {
328 initialTriState = InitialTriState::kAllIn;
329 skippable = true;
Chris Daltona32a3c32017-12-05 10:05:21 -0700330 } else if (!embiggens) {
331 ClipResult result = this->clipOutsideElement(element);
332 if (ClipResult::kMadeEmpty == result) {
333 return;
334 }
335 if (ClipResult::kClipped == result) {
336 initialTriState = InitialTriState::kAllIn;
337 skippable = true;
338 }
csmartdalton5ecbbbe2016-08-23 13:26:40 -0700339 }
340 } else {
341 if (element->contains(relaxedQueryBounds)) {
342 initialTriState = InitialTriState::kAllIn;
343 skippable = true;
344 } else if (GrClip::IsOutsideClip(element->getBounds(), queryBounds)) {
345 initialTriState = InitialTriState::kAllOut;
346 skippable = true;
Chris Dalton79471932017-10-27 01:50:57 -0600347 } else if (!embiggens) {
348 ClipResult result = this->clipInsideElement(element);
349 if (ClipResult::kMadeEmpty == result) {
csmartdalton5ecbbbe2016-08-23 13:26:40 -0700350 return;
351 }
Chris Dalton79471932017-10-27 01:50:57 -0600352 if (ClipResult::kClipped == result) {
353 initialTriState = InitialTriState::kAllIn;
354 skippable = true;
355 }
csmartdalton5ecbbbe2016-08-23 13:26:40 -0700356 }
357 }
358 if (!skippable) {
359 initialTriState = InitialTriState::kAllOut;
360 embiggens = emsmallens = true;
361 }
362 break;
363 default:
364 SkDEBUGFAIL("Unexpected op.");
365 break;
366 }
367 if (!skippable) {
Brian Salomonc3833b42018-07-09 18:23:58 +0000368 if (fMaskElements.isEmpty()) {
369 // This will be the last element. Record the stricter genID.
370 fMaskGenID = element->getGenID();
371 }
372
csmartdalton5ecbbbe2016-08-23 13:26:40 -0700373 // if it is a flip, change it to a bounds-filling rect
374 if (isFlip) {
Mike Reedc1f77742016-12-09 09:00:50 -0500375 SkASSERT(kXOR_SkClipOp == element->getOp() ||
376 kReverseDifference_SkClipOp == element->getOp());
Brian Salomonc3833b42018-07-09 18:23:58 +0000377 fMaskElements.addToHead(SkRect::Make(fScissor), SkMatrix::I(),
378 kReverseDifference_SkClipOp, false);
csmartdalton5ecbbbe2016-08-23 13:26:40 -0700379 } else {
Brian Salomonc3833b42018-07-09 18:23:58 +0000380 Element* newElement = fMaskElements.addToHead(*element);
csmartdalton5ecbbbe2016-08-23 13:26:40 -0700381 if (newElement->isAA()) {
382 ++numAAElements;
383 }
384 // Intersecting an inverse shape is the same as differencing the non-inverse shape.
385 // Replacing with an inverse shape is the same as setting initialState=kAllIn and
386 // differencing the non-inverse shape.
Mike Reedc1f77742016-12-09 09:00:50 -0500387 bool isReplace = kReplace_SkClipOp == newElement->getOp();
csmartdalton5ecbbbe2016-08-23 13:26:40 -0700388 if (newElement->isInverseFilled() &&
Mike Reedc1f77742016-12-09 09:00:50 -0500389 (kIntersect_SkClipOp == newElement->getOp() || isReplace)) {
csmartdalton5ecbbbe2016-08-23 13:26:40 -0700390 newElement->invertShapeFillType();
Mike Reedc1f77742016-12-09 09:00:50 -0500391 newElement->setOp(kDifference_SkClipOp);
csmartdalton5ecbbbe2016-08-23 13:26:40 -0700392 if (isReplace) {
393 SkASSERT(InitialTriState::kAllOut == initialTriState);
394 initialTriState = InitialTriState::kAllIn;
395 }
396 }
397 }
398 }
399 }
400
401 if ((InitialTriState::kAllOut == initialTriState && !embiggens) ||
402 (InitialTriState::kAllIn == initialTriState && !emsmallens)) {
Chris Dalton79471932017-10-27 01:50:57 -0600403 fMaskElements.reset();
csmartdalton5ecbbbe2016-08-23 13:26:40 -0700404 numAAElements = 0;
405 } else {
Brian Salomonc3833b42018-07-09 18:23:58 +0000406 Element* element = fMaskElements.headIter().get();
407 while (element) {
csmartdalton5ecbbbe2016-08-23 13:26:40 -0700408 bool skippable = false;
409 switch (element->getOp()) {
Mike Reedc1f77742016-12-09 09:00:50 -0500410 case kDifference_SkClipOp:
csmartdalton5ecbbbe2016-08-23 13:26:40 -0700411 // subtracting from the empty set yields the empty set.
412 skippable = InitialTriState::kAllOut == initialTriState;
413 break;
Mike Reedc1f77742016-12-09 09:00:50 -0500414 case kIntersect_SkClipOp:
csmartdalton5ecbbbe2016-08-23 13:26:40 -0700415 // intersecting with the empty set yields the empty set
416 if (InitialTriState::kAllOut == initialTriState) {
417 skippable = true;
418 } else {
419 // We can clear to zero and then simply draw the clip element.
420 initialTriState = InitialTriState::kAllOut;
Mike Reedc1f77742016-12-09 09:00:50 -0500421 element->setOp(kReplace_SkClipOp);
csmartdalton5ecbbbe2016-08-23 13:26:40 -0700422 }
423 break;
Mike Reedc1f77742016-12-09 09:00:50 -0500424 case kUnion_SkClipOp:
csmartdalton5ecbbbe2016-08-23 13:26:40 -0700425 if (InitialTriState::kAllIn == initialTriState) {
426 // unioning the infinite plane with anything is a no-op.
427 skippable = true;
428 } else {
429 // unioning the empty set with a shape is the shape.
Mike Reedc1f77742016-12-09 09:00:50 -0500430 element->setOp(kReplace_SkClipOp);
csmartdalton5ecbbbe2016-08-23 13:26:40 -0700431 }
432 break;
Mike Reedc1f77742016-12-09 09:00:50 -0500433 case kXOR_SkClipOp:
csmartdalton5ecbbbe2016-08-23 13:26:40 -0700434 if (InitialTriState::kAllOut == initialTriState) {
435 // xor could be changed to diff in the kAllIn case, not sure it's a win.
Mike Reedc1f77742016-12-09 09:00:50 -0500436 element->setOp(kReplace_SkClipOp);
csmartdalton5ecbbbe2016-08-23 13:26:40 -0700437 }
438 break;
Mike Reedc1f77742016-12-09 09:00:50 -0500439 case kReverseDifference_SkClipOp:
csmartdalton5ecbbbe2016-08-23 13:26:40 -0700440 if (InitialTriState::kAllIn == initialTriState) {
441 // subtracting the whole plane will yield the empty set.
442 skippable = true;
443 initialTriState = InitialTriState::kAllOut;
444 } else {
445 // this picks up flips inserted in the backwards pass.
446 skippable = element->isInverseFilled() ?
447 GrClip::IsOutsideClip(element->getBounds(), queryBounds) :
448 element->contains(relaxedQueryBounds);
449 if (skippable) {
450 initialTriState = InitialTriState::kAllIn;
451 } else {
Mike Reedc1f77742016-12-09 09:00:50 -0500452 element->setOp(kReplace_SkClipOp);
csmartdalton5ecbbbe2016-08-23 13:26:40 -0700453 }
454 }
455 break;
Mike Reedc1f77742016-12-09 09:00:50 -0500456 case kReplace_SkClipOp:
csmartdalton5ecbbbe2016-08-23 13:26:40 -0700457 skippable = false; // we would have skipped it in the backwards walk if we
458 // could've.
459 break;
460 default:
461 SkDEBUGFAIL("Unexpected op.");
462 break;
463 }
Brian Salomonc3833b42018-07-09 18:23:58 +0000464 if (!skippable) {
465 break;
466 } else {
csmartdalton5ecbbbe2016-08-23 13:26:40 -0700467 if (element->isAA()) {
468 --numAAElements;
469 }
Chris Dalton79471932017-10-27 01:50:57 -0600470 fMaskElements.popHead();
Brian Salomonc3833b42018-07-09 18:23:58 +0000471 element = fMaskElements.headIter().get();
csmartdalton5ecbbbe2016-08-23 13:26:40 -0700472 }
473 }
474 }
Chris Dalton79471932017-10-27 01:50:57 -0600475 fMaskRequiresAA = numAAElements > 0;
csmartdalton5ecbbbe2016-08-23 13:26:40 -0700476
477 SkASSERT(InitialTriState::kUnknown != initialTriState);
478 fInitialState = static_cast<GrReducedClip::InitialState>(initialTriState);
479}
480
Brian Salomonc3833b42018-07-09 18:23:58 +0000481GrReducedClip::ClipResult GrReducedClip::clipInsideElement(const Element* element) {
Chris Dalton79471932017-10-27 01:50:57 -0600482 SkIRect elementIBounds;
483 if (!element->isAA()) {
484 element->getBounds().round(&elementIBounds);
485 } else {
486 elementIBounds = GrClip::GetPixelIBounds(element->getBounds());
487 }
488 SkASSERT(fHasScissor);
489 if (!fScissor.intersect(elementIBounds)) {
490 this->makeEmpty();
491 return ClipResult::kMadeEmpty;
492 }
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700493
Chris Dalton79471932017-10-27 01:50:57 -0600494 switch (element->getDeviceSpaceType()) {
Brian Salomonc3833b42018-07-09 18:23:58 +0000495 case Element::DeviceSpaceType::kEmpty:
Chris Dalton79471932017-10-27 01:50:57 -0600496 return ClipResult::kMadeEmpty;
497
Brian Salomonc3833b42018-07-09 18:23:58 +0000498 case Element::DeviceSpaceType::kRect:
Chris Dalton79471932017-10-27 01:50:57 -0600499 SkASSERT(element->getBounds() == element->getDeviceSpaceRect());
Chris Daltona32a3c32017-12-05 10:05:21 -0700500 SkASSERT(!element->isInverseFilled());
Chris Dalton79471932017-10-27 01:50:57 -0600501 if (element->isAA()) {
Brian Salomonc3833b42018-07-09 18:23:58 +0000502 if (SK_InvalidGenID == fAAClipRectGenID) { // No AA clip rect yet?
Chris Dalton79471932017-10-27 01:50:57 -0600503 fAAClipRect = element->getDeviceSpaceRect();
Brian Salomonc3833b42018-07-09 18:23:58 +0000504 // fAAClipRectGenID is the value we should use for fMaskGenID if we end up
505 // moving the AA clip rect into the mask. The mask GenID is simply the topmost
506 // element's GenID. And since we walk the stack backwards, this means it's just
507 // the first element we don't skip during our walk.
508 fAAClipRectGenID = fMaskElements.isEmpty() ? element->getGenID() : fMaskGenID;
509 SkASSERT(SK_InvalidGenID != fAAClipRectGenID);
Chris Dalton79471932017-10-27 01:50:57 -0600510 } else if (!fAAClipRect.intersect(element->getDeviceSpaceRect())) {
511 this->makeEmpty();
512 return ClipResult::kMadeEmpty;
513 }
514 }
515 return ClipResult::kClipped;
516
Brian Salomonc3833b42018-07-09 18:23:58 +0000517 case Element::DeviceSpaceType::kRRect:
Chris Daltona32a3c32017-12-05 10:05:21 -0700518 SkASSERT(!element->isInverseFilled());
Chris Dalton584a79a2017-11-15 13:14:01 -0700519 return this->addAnalyticFP(element->getDeviceSpaceRRect(), Invert::kNo,
Chris Dalton3b51df12017-11-27 14:33:06 -0700520 GrAA(element->isAA()));
Chris Dalton584a79a2017-11-15 13:14:01 -0700521
Brian Salomonc3833b42018-07-09 18:23:58 +0000522 case Element::DeviceSpaceType::kPath:
Chris Daltona32a3c32017-12-05 10:05:21 -0700523 return this->addAnalyticFP(element->getDeviceSpacePath(),
524 Invert(element->isInverseFilled()), GrAA(element->isAA()));
Chris Dalton79471932017-10-27 01:50:57 -0600525 }
526
527 SK_ABORT("Unexpected DeviceSpaceType");
528 return ClipResult::kNotClipped;
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700529}
530
Brian Salomonc3833b42018-07-09 18:23:58 +0000531GrReducedClip::ClipResult GrReducedClip::clipOutsideElement(const Element* element) {
Chris Dalton79471932017-10-27 01:50:57 -0600532 switch (element->getDeviceSpaceType()) {
Brian Salomonc3833b42018-07-09 18:23:58 +0000533 case Element::DeviceSpaceType::kEmpty:
Chris Dalton79471932017-10-27 01:50:57 -0600534 return ClipResult::kMadeEmpty;
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700535
Brian Salomonc3833b42018-07-09 18:23:58 +0000536 case Element::DeviceSpaceType::kRect:
Chris Daltona32a3c32017-12-05 10:05:21 -0700537 SkASSERT(!element->isInverseFilled());
Chris Dalton584a79a2017-11-15 13:14:01 -0700538 if (fWindowRects.count() < fMaxWindowRectangles) {
539 // Clip out the inside of every rect. We won't be able to entirely skip the AA ones,
540 // but it saves processing time.
541 this->addWindowRectangle(element->getDeviceSpaceRect(), element->isAA());
542 if (!element->isAA()) {
543 return ClipResult::kClipped;
544 }
545 }
546 return this->addAnalyticFP(element->getDeviceSpaceRect(), Invert::kYes,
Chris Dalton3b51df12017-11-27 14:33:06 -0700547 GrAA(element->isAA()));
Chris Dalton79471932017-10-27 01:50:57 -0600548
Brian Salomonc3833b42018-07-09 18:23:58 +0000549 case Element::DeviceSpaceType::kRRect: {
Chris Daltona32a3c32017-12-05 10:05:21 -0700550 SkASSERT(!element->isInverseFilled());
Brian Osman554c1f02017-11-16 13:56:47 +0000551 const SkRRect& clipRRect = element->getDeviceSpaceRRect();
Chris Dalton3b51df12017-11-27 14:33:06 -0700552 ClipResult clipResult = this->addAnalyticFP(clipRRect, Invert::kYes,
553 GrAA(element->isAA()));
Chris Dalton584a79a2017-11-15 13:14:01 -0700554 if (fWindowRects.count() >= fMaxWindowRectangles) {
555 return clipResult;
556 }
557
558 // Clip out the interiors of round rects with two window rectangles in the shape of a
559 // "plus". This doesn't let us skip the clip element, but still saves processing time.
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700560 SkVector insetTL = clipRRect.radii(SkRRect::kUpperLeft_Corner);
561 SkVector insetBR = clipRRect.radii(SkRRect::kLowerRight_Corner);
562 if (SkRRect::kComplex_Type == clipRRect.getType()) {
563 const SkVector& insetTR = clipRRect.radii(SkRRect::kUpperRight_Corner);
564 const SkVector& insetBL = clipRRect.radii(SkRRect::kLowerLeft_Corner);
565 insetTL.fX = SkTMax(insetTL.x(), insetBL.x());
566 insetTL.fY = SkTMax(insetTL.y(), insetTR.y());
567 insetBR.fX = SkTMax(insetBR.x(), insetTR.x());
568 insetBR.fY = SkTMax(insetBR.y(), insetBL.y());
569 }
570 const SkRect& bounds = clipRRect.getBounds();
571 if (insetTL.x() + insetBR.x() >= bounds.width() ||
572 insetTL.y() + insetBR.y() >= bounds.height()) {
Chris Dalton584a79a2017-11-15 13:14:01 -0700573 return clipResult; // The interior "plus" is empty.
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700574 }
575
576 SkRect horzRect = SkRect::MakeLTRB(bounds.left(), bounds.top() + insetTL.y(),
577 bounds.right(), bounds.bottom() - insetBR.y());
578 this->addWindowRectangle(horzRect, element->isAA());
Chris Dalton584a79a2017-11-15 13:14:01 -0700579
580 if (fWindowRects.count() < fMaxWindowRectangles) {
581 SkRect vertRect = SkRect::MakeLTRB(bounds.left() + insetTL.x(), bounds.top(),
582 bounds.right() - insetBR.x(), bounds.bottom());
583 this->addWindowRectangle(vertRect, element->isAA());
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700584 }
585
Chris Dalton584a79a2017-11-15 13:14:01 -0700586 return clipResult;
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700587 }
Chris Dalton79471932017-10-27 01:50:57 -0600588
Brian Salomonc3833b42018-07-09 18:23:58 +0000589 case Element::DeviceSpaceType::kPath:
Chris Daltona32a3c32017-12-05 10:05:21 -0700590 return this->addAnalyticFP(element->getDeviceSpacePath(),
591 Invert(!element->isInverseFilled()), GrAA(element->isAA()));
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700592 }
Chris Dalton79471932017-10-27 01:50:57 -0600593
594 SK_ABORT("Unexpected DeviceSpaceType");
595 return ClipResult::kNotClipped;
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700596}
597
598inline void GrReducedClip::addWindowRectangle(const SkRect& elementInteriorRect, bool elementIsAA) {
599 SkIRect window;
600 if (!elementIsAA) {
601 elementInteriorRect.round(&window);
602 } else {
603 elementInteriorRect.roundIn(&window);
604 }
605 if (!window.isEmpty()) { // Skip very thin windows that round to zero or negative dimensions.
606 fWindowRects.addWindow(window);
607 }
608}
609
Chris Daltona32a3c32017-12-05 10:05:21 -0700610GrClipEdgeType GrReducedClip::GetClipEdgeType(Invert invert, GrAA aa) {
611 if (Invert::kNo == invert) {
612 return (GrAA::kYes == aa) ? GrClipEdgeType::kFillAA : GrClipEdgeType::kFillBW;
613 } else {
614 return (GrAA::kYes == aa) ? GrClipEdgeType::kInverseFillAA : GrClipEdgeType::kInverseFillBW;
615 }
616}
617
Ethan Nicholaseace9352018-10-15 20:09:54 +0000618GrReducedClip::ClipResult GrReducedClip::addAnalyticFP(const SkRect& deviceSpaceRect,
619 Invert invert, GrAA aa) {
Chris Daltona32a3c32017-12-05 10:05:21 -0700620 if (this->numAnalyticFPs() >= fMaxAnalyticFPs) {
Chris Dalton584a79a2017-11-15 13:14:01 -0700621 return ClipResult::kNotClipped;
622 }
623
Ethan Nicholaseace9352018-10-15 20:09:54 +0000624 fAnalyticFPs.push_back(GrAARectEffect::Make(GetClipEdgeType(invert, aa), deviceSpaceRect));
Chris Daltona32a3c32017-12-05 10:05:21 -0700625 SkASSERT(fAnalyticFPs.back());
626
627 return ClipResult::kClipped;
628}
629
630GrReducedClip::ClipResult GrReducedClip::addAnalyticFP(const SkRRect& deviceSpaceRRect,
631 Invert invert, GrAA aa) {
632 if (this->numAnalyticFPs() >= fMaxAnalyticFPs) {
633 return ClipResult::kNotClipped;
Chris Dalton584a79a2017-11-15 13:14:01 -0700634 }
635
Ethan Nicholaseace9352018-10-15 20:09:54 +0000636 if (auto fp = GrRRectEffect::Make(GetClipEdgeType(invert, aa), deviceSpaceRRect,
637 *fCaps->shaderCaps())) {
Chris Dalton584a79a2017-11-15 13:14:01 -0700638 fAnalyticFPs.push_back(std::move(fp));
639 return ClipResult::kClipped;
640 }
641
Chris Daltona32a3c32017-12-05 10:05:21 -0700642 SkPath deviceSpacePath;
643 deviceSpacePath.setIsVolatile(true);
644 deviceSpacePath.addRRect(deviceSpaceRRect);
645 return this->addAnalyticFP(deviceSpacePath, invert, aa);
646}
647
648GrReducedClip::ClipResult GrReducedClip::addAnalyticFP(const SkPath& deviceSpacePath,
649 Invert invert, GrAA aa) {
650 if (this->numAnalyticFPs() >= fMaxAnalyticFPs) {
651 return ClipResult::kNotClipped;
652 }
653
Ethan Nicholaseace9352018-10-15 20:09:54 +0000654 if (auto fp = GrConvexPolyEffect::Make(GetClipEdgeType(invert, aa), deviceSpacePath)) {
Chris Daltona32a3c32017-12-05 10:05:21 -0700655 fAnalyticFPs.push_back(std::move(fp));
656 return ClipResult::kClipped;
657 }
658
Chris Dalton1dec19a2018-04-27 13:05:19 -0600659 if (fCCPRClipPaths.count() < fMaxCCPRClipPaths && GrAA::kYes == aa) {
Chris Daltona32a3c32017-12-05 10:05:21 -0700660 // Set aside CCPR paths for later. We will create their clip FPs once we know the ID of the
661 // opList they will operate in.
662 SkPath& ccprClipPath = fCCPRClipPaths.push_back(deviceSpacePath);
663 if (Invert::kYes == invert) {
664 ccprClipPath.toggleInverseFillType();
665 }
666 return ClipResult::kClipped;
667 }
668
Chris Dalton584a79a2017-11-15 13:14:01 -0700669 return ClipResult::kNotClipped;
670}
671
Chris Dalton79471932017-10-27 01:50:57 -0600672void GrReducedClip::makeEmpty() {
673 fHasScissor = false;
674 fAAClipRectGenID = SK_InvalidGenID;
675 fWindowRects.reset();
676 fMaskElements.reset();
677 fInitialState = InitialState::kAllOut;
bsalomon@google.com34cd70a2012-12-06 14:23:20 +0000678}
csmartdaltonbde96c62016-08-31 12:54:46 -0700679
680////////////////////////////////////////////////////////////////////////////////
Chris Daltonc5348082018-03-30 15:59:38 +0000681// Create a 8-bit clip mask in alpha
682
683static bool stencil_element(GrRenderTargetContext* rtc,
684 const GrFixedClip& clip,
685 const GrUserStencilSettings* ss,
686 const SkMatrix& viewMatrix,
Brian Salomonc3833b42018-07-09 18:23:58 +0000687 const SkClipStack::Element* element) {
688 GrAA aa = GrAA(element->isAA());
689 switch (element->getDeviceSpaceType()) {
Chris Daltonc5348082018-03-30 15:59:38 +0000690 case SkClipStack::Element::DeviceSpaceType::kEmpty:
691 SkDEBUGFAIL("Should never get here with an empty element.");
692 break;
693 case SkClipStack::Element::DeviceSpaceType::kRect:
Brian Salomonc3833b42018-07-09 18:23:58 +0000694 return rtc->priv().drawAndStencilRect(clip, ss, (SkRegion::Op)element->getOp(),
695 element->isInverseFilled(), aa, viewMatrix,
696 element->getDeviceSpaceRect());
Chris Daltonc5348082018-03-30 15:59:38 +0000697 break;
698 default: {
699 SkPath path;
Brian Salomonc3833b42018-07-09 18:23:58 +0000700 element->asDeviceSpacePath(&path);
Chris Daltonc5348082018-03-30 15:59:38 +0000701 if (path.isInverseFillType()) {
702 path.toggleInverseFillType();
703 }
704
Brian Salomonc3833b42018-07-09 18:23:58 +0000705 return rtc->priv().drawAndStencilPath(clip, ss, (SkRegion::Op)element->getOp(),
706 element->isInverseFilled(), aa, viewMatrix, path);
Chris Daltonc5348082018-03-30 15:59:38 +0000707 break;
708 }
709 }
710
711 return false;
712}
713
714static void draw_element(GrRenderTargetContext* rtc,
715 const GrClip& clip, // TODO: can this just always be WideOpen?
716 GrPaint&& paint,
717 GrAA aa,
718 const SkMatrix& viewMatrix,
Brian Salomonc3833b42018-07-09 18:23:58 +0000719 const SkClipStack::Element* element) {
Chris Daltonc5348082018-03-30 15:59:38 +0000720 // TODO: Draw rrects directly here.
Brian Salomonc3833b42018-07-09 18:23:58 +0000721 switch (element->getDeviceSpaceType()) {
Chris Daltonc5348082018-03-30 15:59:38 +0000722 case SkClipStack::Element::DeviceSpaceType::kEmpty:
723 SkDEBUGFAIL("Should never get here with an empty element.");
724 break;
725 case SkClipStack::Element::DeviceSpaceType::kRect:
Brian Salomonc3833b42018-07-09 18:23:58 +0000726 rtc->drawRect(clip, std::move(paint), aa, viewMatrix, element->getDeviceSpaceRect());
Chris Daltonc5348082018-03-30 15:59:38 +0000727 break;
728 default: {
729 SkPath path;
Brian Salomonc3833b42018-07-09 18:23:58 +0000730 element->asDeviceSpacePath(&path);
Chris Daltonc5348082018-03-30 15:59:38 +0000731 if (path.isInverseFillType()) {
732 path.toggleInverseFillType();
733 }
734
735 rtc->drawPath(clip, std::move(paint), aa, viewMatrix, path, GrStyle::SimpleFill());
736 break;
737 }
738 }
739}
740
741bool GrReducedClip::drawAlphaClipMask(GrRenderTargetContext* rtc) const {
742 // The texture may be larger than necessary, this rect represents the part of the texture
743 // we populate with a rasterization of the clip.
744 GrFixedClip clip(SkIRect::MakeWH(fScissor.width(), fScissor.height()));
745
746 if (!fWindowRects.empty()) {
747 clip.setWindowRectangles(fWindowRects.makeOffset(-fScissor.left(), -fScissor.top()),
748 GrWindowRectsState::Mode::kExclusive);
749 }
750
751 // The scratch texture that we are drawing into can be substantially larger than the mask. Only
752 // clear the part that we care about.
Brian Osman9a9baae2018-11-05 15:06:26 -0500753 SkPMColor4f initialCoverage =
754 InitialState::kAllIn == this->initialState() ? SK_PMColor4fWHITE : SK_PMColor4fTRANSPARENT;
Chris Daltonc5348082018-03-30 15:59:38 +0000755 rtc->priv().clear(clip, initialCoverage, GrRenderTargetContext::CanClearFullscreen::kYes);
756
757 // Set the matrix so that rendered clip elements are transformed to mask space from clip space.
758 SkMatrix translate;
759 translate.setTranslate(SkIntToScalar(-fScissor.left()), SkIntToScalar(-fScissor.top()));
760
761 // walk through each clip element and perform its set op
762 for (ElementList::Iter iter(fMaskElements); iter.get(); iter.next()) {
Brian Salomonc3833b42018-07-09 18:23:58 +0000763 const Element* element = iter.get();
764 SkRegion::Op op = (SkRegion::Op)element->getOp();
765 GrAA aa = GrAA(element->isAA());
766 bool invert = element->isInverseFilled();
Chris Daltonc5348082018-03-30 15:59:38 +0000767 if (invert || SkRegion::kIntersect_Op == op || SkRegion::kReverseDifference_Op == op) {
768 // draw directly into the result with the stencil set to make the pixels affected
769 // by the clip shape be non-zero.
770 static constexpr GrUserStencilSettings kStencilInElement(
771 GrUserStencilSettings::StaticInit<
772 0xffff,
773 GrUserStencilTest::kAlways,
774 0xffff,
775 GrUserStencilOp::kReplace,
776 GrUserStencilOp::kReplace,
777 0xffff>()
778 );
779 if (!stencil_element(rtc, clip, &kStencilInElement, translate, element)) {
780 return false;
781 }
782
783 // Draw to the exterior pixels (those with a zero stencil value).
784 static constexpr GrUserStencilSettings kDrawOutsideElement(
785 GrUserStencilSettings::StaticInit<
786 0x0000,
787 GrUserStencilTest::kEqual,
788 0xffff,
789 GrUserStencilOp::kZero,
790 GrUserStencilOp::kZero,
791 0xffff>()
792 );
793 if (!rtc->priv().drawAndStencilRect(clip, &kDrawOutsideElement, op, !invert, GrAA::kNo,
794 translate, SkRect::Make(fScissor))) {
795 return false;
796 }
797 } else {
798 // all the remaining ops can just be directly draw into the accumulation buffer
799 GrPaint paint;
800 paint.setCoverageSetOpXPFactory(op, false);
801
802 draw_element(rtc, clip, std::move(paint), aa, translate, element);
803 }
804 }
805
806 return true;
807}
808
809////////////////////////////////////////////////////////////////////////////////
csmartdaltonbde96c62016-08-31 12:54:46 -0700810// Create a 1-bit clip mask in the stencil buffer.
811
Ethan Nicholaseace9352018-10-15 20:09:54 +0000812bool GrReducedClip::drawStencilClipMask(GrContext* context,
813 GrRenderTargetContext* renderTargetContext) const {
csmartdaltonbde96c62016-08-31 12:54:46 -0700814 // We set the current clip to the bounds so that our recursive draws are scissored to them.
Brian Salomonc3833b42018-07-09 18:23:58 +0000815 GrStencilClip stencilClip(fScissor, this->maskGenID());
csmartdaltonbde96c62016-08-31 12:54:46 -0700816
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700817 if (!fWindowRects.empty()) {
Chris Daltonbbfd5162017-11-07 13:35:22 -0700818 stencilClip.fixedClip().setWindowRectangles(fWindowRects,
819 GrWindowRectsState::Mode::kExclusive);
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700820 }
821
csmartdaltonbde96c62016-08-31 12:54:46 -0700822 bool initialState = InitialState::kAllIn == this->initialState();
Jim Van Verth6a40abc2017-11-02 16:56:09 +0000823 renderTargetContext->priv().clearStencilClip(stencilClip.fixedClip(), initialState);
csmartdaltonbde96c62016-08-31 12:54:46 -0700824
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500825 // walk through each clip element and perform its set op with the existing clip.
Chris Dalton79471932017-10-27 01:50:57 -0600826 for (ElementList::Iter iter(fMaskElements); iter.get(); iter.next()) {
Brian Salomonc3833b42018-07-09 18:23:58 +0000827 const Element* element = iter.get();
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500828 GrAAType aaType = GrAAType::kNone;
Brian Salomonc3833b42018-07-09 18:23:58 +0000829 if (element->isAA() && GrFSAAType::kNone != renderTargetContext->fsaaType()) {
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500830 aaType = GrAAType::kMSAA;
831 }
csmartdaltonbde96c62016-08-31 12:54:46 -0700832
833 bool fillInverted = false;
834
835 // This will be used to determine whether the clip shape can be rendered into the
836 // stencil with arbitrary stencil settings.
837 GrPathRenderer::StencilSupport stencilSupport;
838
Brian Salomonc3833b42018-07-09 18:23:58 +0000839 SkRegion::Op op = (SkRegion::Op)element->getOp();
csmartdaltonbde96c62016-08-31 12:54:46 -0700840
841 GrPathRenderer* pr = nullptr;
842 SkPath clipPath;
Brian Salomonc3833b42018-07-09 18:23:58 +0000843 if (Element::DeviceSpaceType::kRect == element->getDeviceSpaceType()) {
csmartdaltonbde96c62016-08-31 12:54:46 -0700844 stencilSupport = GrPathRenderer::kNoRestriction_StencilSupport;
845 fillInverted = false;
846 } else {
Brian Salomonc3833b42018-07-09 18:23:58 +0000847 element->asDeviceSpacePath(&clipPath);
csmartdaltonbde96c62016-08-31 12:54:46 -0700848 fillInverted = clipPath.isInverseFillType();
849 if (fillInverted) {
850 clipPath.toggleInverseFillType();
851 }
852
853 GrShape shape(clipPath, GrStyle::SimpleFill());
854 GrPathRenderer::CanDrawPathArgs canDrawArgs;
Ethan Nicholaseace9352018-10-15 20:09:54 +0000855 canDrawArgs.fCaps = context->contextPriv().caps();
Chris Daltondb91c6e2017-09-08 16:25:08 -0600856 canDrawArgs.fClipConservativeBounds = &stencilClip.fixedClip().scissorRect();
Brian Salomon9a767722017-03-13 17:57:28 -0400857 canDrawArgs.fViewMatrix = &SkMatrix::I();
csmartdaltonbde96c62016-08-31 12:54:46 -0700858 canDrawArgs.fShape = &shape;
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500859 canDrawArgs.fAAType = aaType;
csmartdaltonbde96c62016-08-31 12:54:46 -0700860 canDrawArgs.fHasUserStencilSettings = false;
Greg Danielbe7fc462019-01-03 16:40:42 -0500861 canDrawArgs.fTargetIsWrappedVkSecondaryCB = renderTargetContext->wrapsVkSecondaryCB();
csmartdaltonbde96c62016-08-31 12:54:46 -0700862
Ethan Nicholaseace9352018-10-15 20:09:54 +0000863 GrDrawingManager* dm = context->contextPriv().drawingManager();
Brian Salomon82125e92016-12-10 09:35:48 -0500864 pr = dm->getPathRenderer(canDrawArgs, false, GrPathRendererChain::DrawType::kStencil,
csmartdaltonbde96c62016-08-31 12:54:46 -0700865 &stencilSupport);
866 if (!pr) {
867 return false;
868 }
869 }
870
871 bool canRenderDirectToStencil =
872 GrPathRenderer::kNoRestriction_StencilSupport == stencilSupport;
873 bool drawDirectToClip; // Given the renderer, the element,
874 // fill rule, and set operation should
875 // we render the element directly to
876 // stencil bit used for clipping.
877 GrUserStencilSettings const* const* stencilPasses =
878 GrStencilSettings::GetClipPasses(op, canRenderDirectToStencil, fillInverted,
879 &drawDirectToClip);
880
881 // draw the element to the client stencil bits if necessary
882 if (!drawDirectToClip) {
883 static constexpr GrUserStencilSettings kDrawToStencil(
884 GrUserStencilSettings::StaticInit<
885 0x0000,
886 GrUserStencilTest::kAlways,
887 0xffff,
888 GrUserStencilOp::kIncMaybeClamp,
889 GrUserStencilOp::kIncMaybeClamp,
890 0xffff>()
891 );
Brian Salomonc3833b42018-07-09 18:23:58 +0000892 if (Element::DeviceSpaceType::kRect == element->getDeviceSpaceType()) {
Brian Osman693a5402016-10-27 15:13:22 -0400893 renderTargetContext->priv().stencilRect(stencilClip.fixedClip(), &kDrawToStencil,
Brian Salomonf3b46e52017-08-30 11:37:57 -0400894 aaType, SkMatrix::I(),
Brian Salomonc3833b42018-07-09 18:23:58 +0000895 element->getDeviceSpaceRect());
csmartdaltonbde96c62016-08-31 12:54:46 -0700896 } else {
897 if (!clipPath.isEmpty()) {
898 GrShape shape(clipPath, GrStyle::SimpleFill());
899 if (canRenderDirectToStencil) {
900 GrPaint paint;
Brian Salomona1633922017-01-09 11:46:10 -0500901 paint.setXPFactory(GrDisableColorXPFactory::Get());
csmartdaltonbde96c62016-08-31 12:54:46 -0700902
Ethan Nicholaseace9352018-10-15 20:09:54 +0000903 GrPathRenderer::DrawPathArgs args{context,
Brian Salomon82f44312017-01-11 13:42:54 -0500904 std::move(paint),
905 &kDrawToStencil,
906 renderTargetContext,
907 &stencilClip.fixedClip(),
Chris Daltondb91c6e2017-09-08 16:25:08 -0600908 &stencilClip.fixedClip().scissorRect(),
Brian Salomon9a767722017-03-13 17:57:28 -0400909 &SkMatrix::I(),
Brian Salomon82f44312017-01-11 13:42:54 -0500910 &shape,
911 aaType,
912 false};
csmartdaltonbde96c62016-08-31 12:54:46 -0700913 pr->drawPath(args);
914 } else {
915 GrPathRenderer::StencilPathArgs args;
Ethan Nicholaseace9352018-10-15 20:09:54 +0000916 args.fContext = context;
Brian Osman11052242016-10-27 14:47:55 -0400917 args.fRenderTargetContext = renderTargetContext;
csmartdaltonbde96c62016-08-31 12:54:46 -0700918 args.fClip = &stencilClip.fixedClip();
Chris Daltondb91c6e2017-09-08 16:25:08 -0600919 args.fClipConservativeBounds = &stencilClip.fixedClip().scissorRect();
Brian Salomon9a767722017-03-13 17:57:28 -0400920 args.fViewMatrix = &SkMatrix::I();
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500921 args.fAAType = aaType;
csmartdaltonbde96c62016-08-31 12:54:46 -0700922 args.fShape = &shape;
923 pr->stencilPath(args);
924 }
925 }
926 }
927 }
928
929 // now we modify the clip bit by rendering either the clip
930 // element directly or a bounding rect of the entire clip.
931 for (GrUserStencilSettings const* const* pass = stencilPasses; *pass; ++pass) {
932 if (drawDirectToClip) {
Brian Salomonc3833b42018-07-09 18:23:58 +0000933 if (Element::DeviceSpaceType::kRect == element->getDeviceSpaceType()) {
Brian Salomon9a767722017-03-13 17:57:28 -0400934 renderTargetContext->priv().stencilRect(stencilClip, *pass, aaType,
Brian Salomonf3b46e52017-08-30 11:37:57 -0400935 SkMatrix::I(),
Brian Salomonc3833b42018-07-09 18:23:58 +0000936 element->getDeviceSpaceRect());
csmartdaltonbde96c62016-08-31 12:54:46 -0700937 } else {
938 GrShape shape(clipPath, GrStyle::SimpleFill());
939 GrPaint paint;
Brian Salomona1633922017-01-09 11:46:10 -0500940 paint.setXPFactory(GrDisableColorXPFactory::Get());
Ethan Nicholaseace9352018-10-15 20:09:54 +0000941 GrPathRenderer::DrawPathArgs args{context,
Brian Salomon82f44312017-01-11 13:42:54 -0500942 std::move(paint),
943 *pass,
944 renderTargetContext,
945 &stencilClip,
Chris Daltondb91c6e2017-09-08 16:25:08 -0600946 &stencilClip.fixedClip().scissorRect(),
Brian Salomon9a767722017-03-13 17:57:28 -0400947 &SkMatrix::I(),
Brian Salomon82f44312017-01-11 13:42:54 -0500948 &shape,
949 aaType,
950 false};
csmartdaltonbde96c62016-08-31 12:54:46 -0700951 pr->drawPath(args);
952 }
953 } else {
954 // The view matrix is setup to do clip space -> stencil space translation, so
955 // draw rect in clip space.
Brian Salomon9a767722017-03-13 17:57:28 -0400956 renderTargetContext->priv().stencilRect(stencilClip, *pass, aaType, SkMatrix::I(),
Chris Dalton79471932017-10-27 01:50:57 -0600957 SkRect::Make(fScissor));
csmartdaltonbde96c62016-08-31 12:54:46 -0700958 }
959 }
960 }
961 return true;
962}
Chris Daltona32a3c32017-12-05 10:05:21 -0700963
Robert Phillips777707b2018-01-17 11:40:14 -0500964std::unique_ptr<GrFragmentProcessor> GrReducedClip::finishAndDetachAnalyticFPs(
Chris Dalton4c458b12018-06-16 17:22:59 -0600965 GrCoverageCountingPathRenderer* ccpr, uint32_t opListID, int rtWidth, int rtHeight) {
Chris Daltona32a3c32017-12-05 10:05:21 -0700966 // Make sure finishAndDetachAnalyticFPs hasn't been called already.
967 SkDEBUGCODE(for (const auto& fp : fAnalyticFPs) { SkASSERT(fp); })
968
969 if (!fCCPRClipPaths.empty()) {
970 fAnalyticFPs.reserve(fAnalyticFPs.count() + fCCPRClipPaths.count());
971 for (const SkPath& ccprClipPath : fCCPRClipPaths) {
Chris Dalton1dec19a2018-04-27 13:05:19 -0600972 SkASSERT(ccpr);
Chris Daltona32a3c32017-12-05 10:05:21 -0700973 SkASSERT(fHasScissor);
Chris Dalton4c458b12018-06-16 17:22:59 -0600974 auto fp = ccpr->makeClipProcessor(opListID, ccprClipPath, fScissor, rtWidth, rtHeight,
Ethan Nicholaseace9352018-10-15 20:09:54 +0000975 *fCaps);
Chris Daltona32a3c32017-12-05 10:05:21 -0700976 fAnalyticFPs.push_back(std::move(fp));
977 }
978 fCCPRClipPaths.reset();
979 }
980
981 return GrFragmentProcessor::RunInSeries(fAnalyticFPs.begin(), fAnalyticFPs.count());
982}