blob: 5c429e0b566238ac62a2a8fe21bed3b5889fecff [file] [log] [blame]
robertphillips@google.com1e945b72012-04-16 18:03:03 +00001/*
csmartdaltonc6f411e2016-08-05 22:32:12 -07002 * Copyright 2016 Google Inc.
robertphillips@google.com1e945b72012-04-16 18:03:03 +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
csmartdaltonc6f411e2016-08-05 22:32:12 -07008#include "GrClipStackClip.h"
csmartdalton28341fa2016-08-17 10:00:21 -07009#include "GrAppliedClip.h"
csmartdaltonbde96c62016-08-31 12:54:46 -070010#include "GrContextPriv.h"
Brian Osman099fa0f2017-10-02 16:38:32 -040011#include "GrDeferredProxyUploader.h"
robertphillips68737822015-10-29 12:12:21 -070012#include "GrDrawingManager.h"
csmartdalton02fa32c2016-08-19 13:29:27 -070013#include "GrFixedClip.h"
bsalomon473addf2015-10-02 07:49:05 -070014#include "GrGpuResourcePriv.h"
Hal Canaryfdcfb8b2018-06-13 09:42:32 -040015#include "GrProxyProvider.h"
Hal Canaryc640d0d2018-06-13 09:59:02 -040016#include "GrRenderTargetContextPriv.h"
Hal Canaryfdcfb8b2018-06-13 09:42:32 -040017#include "GrSWMaskHelper.h"
Brian Salomon653f42f2018-07-10 10:07:31 -040018#include "GrShape.h"
Hal Canaryc640d0d2018-06-13 09:59:02 -040019#include "GrStencilAttachment.h"
Brian Salomon653f42f2018-07-10 10:07:31 -040020#include "GrStyle.h"
Robert Phillipse305cc1f2016-12-14 12:19:05 -050021#include "GrTextureProxy.h"
Hal Canaryfdcfb8b2018-06-13 09:42:32 -040022#include "SkClipOpPriv.h"
23#include "SkMakeUnique.h"
24#include "SkTaskGroup.h"
Hal Canaryc640d0d2018-06-13 09:59:02 -040025#include "SkTo.h"
Hal Canaryfdcfb8b2018-06-13 09:42:32 -040026#include "SkTraceEvent.h"
Hal Canaryc640d0d2018-06-13 09:59:02 -040027#include "effects/GrConvexPolyEffect.h"
28#include "effects/GrRRectEffect.h"
29#include "effects/GrTextureDomain.h"
bsalomon@google.comc6b3e482012-12-07 20:43:52 +000030
Brian Salomonc3833b42018-07-09 18:23:58 +000031typedef SkClipStack::Element Element;
32typedef GrReducedClip::InitialState InitialState;
33typedef GrReducedClip::ElementList ElementList;
34
35const char GrClipStackClip::kMaskTestTag[] = "clip_mask";
robertphillips976f5f02016-06-03 10:59:20 -070036
csmartdaltonc6f411e2016-08-05 22:32:12 -070037bool GrClipStackClip::quickContains(const SkRect& rect) const {
reed4d2cce42016-08-22 13:03:47 -070038 if (!fStack || fStack->isWideOpen()) {
csmartdaltonc6f411e2016-08-05 22:32:12 -070039 return true;
40 }
Brian Salomon9a767722017-03-13 17:57:28 -040041 return fStack->quickContains(rect);
csmartdaltonc6f411e2016-08-05 22:32:12 -070042}
43
bsalomon7f0d9f32016-08-15 14:49:10 -070044bool GrClipStackClip::quickContains(const SkRRect& rrect) const {
reed4d2cce42016-08-22 13:03:47 -070045 if (!fStack || fStack->isWideOpen()) {
bsalomon7f0d9f32016-08-15 14:49:10 -070046 return true;
47 }
Brian Salomon9a767722017-03-13 17:57:28 -040048 return fStack->quickContains(rrect);
bsalomon7f0d9f32016-08-15 14:49:10 -070049}
50
Brian Salomon0e8fc8b2016-12-09 15:10:07 -050051bool GrClipStackClip::isRRect(const SkRect& origRTBounds, SkRRect* rr, GrAA* aa) const {
bsalomoncb31e512016-08-26 10:48:19 -070052 if (!fStack) {
53 return false;
54 }
55 const SkRect* rtBounds = &origRTBounds;
Brian Salomon0e8fc8b2016-12-09 15:10:07 -050056 bool isAA;
57 if (fStack->isRRect(*rtBounds, rr, &isAA)) {
Chris Dalton3b51df12017-11-27 14:33:06 -070058 *aa = GrAA(isAA);
bsalomoncb31e512016-08-26 10:48:19 -070059 return true;
60 }
61 return false;
62}
63
csmartdaltonc6f411e2016-08-05 22:32:12 -070064void GrClipStackClip::getConservativeBounds(int width, int height, SkIRect* devResult,
65 bool* isIntersectionOfRects) const {
66 if (!fStack) {
67 devResult->setXYWH(0, 0, width, height);
68 if (isIntersectionOfRects) {
69 *isIntersectionOfRects = true;
70 }
71 return;
72 }
73 SkRect devBounds;
Brian Salomon9a767722017-03-13 17:57:28 -040074 fStack->getConservativeBounds(0, 0, width, height, &devBounds, isIntersectionOfRects);
csmartdaltonc6f411e2016-08-05 22:32:12 -070075 devBounds.roundOut(devResult);
76}
77
Chris Daltonc5348082018-03-30 15:59:38 +000078////////////////////////////////////////////////////////////////////////////////
79// set up the draw state to enable the aa clipping mask.
80static std::unique_ptr<GrFragmentProcessor> create_fp_for_mask(sk_sp<GrTextureProxy> mask,
81 const SkIRect& devBound) {
82 SkIRect domainTexels = SkIRect::MakeWH(devBound.width(), devBound.height());
83 return GrDeviceSpaceTextureDecalFragmentProcessor::Make(std::move(mask), domainTexels,
84 {devBound.fLeft, devBound.fTop});
85}
86
87// Does the path in 'element' require SW rendering? If so, return true (and,
88// optionally, set 'prOut' to NULL. If not, return false (and, optionally, set
89// 'prOut' to the non-SW path renderer that will do the job).
90bool GrClipStackClip::PathNeedsSWRenderer(GrContext* context,
91 const SkIRect& scissorRect,
92 bool hasUserStencilSettings,
93 const GrRenderTargetContext* renderTargetContext,
94 const SkMatrix& viewMatrix,
Brian Salomonc3833b42018-07-09 18:23:58 +000095 const Element* element,
Chris Daltonc5348082018-03-30 15:59:38 +000096 GrPathRenderer** prOut,
97 bool needsStencil) {
Brian Salomonc3833b42018-07-09 18:23:58 +000098 if (Element::DeviceSpaceType::kRect == element->getDeviceSpaceType()) {
Chris Daltonc5348082018-03-30 15:59:38 +000099 // rects can always be drawn directly w/o using the software path
100 // TODO: skip rrects once we're drawing them directly.
101 if (prOut) {
102 *prOut = nullptr;
103 }
104 return false;
105 } else {
106 // We shouldn't get here with an empty clip element.
Brian Salomonc3833b42018-07-09 18:23:58 +0000107 SkASSERT(Element::DeviceSpaceType::kEmpty != element->getDeviceSpaceType());
Chris Daltonc5348082018-03-30 15:59:38 +0000108
109 // the gpu alpha mask will draw the inverse paths as non-inverse to a temp buffer
110 SkPath path;
Brian Salomonc3833b42018-07-09 18:23:58 +0000111 element->asDeviceSpacePath(&path);
Chris Daltonc5348082018-03-30 15:59:38 +0000112 if (path.isInverseFillType()) {
113 path.toggleInverseFillType();
114 }
115
116 GrPathRendererChain::DrawType type =
117 needsStencil ? GrPathRendererChain::DrawType::kStencilAndColor
118 : GrPathRendererChain::DrawType::kColor;
119
120 GrShape shape(path, GrStyle::SimpleFill());
121 GrPathRenderer::CanDrawPathArgs canDrawArgs;
Brian Salomonc7fe0f72018-05-11 10:14:21 -0400122 canDrawArgs.fCaps = context->contextPriv().caps();
Chris Daltonc5348082018-03-30 15:59:38 +0000123 canDrawArgs.fClipConservativeBounds = &scissorRect;
124 canDrawArgs.fViewMatrix = &viewMatrix;
125 canDrawArgs.fShape = &shape;
Brian Salomonc3833b42018-07-09 18:23:58 +0000126 canDrawArgs.fAAType = GrChooseAAType(GrAA(element->isAA()),
Chris Daltonc5348082018-03-30 15:59:38 +0000127 renderTargetContext->fsaaType(),
128 GrAllowMixedSamples::kYes,
Brian Salomonc7fe0f72018-05-11 10:14:21 -0400129 *context->contextPriv().caps());
Chris Daltonc5348082018-03-30 15:59:38 +0000130 canDrawArgs.fHasUserStencilSettings = hasUserStencilSettings;
131
132 // the 'false' parameter disallows use of the SW path renderer
133 GrPathRenderer* pr =
134 context->contextPriv().drawingManager()->getPathRenderer(canDrawArgs, false, type);
135 if (prOut) {
136 *prOut = pr;
137 }
138 return SkToBool(!pr);
139 }
140}
141
142/*
143 * This method traverses the clip stack to see if the GrSoftwarePathRenderer
144 * will be used on any element. If so, it returns true to indicate that the
145 * entire clip should be rendered in SW and then uploaded en masse to the gpu.
146 */
147bool GrClipStackClip::UseSWOnlyPath(GrContext* context,
148 bool hasUserStencilSettings,
149 const GrRenderTargetContext* renderTargetContext,
150 const GrReducedClip& reducedClip) {
Chris Daltond22a0232018-08-22 17:25:10 +0000151 // TODO: right now it appears that GPU clip masks are strictly slower than software. We may
152 // want to revisit this assumption once we can test with render target sorting.
153 return true;
154
Chris Daltonc5348082018-03-30 15:59:38 +0000155 // TODO: generalize this function so that when
156 // a clip gets complex enough it can just be done in SW regardless
157 // of whether it would invoke the GrSoftwarePathRenderer.
158
159 // If we're avoiding stencils, always use SW:
Brian Salomonc7fe0f72018-05-11 10:14:21 -0400160 if (context->contextPriv().caps()->avoidStencilBuffers()) {
Chris Daltonc5348082018-03-30 15:59:38 +0000161 return true;
Brian Salomonc7fe0f72018-05-11 10:14:21 -0400162 }
Chris Daltonc5348082018-03-30 15:59:38 +0000163
164 // Set the matrix so that rendered clip elements are transformed to mask space from clip
165 // space.
166 SkMatrix translate;
167 translate.setTranslate(SkIntToScalar(-reducedClip.left()), SkIntToScalar(-reducedClip.top()));
168
169 for (ElementList::Iter iter(reducedClip.maskElements()); iter.get(); iter.next()) {
Brian Salomonc3833b42018-07-09 18:23:58 +0000170 const Element* element = iter.get();
Chris Daltonc5348082018-03-30 15:59:38 +0000171
Brian Salomonc3833b42018-07-09 18:23:58 +0000172 SkClipOp op = element->getOp();
173 bool invert = element->isInverseFilled();
Chris Daltonc5348082018-03-30 15:59:38 +0000174 bool needsStencil = invert ||
175 kIntersect_SkClipOp == op || kReverseDifference_SkClipOp == op;
176
177 if (PathNeedsSWRenderer(context, reducedClip.scissor(), hasUserStencilSettings,
178 renderTargetContext, translate, element, nullptr, needsStencil)) {
179 return true;
180 }
181 }
182 return false;
183}
184
185////////////////////////////////////////////////////////////////////////////////
186// sort out what kind of clip mask needs to be created: alpha, stencil,
187// scissor, or entirely software
Brian Osman11052242016-10-27 14:47:55 -0400188bool GrClipStackClip::apply(GrContext* context, GrRenderTargetContext* renderTargetContext,
Brian Salomon97180af2017-03-14 13:42:58 -0400189 bool useHWAA, bool hasUserStencilSettings, GrAppliedClip* out,
190 SkRect* bounds) const {
Brian Salomon97180af2017-03-14 13:42:58 -0400191 SkRect devBounds = SkRect::MakeIWH(renderTargetContext->width(), renderTargetContext->height());
192 if (!devBounds.intersect(*bounds)) {
csmartdaltoncbecb082016-07-22 08:59:08 -0700193 return false;
194 }
195
Brian Salomon510dd422017-03-16 12:15:22 -0400196 if (!fStack || fStack->isWideOpen()) {
197 return true;
198 }
199
Chris Daltona32a3c32017-12-05 10:05:21 -0700200 int maxWindowRectangles = renderTargetContext->priv().maxWindowRectangles();
Brian Salomonc7fe0f72018-05-11 10:14:21 -0400201 int maxAnalyticFPs = context->contextPriv().caps()->maxClipAnalyticFPs();
Chris Dalton584a79a2017-11-15 13:14:01 -0700202 if (GrFSAAType::kNone != renderTargetContext->fsaaType()) {
203 // With mixed samples (non-msaa color buffer), any coverage info is lost from color once it
204 // hits the color buffer anyway, so we may as well use coverage AA if nothing else in the
205 // pipe is multisampled.
Brian Salomonbdecacf2018-02-02 20:32:49 -0500206 if (renderTargetContext->numColorSamples() > 1 || useHWAA || hasUserStencilSettings) {
Chris Dalton584a79a2017-11-15 13:14:01 -0700207 maxAnalyticFPs = 0;
208 }
Brian Salomonc7fe0f72018-05-11 10:14:21 -0400209 // We disable MSAA when avoiding stencil.
210 SkASSERT(!context->contextPriv().caps()->avoidStencilBuffers());
Chris Dalton584a79a2017-11-15 13:14:01 -0700211 }
Chris Daltona32a3c32017-12-05 10:05:21 -0700212 auto* ccpr = context->contextPriv().drawingManager()->getCoverageCountingPathRenderer();
Chris Dalton584a79a2017-11-15 13:14:01 -0700213
Ethan Nicholas222e2752018-10-11 11:21:34 -0400214 GrReducedClip reducedClip(*fStack, devBounds, context, maxWindowRectangles, maxAnalyticFPs,
215 ccpr ? maxAnalyticFPs : 0);
Chris Daltona32a3c32017-12-05 10:05:21 -0700216 if (InitialState::kAllOut == reducedClip.initialState() &&
217 reducedClip.maskElements().isEmpty()) {
218 return false;
219 }
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000220
Chris Dalton79471932017-10-27 01:50:57 -0600221 if (reducedClip.hasScissor() && !GrClip::IsInsideClip(reducedClip.scissor(), devBounds)) {
Chris Daltonbbfd5162017-11-07 13:35:22 -0700222 out->hardClip().addScissor(reducedClip.scissor(), bounds);
cdalton846c0512016-05-13 10:25:00 -0700223 }
cdalton93a379b2016-05-11 13:58:08 -0700224
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700225 if (!reducedClip.windowRectangles().empty()) {
Chris Daltonbbfd5162017-11-07 13:35:22 -0700226 out->hardClip().addWindowRectangles(reducedClip.windowRectangles(),
227 GrWindowRectsState::Mode::kExclusive);
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700228 }
229
Chris Daltona32a3c32017-12-05 10:05:21 -0700230 if (!reducedClip.maskElements().isEmpty()) {
231 if (!this->applyClipMask(context, renderTargetContext, reducedClip, hasUserStencilSettings,
232 out)) {
233 return false;
234 }
235 }
236
237 // The opList ID must not be looked up until AFTER producing the clip mask (if any). That step
238 // can cause a flush or otherwise change which opList our draw is going into.
239 uint32_t opListID = renderTargetContext->getOpList()->uniqueID();
240 int rtWidth = renderTargetContext->width(), rtHeight = renderTargetContext->height();
Chris Dalton4c458b12018-06-16 17:22:59 -0600241 if (auto clipFPs = reducedClip.finishAndDetachAnalyticFPs(ccpr, opListID, rtWidth, rtHeight)) {
Chris Dalton584a79a2017-11-15 13:14:01 -0700242 out->addCoverageFP(std::move(clipFPs));
243 }
244
Chris Daltona32a3c32017-12-05 10:05:21 -0700245 return true;
246}
csmartdaltond211e782016-08-15 11:17:19 -0700247
Chris Daltona32a3c32017-12-05 10:05:21 -0700248bool GrClipStackClip::applyClipMask(GrContext* context, GrRenderTargetContext* renderTargetContext,
249 const GrReducedClip& reducedClip, bool hasUserStencilSettings,
250 GrAppliedClip* out) const {
csmartdalton3affdc12016-10-28 12:01:10 -0700251#ifdef SK_DEBUG
Chris Dalton79471932017-10-27 01:50:57 -0600252 SkASSERT(reducedClip.hasScissor());
Robert Phillips784b7bf2016-12-09 13:35:02 -0500253 SkIRect rtIBounds = SkIRect::MakeWH(renderTargetContext->width(),
254 renderTargetContext->height());
Chris Dalton79471932017-10-27 01:50:57 -0600255 const SkIRect& scissor = reducedClip.scissor();
256 SkASSERT(rtIBounds.contains(scissor)); // Mask shouldn't be larger than the RT.
csmartdalton3affdc12016-10-28 12:01:10 -0700257#endif
csmartdaltond211e782016-08-15 11:17:19 -0700258
cdaltonede75742015-11-11 15:27:57 -0800259 // If the stencil buffer is multisampled we can use it to do everything.
Chris Dalton79471932017-10-27 01:50:57 -0600260 if ((GrFSAAType::kNone == renderTargetContext->fsaaType() && reducedClip.maskRequiresAA()) ||
Brian Salomonc7fe0f72018-05-11 10:14:21 -0400261 context->contextPriv().caps()->avoidStencilBuffers()) {
Chris Daltonc5348082018-03-30 15:59:38 +0000262 sk_sp<GrTextureProxy> result;
263 if (UseSWOnlyPath(context, hasUserStencilSettings, renderTargetContext, reducedClip)) {
264 // The clip geometry is complex enough that it will be more efficient to create it
265 // entirely in software
266 result = this->createSoftwareClipMask(context, reducedClip, renderTargetContext);
267 } else {
268 result = this->createAlphaClipMask(context, reducedClip);
269 }
270
271 if (result) {
272 // The mask's top left coord should be pinned to the rounded-out top left corner of
273 // the clip's device space bounds.
274 out->addCoverageFP(create_fp_for_mask(std::move(result), reducedClip.scissor()));
robertphillips@google.comf294b772012-04-27 14:29:26 +0000275 return true;
276 }
Eric Karl5c779752017-05-08 12:02:07 -0700277
Chris Daltonc5348082018-03-30 15:59:38 +0000278 // If alpha or software clip mask creation fails, fall through to the stencil code paths,
279 // unless stencils are disallowed.
Brian Salomonc7fe0f72018-05-11 10:14:21 -0400280 if (context->contextPriv().caps()->avoidStencilBuffers()) {
Chris Dalton584a79a2017-11-15 13:14:01 -0700281 SkDebugf("WARNING: Clip mask requires stencil, but stencil unavailable. "
282 "Clip will be ignored.\n");
Eric Karl5c779752017-05-08 12:02:07 -0700283 return false;
284 }
robertphillips@google.comf294b772012-04-27 14:29:26 +0000285 }
robertphillips@google.comf294b772012-04-27 14:29:26 +0000286
Robert Phillips65048132017-08-10 08:44:49 -0400287 renderTargetContext->setNeedsStencil();
csmartdaltonbde96c62016-08-31 12:54:46 -0700288
Brian Salomonc3833b42018-07-09 18:23:58 +0000289 // This relies on the property that a reduced sub-rect of the last clip will contain all the
290 // relevant window rectangles that were in the last clip. This subtle requirement will go away
291 // after clipping is overhauled.
292 if (renderTargetContext->priv().mustRenderClip(reducedClip.maskGenID(), reducedClip.scissor(),
293 reducedClip.numAnalyticFPs())) {
Ethan Nicholas222e2752018-10-11 11:21:34 -0400294 reducedClip.drawStencilClipMask(renderTargetContext);
Brian Salomonc3833b42018-07-09 18:23:58 +0000295 renderTargetContext->priv().setLastClip(reducedClip.maskGenID(), reducedClip.scissor(),
296 reducedClip.numAnalyticFPs());
csmartdaltonbde96c62016-08-31 12:54:46 -0700297 }
Brian Salomonc3833b42018-07-09 18:23:58 +0000298 // GrAppliedClip doesn't need to figure numAnalyticFPs into its key (used by operator==) because
299 // it verifies the FPs are also equal.
300 out->hardClip().addStencilClip(reducedClip.maskGenID());
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000301 return true;
302}
303
robertphillips@google.com6b70a7b2012-05-11 15:32:48 +0000304////////////////////////////////////////////////////////////////////////////////
bsalomon473addf2015-10-02 07:49:05 -0700305// Create a 8-bit clip mask in alpha
306
Brian Salomonc3833b42018-07-09 18:23:58 +0000307static void create_clip_mask_key(uint32_t clipGenID, const SkIRect& bounds, int numAnalyticFPs,
308 GrUniqueKey* key) {
309 static const GrUniqueKey::Domain kDomain = GrUniqueKey::GenerateDomain();
310 GrUniqueKey::Builder builder(key, kDomain, 4, GrClipStackClip::kMaskTestTag);
311 builder[0] = clipGenID;
312 // SkToS16 because image filters outset layers to a size indicated by the filter, which can
313 // sometimes result in negative coordinates from device space.
314 builder[1] = SkToS16(bounds.fLeft) | (SkToS16(bounds.fRight) << 16);
315 builder[2] = SkToS16(bounds.fTop) | (SkToS16(bounds.fBottom) << 16);
316 builder[3] = numAnalyticFPs;
317}
318
Robert Phillips806be2d2017-06-28 15:23:59 -0400319static void add_invalidate_on_pop_message(const SkClipStack& stack, uint32_t clipGenID,
Brian Salomon238069b2018-07-11 15:58:57 -0400320 const GrUniqueKey& clipMaskKey,
321 uint32_t contextUniqueID) {
Brian Salomon19f0ed52017-01-06 13:54:58 -0500322 SkClipStack::Iter iter(stack, SkClipStack::Iter::kTop_IterStart);
323 while (const Element* element = iter.prev()) {
324 if (element->getGenID() == clipGenID) {
325 std::unique_ptr<GrUniqueKeyInvalidatedMessage> msg(
Brian Salomon238069b2018-07-11 15:58:57 -0400326 new GrUniqueKeyInvalidatedMessage(clipMaskKey, contextUniqueID));
Brian Salomon19f0ed52017-01-06 13:54:58 -0500327 element->addResourceInvalidationMessage(std::move(msg));
328 return;
329 }
330 }
331 SkDEBUGFAIL("Gen ID was not found in stack.");
332}
333
Chris Daltonc5348082018-03-30 15:59:38 +0000334sk_sp<GrTextureProxy> GrClipStackClip::createAlphaClipMask(GrContext* context,
335 const GrReducedClip& reducedClip) const {
336 GrProxyProvider* proxyProvider = context->contextPriv().proxyProvider();
Brian Salomonc3833b42018-07-09 18:23:58 +0000337 GrUniqueKey key;
338 create_clip_mask_key(reducedClip.maskGenID(), reducedClip.scissor(),
339 reducedClip.numAnalyticFPs(), &key);
340
Chris Daltonc5348082018-03-30 15:59:38 +0000341 sk_sp<GrTextureProxy> proxy(proxyProvider->findOrCreateProxyByUniqueKey(
Robert Phillips5491e822018-06-27 12:54:44 -0400342 key, kTopLeft_GrSurfaceOrigin));
Chris Daltonc5348082018-03-30 15:59:38 +0000343 if (proxy) {
344 return proxy;
345 }
346
347 sk_sp<GrRenderTargetContext> rtc(
Robert Phillips5491e822018-06-27 12:54:44 -0400348 context->contextPriv().makeDeferredRenderTargetContextWithFallback(
349 SkBackingFit::kApprox,
350 reducedClip.width(),
351 reducedClip.height(),
352 kAlpha_8_GrPixelConfig,
353 nullptr, 1,
354 GrMipMapped::kNo,
355 kTopLeft_GrSurfaceOrigin));
Chris Daltonc5348082018-03-30 15:59:38 +0000356 if (!rtc) {
357 return nullptr;
358 }
359
360 if (!reducedClip.drawAlphaClipMask(rtc.get())) {
361 return nullptr;
362 }
363
364 sk_sp<GrTextureProxy> result(rtc->asTextureProxyRef());
365 if (!result) {
366 return nullptr;
367 }
368
Robert Phillips5491e822018-06-27 12:54:44 -0400369 SkASSERT(result->origin() == kTopLeft_GrSurfaceOrigin);
Chris Daltonc5348082018-03-30 15:59:38 +0000370 proxyProvider->assignUniqueKeyToProxy(key, result.get());
Brian Salomon238069b2018-07-11 15:58:57 -0400371 add_invalidate_on_pop_message(*fStack, reducedClip.maskGenID(), key, context->uniqueID());
Chris Daltonc5348082018-03-30 15:59:38 +0000372
373 return result;
374}
375
Brian Osman5d034742017-09-11 13:38:55 -0400376namespace {
Robert Phillips875218e2017-02-24 08:37:13 -0500377
Brian Osman5d034742017-09-11 13:38:55 -0400378/**
Brian Osman099fa0f2017-10-02 16:38:32 -0400379 * Payload class for use with GrTDeferredProxyUploader. The clip mask code renders multiple
Brian Osman5d034742017-09-11 13:38:55 -0400380 * elements, each storing their own AA setting (and already transformed into device space). This
381 * stores all of the information needed by the worker thread to draw all clip elements (see below,
382 * in createSoftwareClipMask).
383 */
384class ClipMaskData {
385public:
386 ClipMaskData(const GrReducedClip& reducedClip)
Chris Dalton79471932017-10-27 01:50:57 -0600387 : fScissor(reducedClip.scissor())
Brian Osman5d034742017-09-11 13:38:55 -0400388 , fInitialState(reducedClip.initialState()) {
Chris Dalton79471932017-10-27 01:50:57 -0600389 for (ElementList::Iter iter(reducedClip.maskElements()); iter.get(); iter.next()) {
Brian Osman5d034742017-09-11 13:38:55 -0400390 fElements.addToTail(*iter.get());
391 }
robertphillips@google.com6b70a7b2012-05-11 15:32:48 +0000392 }
393
Chris Dalton79471932017-10-27 01:50:57 -0600394 const SkIRect& scissor() const { return fScissor; }
Brian Osman5d034742017-09-11 13:38:55 -0400395 InitialState initialState() const { return fInitialState; }
396 const ElementList& elements() const { return fElements; }
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000397
Brian Osman5d034742017-09-11 13:38:55 -0400398private:
Chris Dalton79471932017-10-27 01:50:57 -0600399 SkIRect fScissor;
Brian Osman5d034742017-09-11 13:38:55 -0400400 InitialState fInitialState;
401 ElementList fElements;
402};
robertphillips@google.com6b70a7b2012-05-11 15:32:48 +0000403
Brian Osman5d034742017-09-11 13:38:55 -0400404}
405
406static void draw_clip_elements_to_mask_helper(GrSWMaskHelper& helper, const ElementList& elements,
Chris Dalton79471932017-10-27 01:50:57 -0600407 const SkIRect& scissor, InitialState initialState) {
Brian Osman5d034742017-09-11 13:38:55 -0400408 // Set the matrix so that rendered clip elements are transformed to mask space from clip space.
joshualitt8059eb92014-12-29 15:10:07 -0800409 SkMatrix translate;
Chris Dalton79471932017-10-27 01:50:57 -0600410 translate.setTranslate(SkIntToScalar(-scissor.left()), SkIntToScalar(-scissor.top()));
joshualitt9853cce2014-11-17 14:22:48 -0800411
Brian Osman5d034742017-09-11 13:38:55 -0400412 helper.clear(InitialState::kAllIn == initialState ? 0xFF : 0x00);
sugoi@google.com12b4e272012-12-06 20:13:11 +0000413
Brian Osman5d034742017-09-11 13:38:55 -0400414 for (ElementList::Iter iter(elements); iter.get(); iter.next()) {
Brian Salomonc3833b42018-07-09 18:23:58 +0000415 const Element* element = iter.get();
416 SkClipOp op = element->getOp();
417 GrAA aa = GrAA(element->isAA());
robertphillips@google.comfa662942012-05-17 12:20:22 +0000418
Mike Reedc1f77742016-12-09 09:00:50 -0500419 if (kIntersect_SkClipOp == op || kReverseDifference_SkClipOp == op) {
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000420 // Intersect and reverse difference require modifying pixels outside of the geometry
421 // that is being "drawn". In both cases we erase all the pixels outside of the geometry
422 // but leave the pixels inside the geometry alone. For reverse difference we invert all
423 // the pixels before clearing the ones outside the geometry.
Mike Reedc1f77742016-12-09 09:00:50 -0500424 if (kReverseDifference_SkClipOp == op) {
Chris Dalton79471932017-10-27 01:50:57 -0600425 SkRect temp = SkRect::Make(scissor);
robertphillips@google.comfa662942012-05-17 12:20:22 +0000426 // invert the entire scene
Brian Salomon74077562017-08-30 13:55:35 -0400427 helper.drawRect(temp, translate, SkRegion::kXOR_Op, GrAA::kNo, 0xFF);
robertphillips@google.comfa662942012-05-17 12:20:22 +0000428 }
commit-bot@chromium.org5c056392014-02-17 19:50:02 +0000429 SkPath clipPath;
Brian Salomonc3833b42018-07-09 18:23:58 +0000430 element->asDeviceSpacePath(&clipPath);
commit-bot@chromium.org5c056392014-02-17 19:50:02 +0000431 clipPath.toggleInverseFillType();
bsalomon8acedde2016-06-24 10:42:16 -0700432 GrShape shape(clipPath, GrStyle::SimpleFill());
Brian Salomon74077562017-08-30 13:55:35 -0400433 helper.drawShape(shape, translate, SkRegion::kReplace_Op, aa, 0x00);
robertphillips@google.comfa662942012-05-17 12:20:22 +0000434 continue;
435 }
436
437 // The other ops (union, xor, diff) only affect pixels inside
438 // the geometry so they can just be drawn normally
Brian Salomonc3833b42018-07-09 18:23:58 +0000439 if (Element::DeviceSpaceType::kRect == element->getDeviceSpaceType()) {
440 helper.drawRect(element->getDeviceSpaceRect(), translate, (SkRegion::Op)op, aa, 0xFF);
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000441 } else {
commit-bot@chromium.org5c056392014-02-17 19:50:02 +0000442 SkPath path;
Brian Salomonc3833b42018-07-09 18:23:58 +0000443 element->asDeviceSpacePath(&path);
bsalomon8acedde2016-06-24 10:42:16 -0700444 GrShape shape(path, GrStyle::SimpleFill());
Brian Salomon74077562017-08-30 13:55:35 -0400445 helper.drawShape(shape, translate, (SkRegion::Op)op, aa, 0xFF);
robertphillips@google.com6b70a7b2012-05-11 15:32:48 +0000446 }
447 }
Brian Osman5d034742017-09-11 13:38:55 -0400448}
robertphillips@google.com6b70a7b2012-05-11 15:32:48 +0000449
Brian Osman5d034742017-09-11 13:38:55 -0400450sk_sp<GrTextureProxy> GrClipStackClip::createSoftwareClipMask(
451 GrContext* context, const GrReducedClip& reducedClip,
452 GrRenderTargetContext* renderTargetContext) const {
Brian Salomonc3833b42018-07-09 18:23:58 +0000453 GrUniqueKey key;
454 create_clip_mask_key(reducedClip.maskGenID(), reducedClip.scissor(),
455 reducedClip.numAnalyticFPs(), &key);
robertphillips391395d2016-03-02 09:26:36 -0800456
Robert Phillips1afd4cd2018-01-08 13:40:32 -0500457 GrProxyProvider* proxyProvider = context->contextPriv().proxyProvider();
458
459 sk_sp<GrTextureProxy> proxy(proxyProvider->findOrCreateProxyByUniqueKey(
Brian Osman5d034742017-09-11 13:38:55 -0400460 key, kTopLeft_GrSurfaceOrigin));
461 if (proxy) {
462 return proxy;
463 }
464
465 // The mask texture may be larger than necessary. We round out the clip bounds and pin the top
466 // left corner of the resulting rect to the top left of the texture.
467 SkIRect maskSpaceIBounds = SkIRect::MakeWH(reducedClip.width(), reducedClip.height());
468
469 SkTaskGroup* taskGroup = context->contextPriv().getTaskGroup();
470 if (taskGroup && renderTargetContext) {
471 // Create our texture proxy
472 GrSurfaceDesc desc;
Brian Osman5d034742017-09-11 13:38:55 -0400473 desc.fWidth = maskSpaceIBounds.width();
474 desc.fHeight = maskSpaceIBounds.height();
475 desc.fConfig = kAlpha_8_GrPixelConfig;
Brian Osmand140fe92017-10-03 12:17:26 -0400476 // MDB TODO: We're going to fill this proxy with an ASAP upload (which is out of order wrt
477 // to ops), so it can't have any pending IO.
Brian Salomon2a4f9832018-03-03 22:43:43 -0500478 proxy = proxyProvider->createProxy(desc, kTopLeft_GrSurfaceOrigin, SkBackingFit::kApprox,
Robert Phillipsfe0253f2018-03-16 16:47:25 -0400479 SkBudgeted::kYes, GrInternalSurfaceFlags::kNoPendingIO);
Brian Osman5d034742017-09-11 13:38:55 -0400480
Brian Osman099fa0f2017-10-02 16:38:32 -0400481 auto uploader = skstd::make_unique<GrTDeferredProxyUploader<ClipMaskData>>(reducedClip);
482 GrTDeferredProxyUploader<ClipMaskData>* uploaderRaw = uploader.get();
Brian Osman5d034742017-09-11 13:38:55 -0400483 auto drawAndUploadMask = [uploaderRaw, maskSpaceIBounds] {
484 TRACE_EVENT0("skia", "Threaded SW Clip Mask Render");
485 GrSWMaskHelper helper(uploaderRaw->getPixels());
486 if (helper.init(maskSpaceIBounds)) {
487 draw_clip_elements_to_mask_helper(helper, uploaderRaw->data().elements(),
Chris Dalton79471932017-10-27 01:50:57 -0600488 uploaderRaw->data().scissor(),
Brian Osman5d034742017-09-11 13:38:55 -0400489 uploaderRaw->data().initialState());
490 } else {
491 SkDEBUGFAIL("Unable to allocate SW clip mask.");
492 }
Brian Osman099fa0f2017-10-02 16:38:32 -0400493 uploaderRaw->signalAndFreeData();
Brian Osman5d034742017-09-11 13:38:55 -0400494 };
495
496 taskGroup->add(std::move(drawAndUploadMask));
Brian Osman099fa0f2017-10-02 16:38:32 -0400497 proxy->texPriv().setDeferredUploader(std::move(uploader));
Brian Osman5d034742017-09-11 13:38:55 -0400498 } else {
499 GrSWMaskHelper helper;
500 if (!helper.init(maskSpaceIBounds)) {
501 return nullptr;
502 }
503
Chris Dalton79471932017-10-27 01:50:57 -0600504 draw_clip_elements_to_mask_helper(helper, reducedClip.maskElements(), reducedClip.scissor(),
Brian Osman5d034742017-09-11 13:38:55 -0400505 reducedClip.initialState());
506
507 proxy = helper.toTextureProxy(context, SkBackingFit::kApprox);
508 }
509
510 SkASSERT(proxy->origin() == kTopLeft_GrSurfaceOrigin);
Robert Phillips1afd4cd2018-01-08 13:40:32 -0500511 proxyProvider->assignUniqueKeyToProxy(key, proxy.get());
Brian Salomon238069b2018-07-11 15:58:57 -0400512 add_invalidate_on_pop_message(*fStack, reducedClip.maskGenID(), key, context->uniqueID());
Brian Osman5d034742017-09-11 13:38:55 -0400513 return proxy;
robertphillips@google.com6b70a7b2012-05-11 15:32:48 +0000514}