blob: 7b50d5233279917e10fa408fb31c16f9cc6bf021 [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"
9
csmartdalton28341fa2016-08-17 10:00:21 -070010#include "GrAppliedClip.h"
csmartdaltonbde96c62016-08-31 12:54:46 -070011#include "GrContextPriv.h"
robertphillips68737822015-10-29 12:12:21 -070012#include "GrDrawingManager.h"
Brian Osman11052242016-10-27 14:47:55 -040013#include "GrRenderTargetContextPriv.h"
csmartdalton02fa32c2016-08-19 13:29:27 -070014#include "GrFixedClip.h"
bsalomon473addf2015-10-02 07:49:05 -070015#include "GrGpuResourcePriv.h"
csmartdalton28341fa2016-08-17 10:00:21 -070016#include "GrRenderTargetPriv.h"
egdaniel8dc7c3a2015-04-16 11:22:42 -070017#include "GrStencilAttachment.h"
robertphillips@google.com58b20212012-06-27 20:44:52 +000018#include "GrSWMaskHelper.h"
Robert Phillipse305cc1f2016-12-14 12:19:05 -050019#include "GrTextureProxy.h"
egdaniel8d95ffa2014-12-08 13:26:43 -080020#include "effects/GrConvexPolyEffect.h"
21#include "effects/GrRRectEffect.h"
egdaniel95131432014-12-09 11:15:43 -080022#include "effects/GrTextureDomain.h"
Mike Reedebfce6d2016-12-12 10:02:12 -050023#include "SkClipOpPriv.h"
bsalomon@google.comc6b3e482012-12-07 20:43:52 +000024
bsalomon@google.com8182fa02012-12-04 14:06:06 +000025typedef SkClipStack::Element Element;
csmartdaltoncbecb082016-07-22 08:59:08 -070026typedef GrReducedClip::InitialState InitialState;
csmartdalton77f2fae2016-08-08 09:55:06 -070027typedef GrReducedClip::ElementList ElementList;
bsalomon@google.com51a62862012-11-26 21:19:43 +000028
robertphillips976f5f02016-06-03 10:59:20 -070029static const int kMaxAnalyticElements = 4;
Brian Salomon19f0ed52017-01-06 13:54:58 -050030const char GrClipStackClip::kMaskTestTag[] = "clip_mask";
robertphillips976f5f02016-06-03 10:59:20 -070031
csmartdaltonc6f411e2016-08-05 22:32:12 -070032bool GrClipStackClip::quickContains(const SkRect& rect) const {
reed4d2cce42016-08-22 13:03:47 -070033 if (!fStack || fStack->isWideOpen()) {
csmartdaltonc6f411e2016-08-05 22:32:12 -070034 return true;
35 }
36 return fStack->quickContains(rect.makeOffset(SkIntToScalar(fOrigin.x()),
37 SkIntToScalar(fOrigin.y())));
38}
39
bsalomon7f0d9f32016-08-15 14:49:10 -070040bool GrClipStackClip::quickContains(const SkRRect& rrect) const {
reed4d2cce42016-08-22 13:03:47 -070041 if (!fStack || fStack->isWideOpen()) {
bsalomon7f0d9f32016-08-15 14:49:10 -070042 return true;
43 }
44 return fStack->quickContains(rrect.makeOffset(SkIntToScalar(fOrigin.fX),
45 SkIntToScalar(fOrigin.fY)));
46}
47
Brian Salomon0e8fc8b2016-12-09 15:10:07 -050048bool GrClipStackClip::isRRect(const SkRect& origRTBounds, SkRRect* rr, GrAA* aa) const {
bsalomoncb31e512016-08-26 10:48:19 -070049 if (!fStack) {
50 return false;
51 }
52 const SkRect* rtBounds = &origRTBounds;
53 SkRect tempRTBounds;
54 bool origin = fOrigin.fX || fOrigin.fY;
55 if (origin) {
56 tempRTBounds = origRTBounds;
57 tempRTBounds.offset(SkIntToScalar(fOrigin.fX), SkIntToScalar(fOrigin.fY));
58 rtBounds = &tempRTBounds;
59 }
Brian Salomon0e8fc8b2016-12-09 15:10:07 -050060 bool isAA;
61 if (fStack->isRRect(*rtBounds, rr, &isAA)) {
62 *aa = GrBoolToAA(isAA);
bsalomoncb31e512016-08-26 10:48:19 -070063 if (origin) {
64 rr->offset(-SkIntToScalar(fOrigin.fX), -SkIntToScalar(fOrigin.fY));
65 }
66 return true;
67 }
68 return false;
69}
70
csmartdaltonc6f411e2016-08-05 22:32:12 -070071void GrClipStackClip::getConservativeBounds(int width, int height, SkIRect* devResult,
72 bool* isIntersectionOfRects) const {
73 if (!fStack) {
74 devResult->setXYWH(0, 0, width, height);
75 if (isIntersectionOfRects) {
76 *isIntersectionOfRects = true;
77 }
78 return;
79 }
80 SkRect devBounds;
81 fStack->getConservativeBounds(-fOrigin.x(), -fOrigin.y(), width, height, &devBounds,
82 isIntersectionOfRects);
83 devBounds.roundOut(devResult);
84}
85
bsalomon@google.com51a62862012-11-26 21:19:43 +000086////////////////////////////////////////////////////////////////////////////////
Brian Salomon2ebd0c82016-10-03 17:15:28 -040087// set up the draw state to enable the aa clipping mask.
bungeman06ca8ec2016-06-09 08:01:03 -070088static sk_sp<GrFragmentProcessor> create_fp_for_mask(GrTexture* result,
89 const SkIRect &devBound) {
bsalomon@google.com7b7cdd12012-11-07 16:17:24 +000090 SkIRect domainTexels = SkIRect::MakeWH(devBound.width(), devBound.height());
Brian Salomon2ebd0c82016-10-03 17:15:28 -040091 return GrDeviceSpaceTextureDecalFragmentProcessor::Make(result, domainTexels,
92 {devBound.fLeft, devBound.fTop});
robertphillips@google.coma72eef32012-05-01 17:22:59 +000093}
94
robertphillips3f7357f2015-10-27 07:17:33 -070095// Does the path in 'element' require SW rendering? If so, return true (and,
96// optionally, set 'prOut' to NULL. If not, return false (and, optionally, set
97// 'prOut' to the non-SW path renderer that will do the job).
csmartdaltonc6f411e2016-08-05 22:32:12 -070098bool GrClipStackClip::PathNeedsSWRenderer(GrContext* context,
99 bool hasUserStencilSettings,
Brian Osman11052242016-10-27 14:47:55 -0400100 const GrRenderTargetContext* renderTargetContext,
csmartdaltonc6f411e2016-08-05 22:32:12 -0700101 const SkMatrix& viewMatrix,
102 const Element* element,
103 GrPathRenderer** prOut,
104 bool needsStencil) {
robertphillips3f7357f2015-10-27 07:17:33 -0700105 if (Element::kRect_Type == element->getType()) {
106 // rects can always be drawn directly w/o using the software path
107 // TODO: skip rrects once we're drawing them directly.
108 if (prOut) {
109 *prOut = nullptr;
110 }
111 return false;
112 } else {
113 // We shouldn't get here with an empty clip element.
114 SkASSERT(Element::kEmpty_Type != element->getType());
robertphillips5c3ea4c2015-10-26 08:33:10 -0700115
robertphillips3f7357f2015-10-27 07:17:33 -0700116 // the gpu alpha mask will draw the inverse paths as non-inverse to a temp buffer
117 SkPath path;
118 element->asPath(&path);
119 if (path.isInverseFillType()) {
120 path.toggleInverseFillType();
121 }
halcanary9d524f22016-03-29 09:03:52 -0700122
Brian Salomon82125e92016-12-10 09:35:48 -0500123 GrPathRendererChain::DrawType type =
124 needsStencil ? GrPathRendererChain::DrawType::kStencilAndColor
125 : GrPathRendererChain::DrawType::kColor;
halcanary9d524f22016-03-29 09:03:52 -0700126
bsalomon8acedde2016-06-24 10:42:16 -0700127 GrShape shape(path, GrStyle::SimpleFill());
robertphillips68737822015-10-29 12:12:21 -0700128 GrPathRenderer::CanDrawPathArgs canDrawArgs;
129 canDrawArgs.fShaderCaps = context->caps()->shaderCaps();
130 canDrawArgs.fViewMatrix = &viewMatrix;
bsalomon8acedde2016-06-24 10:42:16 -0700131 canDrawArgs.fShape = &shape;
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500132 if (!element->isAA()) {
133 canDrawArgs.fAAType = GrAAType::kNone;
134 } else if (renderTargetContext->isUnifiedMultisampled()) {
135 canDrawArgs.fAAType = GrAAType::kMSAA;
136 } else if (renderTargetContext->isStencilBufferMultisampled()){
137 canDrawArgs.fAAType = GrAAType::kMixedSamples;
138 } else {
139 canDrawArgs.fAAType = GrAAType::kCoverage;
140 }
cdalton93a379b2016-05-11 13:58:08 -0700141 canDrawArgs.fHasUserStencilSettings = hasUserStencilSettings;
robertphillips68737822015-10-29 12:12:21 -0700142
robertphillips3f7357f2015-10-27 07:17:33 -0700143 // the 'false' parameter disallows use of the SW path renderer
csmartdaltonbde96c62016-08-31 12:54:46 -0700144 GrPathRenderer* pr =
145 context->contextPriv().drawingManager()->getPathRenderer(canDrawArgs, false, type);
robertphillips3f7357f2015-10-27 07:17:33 -0700146 if (prOut) {
147 *prOut = pr;
148 }
149 return SkToBool(!pr);
150 }
robertphillips@google.come79f3202014-02-11 16:30:21 +0000151}
robertphillips@google.com6b70a7b2012-05-11 15:32:48 +0000152
robertphillips@google.comfa662942012-05-17 12:20:22 +0000153/*
154 * This method traverses the clip stack to see if the GrSoftwarePathRenderer
155 * will be used on any element. If so, it returns true to indicate that the
156 * entire clip should be rendered in SW and then uploaded en masse to the gpu.
157 */
csmartdaltonc6f411e2016-08-05 22:32:12 -0700158bool GrClipStackClip::UseSWOnlyPath(GrContext* context,
159 bool hasUserStencilSettings,
Brian Osman11052242016-10-27 14:47:55 -0400160 const GrRenderTargetContext* renderTargetContext,
csmartdaltonbde96c62016-08-31 12:54:46 -0700161 const GrReducedClip& reducedClip) {
robertphillips@google.com8a4fc402012-05-24 12:42:24 +0000162 // TODO: generalize this function so that when
robertphillips@google.comfa662942012-05-17 12:20:22 +0000163 // a clip gets complex enough it can just be done in SW regardless
164 // of whether it would invoke the GrSoftwarePathRenderer.
skia.committer@gmail.comd21444a2012-12-07 02:01:25 +0000165
joshualitt8059eb92014-12-29 15:10:07 -0800166 // Set the matrix so that rendered clip elements are transformed to mask space from clip
167 // space.
csmartdaltonbde96c62016-08-31 12:54:46 -0700168 SkMatrix translate;
169 translate.setTranslate(SkIntToScalar(-reducedClip.left()), SkIntToScalar(-reducedClip.top()));
joshualitt8059eb92014-12-29 15:10:07 -0800170
csmartdaltonbde96c62016-08-31 12:54:46 -0700171 for (ElementList::Iter iter(reducedClip.elements()); iter.get(); iter.next()) {
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000172 const Element* element = iter.get();
robertphillips3f7357f2015-10-27 07:17:33 -0700173
Mike Reedc1f77742016-12-09 09:00:50 -0500174 SkClipOp op = element->getOp();
robertphillips3f7357f2015-10-27 07:17:33 -0700175 bool invert = element->isInverseFilled();
halcanary9d524f22016-03-29 09:03:52 -0700176 bool needsStencil = invert ||
Mike Reedc1f77742016-12-09 09:00:50 -0500177 kIntersect_SkClipOp == op || kReverseDifference_SkClipOp == op;
robertphillips3f7357f2015-10-27 07:17:33 -0700178
robertphillips59cf61a2016-07-13 09:18:21 -0700179 if (PathNeedsSWRenderer(context, hasUserStencilSettings,
Brian Osman11052242016-10-27 14:47:55 -0400180 renderTargetContext, translate, element, nullptr, needsStencil)) {
robertphillips3f7357f2015-10-27 07:17:33 -0700181 return true;
robertphillips@google.comfa662942012-05-17 12:20:22 +0000182 }
robertphillips@google.comfa662942012-05-17 12:20:22 +0000183 }
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000184 return false;
robertphillips@google.coma72eef32012-05-01 17:22:59 +0000185}
186
csmartdalton77f2fae2016-08-08 09:55:06 -0700187static bool get_analytic_clip_processor(const ElementList& elements,
robertphillips976f5f02016-06-03 10:59:20 -0700188 bool abortIfAA,
csmartdaltoncbecb082016-07-22 08:59:08 -0700189 const SkVector& clipToRTOffset,
bsalomonbd2bbe42016-07-08 07:36:42 -0700190 const SkRect& drawBounds,
bungeman06ca8ec2016-06-09 08:01:03 -0700191 sk_sp<GrFragmentProcessor>* resultFP) {
commit-bot@chromium.orge5a041c2014-03-07 19:43:43 +0000192 SkRect boundsInClipSpace;
bsalomonbd2bbe42016-07-08 07:36:42 -0700193 boundsInClipSpace = drawBounds.makeOffset(-clipToRTOffset.fX, -clipToRTOffset.fY);
bsalomon0ba8c242015-10-07 09:20:28 -0700194 SkASSERT(elements.count() <= kMaxAnalyticElements);
bungeman06ca8ec2016-06-09 08:01:03 -0700195 SkSTArray<kMaxAnalyticElements, sk_sp<GrFragmentProcessor>> fps;
csmartdalton77f2fae2016-08-08 09:55:06 -0700196 ElementList::Iter iter(elements);
bsalomon49f085d2014-09-05 13:34:00 -0700197 while (iter.get()) {
Mike Reedc1f77742016-12-09 09:00:50 -0500198 SkClipOp op = iter.get()->getOp();
commit-bot@chromium.orge5a041c2014-03-07 19:43:43 +0000199 bool invert;
200 bool skip = false;
201 switch (op) {
Mike Reedebfce6d2016-12-12 10:02:12 -0500202 case kReplace_SkClipOp:
commit-bot@chromium.orge5a041c2014-03-07 19:43:43 +0000203 SkASSERT(iter.get() == elements.head());
204 // Fallthrough, handled same as intersect.
Mike Reedebfce6d2016-12-12 10:02:12 -0500205 case kIntersect_SkClipOp:
commit-bot@chromium.orge5a041c2014-03-07 19:43:43 +0000206 invert = false;
bsalomonbd2bbe42016-07-08 07:36:42 -0700207 if (iter.get()->contains(boundsInClipSpace)) {
commit-bot@chromium.orge5a041c2014-03-07 19:43:43 +0000208 skip = true;
209 }
210 break;
Mike Reedebfce6d2016-12-12 10:02:12 -0500211 case kDifference_SkClipOp:
commit-bot@chromium.orge5a041c2014-03-07 19:43:43 +0000212 invert = true;
213 // We don't currently have a cheap test for whether a rect is fully outside an
214 // element's primitive, so don't attempt to set skip.
215 break;
216 default:
bungeman06ca8ec2016-06-09 08:01:03 -0700217 return false;
commit-bot@chromium.orge5a041c2014-03-07 19:43:43 +0000218 }
commit-bot@chromium.orge5a041c2014-03-07 19:43:43 +0000219 if (!skip) {
joshualittb0a8a372014-09-23 09:50:21 -0700220 GrPrimitiveEdgeType edgeType;
robertphillipse85a32d2015-02-10 08:16:55 -0800221 if (iter.get()->isAA()) {
bsalomona912dde2015-10-14 15:01:50 -0700222 if (abortIfAA) {
bungeman06ca8ec2016-06-09 08:01:03 -0700223 return false;
bsalomona912dde2015-10-14 15:01:50 -0700224 }
joshualittb0a8a372014-09-23 09:50:21 -0700225 edgeType =
bsalomon0ba8c242015-10-07 09:20:28 -0700226 invert ? kInverseFillAA_GrProcessorEdgeType : kFillAA_GrProcessorEdgeType;
commit-bot@chromium.orge5a041c2014-03-07 19:43:43 +0000227 } else {
bsalomon0ba8c242015-10-07 09:20:28 -0700228 edgeType =
229 invert ? kInverseFillBW_GrProcessorEdgeType : kFillBW_GrProcessorEdgeType;
commit-bot@chromium.orge5a041c2014-03-07 19:43:43 +0000230 }
bsalomona912dde2015-10-14 15:01:50 -0700231
commit-bot@chromium.orge5a041c2014-03-07 19:43:43 +0000232 switch (iter.get()->getType()) {
233 case SkClipStack::Element::kPath_Type:
bungeman06ca8ec2016-06-09 08:01:03 -0700234 fps.emplace_back(GrConvexPolyEffect::Make(edgeType, iter.get()->getPath(),
235 &clipToRTOffset));
commit-bot@chromium.orge5a041c2014-03-07 19:43:43 +0000236 break;
237 case SkClipStack::Element::kRRect_Type: {
238 SkRRect rrect = iter.get()->getRRect();
239 rrect.offset(clipToRTOffset.fX, clipToRTOffset.fY);
bungeman06ca8ec2016-06-09 08:01:03 -0700240 fps.emplace_back(GrRRectEffect::Make(edgeType, rrect));
commit-bot@chromium.orge5a041c2014-03-07 19:43:43 +0000241 break;
242 }
243 case SkClipStack::Element::kRect_Type: {
244 SkRect rect = iter.get()->getRect();
245 rect.offset(clipToRTOffset.fX, clipToRTOffset.fY);
bungeman06ca8ec2016-06-09 08:01:03 -0700246 fps.emplace_back(GrConvexPolyEffect::Make(edgeType, rect));
commit-bot@chromium.orge5a041c2014-03-07 19:43:43 +0000247 break;
248 }
249 default:
250 break;
251 }
bungeman06ca8ec2016-06-09 08:01:03 -0700252 if (!fps.back()) {
253 return false;
commit-bot@chromium.orge5a041c2014-03-07 19:43:43 +0000254 }
255 }
mtklein217daa72014-07-02 12:55:21 -0700256 iter.next();
commit-bot@chromium.orge5a041c2014-03-07 19:43:43 +0000257 }
258
bsalomon0b5b6b22015-10-14 08:31:34 -0700259 *resultFP = nullptr;
bungeman06ca8ec2016-06-09 08:01:03 -0700260 if (fps.count()) {
261 *resultFP = GrFragmentProcessor::RunInSeries(fps.begin(), fps.count());
commit-bot@chromium.orge5a041c2014-03-07 19:43:43 +0000262 }
bungeman06ca8ec2016-06-09 08:01:03 -0700263 return true;
commit-bot@chromium.orge5a041c2014-03-07 19:43:43 +0000264}
265
robertphillips@google.comf294b772012-04-27 14:29:26 +0000266////////////////////////////////////////////////////////////////////////////////
robertphillips@google.com6b70a7b2012-05-11 15:32:48 +0000267// sort out what kind of clip mask needs to be created: alpha, stencil,
268// scissor, or entirely software
Brian Osman11052242016-10-27 14:47:55 -0400269bool GrClipStackClip::apply(GrContext* context, GrRenderTargetContext* renderTargetContext,
270 bool useHWAA, bool hasUserStencilSettings, GrAppliedClip* out) const {
csmartdaltonc6f411e2016-08-05 22:32:12 -0700271 if (!fStack || fStack->isWideOpen()) {
cdalton846c0512016-05-13 10:25:00 -0700272 return true;
joshualitt7a6184f2014-10-29 18:29:27 -0700273 }
bsalomon@google.coma3201942012-06-21 19:58:20 +0000274
Robert Phillips784b7bf2016-12-09 13:35:02 -0500275 SkRect devBounds = SkRect::MakeIWH(renderTargetContext->width(),
276 renderTargetContext->height());
csmartdaltond211e782016-08-15 11:17:19 -0700277 if (!devBounds.intersect(out->clippedDrawBounds())) {
csmartdaltoncbecb082016-07-22 08:59:08 -0700278 return false;
279 }
280
csmartdaltonc6f411e2016-08-05 22:32:12 -0700281 const SkScalar clipX = SkIntToScalar(fOrigin.x()),
282 clipY = SkIntToScalar(fOrigin.y());
csmartdaltoncbecb082016-07-22 08:59:08 -0700283
csmartdalton77f2fae2016-08-08 09:55:06 -0700284 SkRect clipSpaceDevBounds = devBounds.makeOffset(clipX, clipY);
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700285 const GrReducedClip reducedClip(*fStack, clipSpaceDevBounds,
Robert Phillipsec2249f2016-11-09 08:54:35 -0500286 renderTargetContext->priv().maxWindowRectangles());
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000287
csmartdaltond211e782016-08-15 11:17:19 -0700288 if (reducedClip.hasIBounds() &&
289 !GrClip::IsInsideClip(reducedClip.ibounds(), clipSpaceDevBounds)) {
290 SkIRect scissorSpaceIBounds(reducedClip.ibounds());
291 scissorSpaceIBounds.offset(-fOrigin);
292 out->addScissor(scissorSpaceIBounds);
cdalton846c0512016-05-13 10:25:00 -0700293 }
cdalton93a379b2016-05-11 13:58:08 -0700294
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700295 if (!reducedClip.windowRectangles().empty()) {
296 out->addWindowRectangles(reducedClip.windowRectangles(), fOrigin,
297 GrWindowRectsState::Mode::kExclusive);
298 }
299
csmartdaltond211e782016-08-15 11:17:19 -0700300 if (reducedClip.elements().isEmpty()) {
301 return InitialState::kAllIn == reducedClip.initialState();
302 }
303
csmartdalton3affdc12016-10-28 12:01:10 -0700304#ifdef SK_DEBUG
csmartdaltond211e782016-08-15 11:17:19 -0700305 SkASSERT(reducedClip.hasIBounds());
Robert Phillips784b7bf2016-12-09 13:35:02 -0500306 SkIRect rtIBounds = SkIRect::MakeWH(renderTargetContext->width(),
307 renderTargetContext->height());
csmartdalton3affdc12016-10-28 12:01:10 -0700308 SkIRect clipIBounds = reducedClip.ibounds().makeOffset(-fOrigin.x(), -fOrigin.y());
309 SkASSERT(rtIBounds.contains(clipIBounds)); // Mask shouldn't be larger than the RT.
310#endif
csmartdaltond211e782016-08-15 11:17:19 -0700311
commit-bot@chromium.orge5a041c2014-03-07 19:43:43 +0000312 // An element count of 4 was chosen because of the common pattern in Blink of:
313 // isect RR
314 // diff RR
315 // isect convex_poly
316 // isect convex_poly
317 // when drawing rounded div borders. This could probably be tuned based on a
318 // configuration's relative costs of switching RTs to generate a mask vs
319 // longer shaders.
csmartdalton77f2fae2016-08-08 09:55:06 -0700320 if (reducedClip.elements().count() <= kMaxAnalyticElements) {
cdaltonede75742015-11-11 15:27:57 -0800321 // When there are multiple samples we want to do per-sample clipping, not compute a
322 // fractional pixel coverage.
Brian Osman11052242016-10-27 14:47:55 -0400323 bool disallowAnalyticAA = renderTargetContext->isStencilBufferMultisampled();
324 if (disallowAnalyticAA && !renderTargetContext->numColorSamples()) {
cdalton3ccf2e72016-05-06 09:41:16 -0700325 // With a single color sample, any coverage info is lost from color once it hits the
326 // color buffer anyway, so we may as well use coverage AA if nothing else in the pipe
327 // is multisampled.
robertphillips59cf61a2016-07-13 09:18:21 -0700328 disallowAnalyticAA = useHWAA || hasUserStencilSettings;
cdalton3ccf2e72016-05-06 09:41:16 -0700329 }
bungeman06ca8ec2016-06-09 08:01:03 -0700330 sk_sp<GrFragmentProcessor> clipFP;
csmartdalton77f2fae2016-08-08 09:55:06 -0700331 if (reducedClip.requiresAA() &&
332 get_analytic_clip_processor(reducedClip.elements(), disallowAnalyticAA,
333 {-clipX, -clipY}, devBounds, &clipFP)) {
csmartdaltond211e782016-08-15 11:17:19 -0700334 out->addCoverageFP(std::move(clipFP));
commit-bot@chromium.org65ee5f42014-02-04 17:49:48 +0000335 return true;
336 }
337 }
bsalomon@google.comd3066bd2014-02-03 20:09:56 +0000338
cdaltonede75742015-11-11 15:27:57 -0800339 // If the stencil buffer is multisampled we can use it to do everything.
Brian Osman11052242016-10-27 14:47:55 -0400340 if (!renderTargetContext->isStencilBufferMultisampled() && reducedClip.requiresAA()) {
robertphillipsc99b8f02016-05-15 07:53:35 -0700341 sk_sp<GrTexture> result;
Brian Osman11052242016-10-27 14:47:55 -0400342 if (UseSWOnlyPath(context, hasUserStencilSettings, renderTargetContext, reducedClip)) {
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000343 // The clip geometry is complex enough that it will be more efficient to create it
344 // entirely in software
Brian Salomon19f0ed52017-01-06 13:54:58 -0500345 result = this->createSoftwareClipMask(context, reducedClip);
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000346 } else {
Brian Salomon19f0ed52017-01-06 13:54:58 -0500347 result = this->createAlphaClipMask(context, reducedClip);
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000348 }
349
bsalomon49f085d2014-09-05 13:34:00 -0700350 if (result) {
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000351 // The mask's top left coord should be pinned to the rounded-out top left corner of
352 // clipSpace bounds. We determine the mask's position WRT to the render target here.
csmartdaltond211e782016-08-15 11:17:19 -0700353 SkIRect rtSpaceMaskBounds = reducedClip.ibounds();
csmartdaltonc6f411e2016-08-05 22:32:12 -0700354 rtSpaceMaskBounds.offset(-fOrigin);
csmartdaltond211e782016-08-15 11:17:19 -0700355 out->addCoverageFP(create_fp_for_mask(result.get(), rtSpaceMaskBounds));
robertphillips@google.comf294b772012-04-27 14:29:26 +0000356 return true;
357 }
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000358 // if alpha clip mask creation fails fall through to the non-AA code paths
robertphillips@google.comf294b772012-04-27 14:29:26 +0000359 }
robertphillips@google.comf294b772012-04-27 14:29:26 +0000360
Robert Phillipsec2249f2016-11-09 08:54:35 -0500361 GrRenderTarget* rt = renderTargetContext->accessRenderTarget();
Robert Phillipse60ad622016-11-17 10:22:48 -0500362 if (!rt) {
363 return true;
364 }
Robert Phillipsec2249f2016-11-09 08:54:35 -0500365
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000366 // use the stencil clip if we can't represent the clip as a rectangle.
csmartdalton7cdda992016-11-01 07:03:03 -0700367 if (!context->resourceProvider()->attachStencilAttachment(rt)) {
csmartdaltonbde96c62016-08-31 12:54:46 -0700368 SkDebugf("WARNING: failed to attach stencil buffer for clip mask. Clip will be ignored.\n");
369 return true;
370 }
371
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700372 // This relies on the property that a reduced sub-rect of the last clip will contain all the
373 // relevant window rectangles that were in the last clip. This subtle requirement will go away
374 // after clipping is overhauled.
csmartdalton7cdda992016-11-01 07:03:03 -0700375 if (renderTargetContext->priv().mustRenderClip(reducedClip.elementsGenID(),
376 reducedClip.ibounds(), fOrigin)) {
Brian Osman11052242016-10-27 14:47:55 -0400377 reducedClip.drawStencilClipMask(context, renderTargetContext, fOrigin);
csmartdalton7cdda992016-11-01 07:03:03 -0700378 renderTargetContext->priv().setLastClip(reducedClip.elementsGenID(), reducedClip.ibounds(),
379 fOrigin);
csmartdaltonbde96c62016-08-31 12:54:46 -0700380 }
csmartdaltond211e782016-08-15 11:17:19 -0700381 out->addStencilClip();
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000382 return true;
383}
384
robertphillips@google.com6b70a7b2012-05-11 15:32:48 +0000385////////////////////////////////////////////////////////////////////////////////
bsalomon473addf2015-10-02 07:49:05 -0700386// Create a 8-bit clip mask in alpha
387
Brian Salomon19f0ed52017-01-06 13:54:58 -0500388static void create_clip_mask_key(int32_t clipGenID, const SkIRect& bounds, GrUniqueKey* key) {
bsalomon473addf2015-10-02 07:49:05 -0700389 static const GrUniqueKey::Domain kDomain = GrUniqueKey::GenerateDomain();
Brian Salomon19f0ed52017-01-06 13:54:58 -0500390 GrUniqueKey::Builder builder(key, kDomain, 3, GrClipStackClip::kMaskTestTag);
bsalomon473addf2015-10-02 07:49:05 -0700391 builder[0] = clipGenID;
csmartdalton3affdc12016-10-28 12:01:10 -0700392 // SkToS16 because image filters outset layers to a size indicated by the filter, which can
393 // sometimes result in negative coordinates from clip space.
394 builder[1] = SkToS16(bounds.fLeft) | (SkToS16(bounds.fRight) << 16);
395 builder[2] = SkToS16(bounds.fTop) | (SkToS16(bounds.fBottom) << 16);
bsalomon473addf2015-10-02 07:49:05 -0700396}
397
Brian Salomon19f0ed52017-01-06 13:54:58 -0500398static void add_invalidate_on_pop_message(const SkClipStack& stack, int32_t clipGenID,
399 const GrUniqueKey& clipMaskKey) {
400 SkClipStack::Iter iter(stack, SkClipStack::Iter::kTop_IterStart);
401 while (const Element* element = iter.prev()) {
402 if (element->getGenID() == clipGenID) {
403 std::unique_ptr<GrUniqueKeyInvalidatedMessage> msg(
404 new GrUniqueKeyInvalidatedMessage(clipMaskKey));
405 element->addResourceInvalidationMessage(std::move(msg));
406 return;
407 }
408 }
409 SkDEBUGFAIL("Gen ID was not found in stack.");
410}
411
412sk_sp<GrTexture> GrClipStackClip::createAlphaClipMask(GrContext* context,
413 const GrReducedClip& reducedClip) const {
robertphillips391395d2016-03-02 09:26:36 -0800414 GrResourceProvider* resourceProvider = context->resourceProvider();
bsalomon473addf2015-10-02 07:49:05 -0700415 GrUniqueKey key;
Brian Salomon19f0ed52017-01-06 13:54:58 -0500416 create_clip_mask_key(reducedClip.elementsGenID(), reducedClip.ibounds(), &key);
bsalomon473addf2015-10-02 07:49:05 -0700417 if (GrTexture* texture = resourceProvider->findAndRefTextureByUniqueKey(key)) {
robertphillipsc99b8f02016-05-15 07:53:35 -0700418 return sk_sp<GrTexture>(texture);
robertphillips@google.com6b70a7b2012-05-11 15:32:48 +0000419 }
420
Brian Osman11052242016-10-27 14:47:55 -0400421 sk_sp<GrRenderTargetContext> rtc(context->makeRenderTargetContextWithFallback(
422 SkBackingFit::kApprox,
423 reducedClip.width(),
424 reducedClip.height(),
425 kAlpha_8_GrPixelConfig,
426 nullptr));
427 if (!rtc) {
robertphillips391395d2016-03-02 09:26:36 -0800428 return nullptr;
429 }
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000430
Brian Osman11052242016-10-27 14:47:55 -0400431 if (!reducedClip.drawAlphaClipMask(rtc.get())) {
csmartdaltonbde96c62016-08-31 12:54:46 -0700432 return nullptr;
robertphillips@google.comf294b772012-04-27 14:29:26 +0000433 }
434
Brian Osman11052242016-10-27 14:47:55 -0400435 sk_sp<GrTexture> texture(rtc->asTexture());
Robert Phillipse60ad622016-11-17 10:22:48 -0500436 if (!texture) {
437 return nullptr;
438 }
439
robertphillipsc99b8f02016-05-15 07:53:35 -0700440 texture->resourcePriv().setUniqueKey(key);
Brian Salomon19f0ed52017-01-06 13:54:58 -0500441 add_invalidate_on_pop_message(*fStack, reducedClip.elementsGenID(), key);
robertphillipsc99b8f02016-05-15 07:53:35 -0700442 return texture;
robertphillips@google.comf294b772012-04-27 14:29:26 +0000443}
444
Brian Salomon19f0ed52017-01-06 13:54:58 -0500445sk_sp<GrTexture> GrClipStackClip::createSoftwareClipMask(GrContext* context,
446 const GrReducedClip& reducedClip) const {
bsalomon473addf2015-10-02 07:49:05 -0700447 GrUniqueKey key;
Brian Salomon19f0ed52017-01-06 13:54:58 -0500448 create_clip_mask_key(reducedClip.elementsGenID(), reducedClip.ibounds(), &key);
Robert Phillipse305cc1f2016-12-14 12:19:05 -0500449 if (GrTexture* texture = context->textureProvider()->findAndRefTextureByUniqueKey(key)) {
robertphillipsc99b8f02016-05-15 07:53:35 -0700450 return sk_sp<GrTexture>(texture);
robertphillips@google.com6b70a7b2012-05-11 15:32:48 +0000451 }
452
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000453 // The mask texture may be larger than necessary. We round out the clip space bounds and pin
454 // the top left corner of the resulting rect to the top left of the texture.
csmartdalton77f2fae2016-08-08 09:55:06 -0700455 SkIRect maskSpaceIBounds = SkIRect::MakeWH(reducedClip.width(), reducedClip.height());
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000456
Robert Phillipse305cc1f2016-12-14 12:19:05 -0500457 GrSWMaskHelper helper;
robertphillips@google.com6b70a7b2012-05-11 15:32:48 +0000458
joshualitt8059eb92014-12-29 15:10:07 -0800459 // Set the matrix so that rendered clip elements are transformed to mask space from clip
460 // space.
461 SkMatrix translate;
csmartdaltonbde96c62016-08-31 12:54:46 -0700462 translate.setTranslate(SkIntToScalar(-reducedClip.left()), SkIntToScalar(-reducedClip.top()));
joshualitt9853cce2014-11-17 14:22:48 -0800463
csmartdalton3affdc12016-10-28 12:01:10 -0700464 if (!helper.init(maskSpaceIBounds, &translate)) {
465 return nullptr;
466 }
csmartdaltond211e782016-08-15 11:17:19 -0700467 helper.clear(InitialState::kAllIn == reducedClip.initialState() ? 0xFF : 0x00);
sugoi@google.com12b4e272012-12-06 20:13:11 +0000468
csmartdalton77f2fae2016-08-08 09:55:06 -0700469 for (ElementList::Iter iter(reducedClip.elements()); iter.get(); iter.next()) {
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000470 const Element* element = iter.get();
Mike Reedc1f77742016-12-09 09:00:50 -0500471 SkClipOp op = element->getOp();
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500472 GrAA aa = GrBoolToAA(element->isAA());
robertphillips@google.comfa662942012-05-17 12:20:22 +0000473
Mike Reedc1f77742016-12-09 09:00:50 -0500474 if (kIntersect_SkClipOp == op || kReverseDifference_SkClipOp == op) {
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000475 // Intersect and reverse difference require modifying pixels outside of the geometry
476 // that is being "drawn". In both cases we erase all the pixels outside of the geometry
477 // but leave the pixels inside the geometry alone. For reverse difference we invert all
478 // the pixels before clearing the ones outside the geometry.
Mike Reedc1f77742016-12-09 09:00:50 -0500479 if (kReverseDifference_SkClipOp == op) {
csmartdaltond211e782016-08-15 11:17:19 -0700480 SkRect temp = SkRect::Make(reducedClip.ibounds());
robertphillips@google.comfa662942012-05-17 12:20:22 +0000481 // invert the entire scene
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500482 helper.drawRect(temp, SkRegion::kXOR_Op, GrAA::kNo, 0xFF);
robertphillips@google.comfa662942012-05-17 12:20:22 +0000483 }
commit-bot@chromium.org5c056392014-02-17 19:50:02 +0000484 SkPath clipPath;
485 element->asPath(&clipPath);
486 clipPath.toggleInverseFillType();
bsalomon8acedde2016-06-24 10:42:16 -0700487 GrShape shape(clipPath, GrStyle::SimpleFill());
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500488 helper.drawShape(shape, SkRegion::kReplace_Op, aa, 0x00);
robertphillips@google.comfa662942012-05-17 12:20:22 +0000489 continue;
490 }
491
492 // The other ops (union, xor, diff) only affect pixels inside
493 // the geometry so they can just be drawn normally
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000494 if (Element::kRect_Type == element->getType()) {
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500495 helper.drawRect(element->getRect(), (SkRegion::Op)op, aa, 0xFF);
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000496 } else {
commit-bot@chromium.org5c056392014-02-17 19:50:02 +0000497 SkPath path;
498 element->asPath(&path);
bsalomon8acedde2016-06-24 10:42:16 -0700499 GrShape shape(path, GrStyle::SimpleFill());
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500500 helper.drawShape(shape, (SkRegion::Op)op, aa, 0xFF);
robertphillips@google.com6b70a7b2012-05-11 15:32:48 +0000501 }
502 }
503
Robert Phillipse305cc1f2016-12-14 12:19:05 -0500504 sk_sp<GrTextureProxy> result(helper.toTexture(context, SkBackingFit::kApprox));
robertphillips391395d2016-03-02 09:26:36 -0800505
Robert Phillipse305cc1f2016-12-14 12:19:05 -0500506 GrTexture* tex = result->instantiate(context->textureProvider());
507 if (!tex) {
halcanary96fcdcc2015-08-27 07:41:13 -0700508 return nullptr;
krajcevskiad1dc582014-06-10 15:06:47 -0700509 }
robertphillips391395d2016-03-02 09:26:36 -0800510
Robert Phillipse305cc1f2016-12-14 12:19:05 -0500511 tex->resourcePriv().setUniqueKey(key);
Brian Salomon19f0ed52017-01-06 13:54:58 -0500512 add_invalidate_on_pop_message(*fStack, reducedClip.elementsGenID(), key);
Robert Phillipse305cc1f2016-12-14 12:19:05 -0500513 return sk_ref_sp(tex);
robertphillips@google.com6b70a7b2012-05-11 15:32:48 +0000514}