blob: 99c74e3c3f5d09133e1da6b667c9e6452e24e886 [file] [log] [blame]
robertphillips@google.com1e945b72012-04-16 18:03:03 +00001/*
2 * Copyright 2012 Google Inc.
3 *
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 "GrClipMaskManager.h"
robertphillips@google.comfa662942012-05-17 12:20:22 +00009#include "GrAAConvexPathRenderer.h"
10#include "GrAAHairLinePathRenderer.h"
jvanverth@google.combfe2b9d2013-09-06 16:57:29 +000011#include "GrAARectRenderer.h"
bsalomon@google.comc26d94f2013-03-25 18:19:00 +000012#include "GrDrawTargetCaps.h"
bsalomon@google.comc26d94f2013-03-25 18:19:00 +000013#include "GrPaint.h"
14#include "GrPathRenderer.h"
15#include "GrRenderTarget.h"
bsalomon6bc1b5f2015-02-23 09:06:38 -080016#include "GrRenderTargetPriv.h"
bsalomon@google.comc26d94f2013-03-25 18:19:00 +000017#include "GrStencilBuffer.h"
robertphillips@google.com58b20212012-06-27 20:44:52 +000018#include "GrSWMaskHelper.h"
joshualitt3a0cfeb2014-10-27 07:38:01 -070019#include "SkRasterClip.h"
20#include "SkStrokeRec.h"
21#include "SkTLazy.h"
egdaniel8d95ffa2014-12-08 13:26:43 -080022#include "effects/GrConvexPolyEffect.h"
egdaniel95131432014-12-09 11:15:43 -080023#include "effects/GrPorterDuffXferProcessor.h"
egdaniel8d95ffa2014-12-08 13:26:43 -080024#include "effects/GrRRectEffect.h"
egdaniel95131432014-12-09 11:15:43 -080025#include "effects/GrTextureDomain.h"
bsalomon@google.comc6b3e482012-12-07 20:43:52 +000026
bsalomon@google.com8182fa02012-12-04 14:06:06 +000027typedef SkClipStack::Element Element;
bsalomon@google.com51a62862012-11-26 21:19:43 +000028
29////////////////////////////////////////////////////////////////////////////////
robertphillips@google.come79f3202014-02-11 16:30:21 +000030namespace {
rmistry@google.comfbfcd562012-08-23 18:09:54 +000031// set up the draw state to enable the aa clipping mask. Besides setting up the
bsalomon@google.com08283af2012-10-26 13:01:20 +000032// stage matrix this also alters the vertex layout
joshualitt9853cce2014-11-17 14:22:48 -080033void setup_drawstate_aaclip(const SkIRect &devBound,
egdaniel8dd688b2015-01-22 10:16:09 -080034 GrPipelineBuilder* pipelineBuilder,
joshualitt9853cce2014-11-17 14:22:48 -080035 GrTexture* result) {
egdaniel8dd688b2015-01-22 10:16:09 -080036 SkASSERT(pipelineBuilder);
robertphillips@google.coma72eef32012-05-01 17:22:59 +000037
bsalomon@google.comb9086a02012-11-01 18:02:54 +000038 SkMatrix mat;
bsalomon309d4d52014-12-18 10:17:44 -080039 // We use device coords to compute the texture coordinates. We set our matrix to be a
40 // translation to the devBound, and then a scaling matrix to normalized coords.
robertphillips@google.coma72eef32012-05-01 17:22:59 +000041 mat.setIDiv(result->width(), result->height());
rmistry@google.comfbfcd562012-08-23 18:09:54 +000042 mat.preTranslate(SkIntToScalar(-devBound.fLeft),
robertphillips@google.com7b112892012-07-31 15:18:21 +000043 SkIntToScalar(-devBound.fTop));
robertphillips@google.coma72eef32012-05-01 17:22:59 +000044
bsalomon@google.com7b7cdd12012-11-07 16:17:24 +000045 SkIRect domainTexels = SkIRect::MakeWH(devBound.width(), devBound.height());
bsalomon@google.com4c2443e2012-12-06 20:58:57 +000046 // This could be a long-lived effect that is cached with the alpha-mask.
egdaniel8dd688b2015-01-22 10:16:09 -080047 pipelineBuilder->addCoverageProcessor(
bsalomon@google.comeb6879f2013-06-13 19:34:18 +000048 GrTextureDomainEffect::Create(result,
bsalomon@google.com7b7cdd12012-11-07 16:17:24 +000049 mat,
commit-bot@chromium.org907fbd52013-12-09 17:03:02 +000050 GrTextureDomain::MakeTexelDomain(result, domainTexels),
51 GrTextureDomain::kDecal_Mode,
humper@google.comb86add12013-07-25 18:49:07 +000052 GrTextureParams::kNone_FilterMode,
bsalomon309d4d52014-12-18 10:17:44 -080053 kDevice_GrCoordSet))->unref();
robertphillips@google.coma72eef32012-05-01 17:22:59 +000054}
55
robertphillips@google.come79f3202014-02-11 16:30:21 +000056bool path_needs_SW_renderer(GrContext* context,
joshualitt9853cce2014-11-17 14:22:48 -080057 const GrDrawTarget* gpu,
egdaniel8dd688b2015-01-22 10:16:09 -080058 const GrPipelineBuilder* pipelineBuilder,
joshualitt8059eb92014-12-29 15:10:07 -080059 const SkMatrix& viewMatrix,
robertphillips@google.come79f3202014-02-11 16:30:21 +000060 const SkPath& origPath,
61 const SkStrokeRec& stroke,
62 bool doAA) {
63 // the gpu alpha mask will draw the inverse paths as non-inverse to a temp buffer
64 SkTCopyOnFirstWrite<SkPath> path(origPath);
65 if (path->isInverseFillType()) {
66 path.writable()->toggleInverseFillType();
67 }
68 // last (false) parameter disallows use of the SW path renderer
bsalomon@google.com45a15f52012-12-10 19:10:17 +000069 GrPathRendererChain::DrawType type = doAA ?
70 GrPathRendererChain::kColorAntiAlias_DrawType :
71 GrPathRendererChain::kColor_DrawType;
72
egdaniel8dd688b2015-01-22 10:16:09 -080073 return NULL == context->getPathRenderer(gpu, pipelineBuilder, viewMatrix, *path, stroke,
74 false, type);
robertphillips@google.come79f3202014-02-11 16:30:21 +000075}
robertphillips@google.com6b70a7b2012-05-11 15:32:48 +000076}
77
robertphillips@google.comfa662942012-05-17 12:20:22 +000078/*
79 * This method traverses the clip stack to see if the GrSoftwarePathRenderer
80 * will be used on any element. If so, it returns true to indicate that the
81 * entire clip should be rendered in SW and then uploaded en masse to the gpu.
82 */
egdaniel8dd688b2015-01-22 10:16:09 -080083bool GrClipMaskManager::useSWOnlyPath(const GrPipelineBuilder* pipelineBuilder,
joshualitt8059eb92014-12-29 15:10:07 -080084 const SkVector& clipToMaskOffset,
joshualitt9853cce2014-11-17 14:22:48 -080085 const GrReducedClip::ElementList& elements) {
robertphillips@google.com8a4fc402012-05-24 12:42:24 +000086 // TODO: generalize this function so that when
robertphillips@google.comfa662942012-05-17 12:20:22 +000087 // a clip gets complex enough it can just be done in SW regardless
88 // of whether it would invoke the GrSoftwarePathRenderer.
sugoi@google.com5f74cf82012-12-17 21:16:45 +000089 SkStrokeRec stroke(SkStrokeRec::kFill_InitStyle);
skia.committer@gmail.comd21444a2012-12-07 02:01:25 +000090
joshualitt8059eb92014-12-29 15:10:07 -080091 // Set the matrix so that rendered clip elements are transformed to mask space from clip
92 // space.
93 SkMatrix translate;
94 translate.setTranslate(clipToMaskOffset);
95
tfarinabf54e492014-10-23 17:47:18 -070096 for (GrReducedClip::ElementList::Iter iter(elements.headIter()); iter.get(); iter.next()) {
bsalomon@google.com4c2443e2012-12-06 20:58:57 +000097 const Element* element = iter.get();
robertphillips@google.comf69a11b2012-06-15 13:58:07 +000098 // rects can always be drawn directly w/o using the software path
commit-bot@chromium.orge5b2af92014-02-16 13:25:24 +000099 // Skip rrects once we're drawing them directly.
100 if (Element::kRect_Type != element->getType()) {
101 SkPath path;
102 element->asPath(&path);
egdaniel8dd688b2015-01-22 10:16:09 -0800103 if (path_needs_SW_renderer(this->getContext(), fClipTarget, pipelineBuilder, translate,
joshualitt8059eb92014-12-29 15:10:07 -0800104 path, stroke, element->isAA())) {
commit-bot@chromium.orge5b2af92014-02-16 13:25:24 +0000105 return true;
106 }
robertphillips@google.comfa662942012-05-17 12:20:22 +0000107 }
robertphillips@google.comfa662942012-05-17 12:20:22 +0000108 }
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000109 return false;
robertphillips@google.coma72eef32012-05-01 17:22:59 +0000110}
111
egdaniel8dd688b2015-01-22 10:16:09 -0800112bool GrClipMaskManager::installClipEffects(GrPipelineBuilder* pipelineBuilder,
113 GrPipelineBuilder::AutoRestoreEffects* are,
joshualitt9853cce2014-11-17 14:22:48 -0800114 const GrReducedClip::ElementList& elements,
commit-bot@chromium.orge5a041c2014-03-07 19:43:43 +0000115 const SkVector& clipToRTOffset,
mtklein217daa72014-07-02 12:55:21 -0700116 const SkRect* drawBounds) {
commit-bot@chromium.orge5a041c2014-03-07 19:43:43 +0000117 SkRect boundsInClipSpace;
bsalomon49f085d2014-09-05 13:34:00 -0700118 if (drawBounds) {
commit-bot@chromium.orge5a041c2014-03-07 19:43:43 +0000119 boundsInClipSpace = *drawBounds;
120 boundsInClipSpace.offset(-clipToRTOffset.fX, -clipToRTOffset.fY);
121 }
122
egdaniel8dd688b2015-01-22 10:16:09 -0800123 are->set(pipelineBuilder);
124 GrRenderTarget* rt = pipelineBuilder->getRenderTarget();
tfarinabf54e492014-10-23 17:47:18 -0700125 GrReducedClip::ElementList::Iter iter(elements);
commit-bot@chromium.orge5a041c2014-03-07 19:43:43 +0000126 bool failed = false;
bsalomon49f085d2014-09-05 13:34:00 -0700127 while (iter.get()) {
commit-bot@chromium.orge5a041c2014-03-07 19:43:43 +0000128 SkRegion::Op op = iter.get()->getOp();
129 bool invert;
130 bool skip = false;
131 switch (op) {
132 case SkRegion::kReplace_Op:
133 SkASSERT(iter.get() == elements.head());
134 // Fallthrough, handled same as intersect.
135 case SkRegion::kIntersect_Op:
136 invert = false;
bsalomon49f085d2014-09-05 13:34:00 -0700137 if (drawBounds && iter.get()->contains(boundsInClipSpace)) {
commit-bot@chromium.orge5a041c2014-03-07 19:43:43 +0000138 skip = true;
139 }
140 break;
141 case SkRegion::kDifference_Op:
142 invert = true;
143 // We don't currently have a cheap test for whether a rect is fully outside an
144 // element's primitive, so don't attempt to set skip.
145 break;
146 default:
147 failed = true;
148 break;
149 }
150 if (failed) {
151 break;
152 }
153
154 if (!skip) {
joshualittb0a8a372014-09-23 09:50:21 -0700155 GrPrimitiveEdgeType edgeType;
robertphillipse85a32d2015-02-10 08:16:55 -0800156 if (iter.get()->isAA()) {
commit-bot@chromium.orge5a041c2014-03-07 19:43:43 +0000157 if (rt->isMultisampled()) {
mtklein217daa72014-07-02 12:55:21 -0700158 // Coverage based AA clips don't place nicely with MSAA.
commit-bot@chromium.orge5a041c2014-03-07 19:43:43 +0000159 failed = true;
160 break;
161 }
joshualittb0a8a372014-09-23 09:50:21 -0700162 edgeType =
163 invert ? kInverseFillAA_GrProcessorEdgeType : kFillAA_GrProcessorEdgeType;
commit-bot@chromium.orge5a041c2014-03-07 19:43:43 +0000164 } else {
joshualittb0a8a372014-09-23 09:50:21 -0700165 edgeType =
166 invert ? kInverseFillBW_GrProcessorEdgeType : kFillBW_GrProcessorEdgeType;
commit-bot@chromium.orge5a041c2014-03-07 19:43:43 +0000167 }
joshualittb0a8a372014-09-23 09:50:21 -0700168 SkAutoTUnref<GrFragmentProcessor> fp;
commit-bot@chromium.orge5a041c2014-03-07 19:43:43 +0000169 switch (iter.get()->getType()) {
170 case SkClipStack::Element::kPath_Type:
joshualittb0a8a372014-09-23 09:50:21 -0700171 fp.reset(GrConvexPolyEffect::Create(edgeType, iter.get()->getPath(),
commit-bot@chromium.orge5a041c2014-03-07 19:43:43 +0000172 &clipToRTOffset));
173 break;
174 case SkClipStack::Element::kRRect_Type: {
175 SkRRect rrect = iter.get()->getRRect();
176 rrect.offset(clipToRTOffset.fX, clipToRTOffset.fY);
joshualittb0a8a372014-09-23 09:50:21 -0700177 fp.reset(GrRRectEffect::Create(edgeType, rrect));
commit-bot@chromium.orge5a041c2014-03-07 19:43:43 +0000178 break;
179 }
180 case SkClipStack::Element::kRect_Type: {
181 SkRect rect = iter.get()->getRect();
182 rect.offset(clipToRTOffset.fX, clipToRTOffset.fY);
joshualittb0a8a372014-09-23 09:50:21 -0700183 fp.reset(GrConvexPolyEffect::Create(edgeType, rect));
commit-bot@chromium.orge5a041c2014-03-07 19:43:43 +0000184 break;
185 }
186 default:
187 break;
188 }
joshualittb0a8a372014-09-23 09:50:21 -0700189 if (fp) {
egdaniel8dd688b2015-01-22 10:16:09 -0800190 pipelineBuilder->addCoverageProcessor(fp);
mtklein217daa72014-07-02 12:55:21 -0700191 } else {
commit-bot@chromium.orge5a041c2014-03-07 19:43:43 +0000192 failed = true;
193 break;
194 }
195 }
mtklein217daa72014-07-02 12:55:21 -0700196 iter.next();
commit-bot@chromium.orge5a041c2014-03-07 19:43:43 +0000197 }
198
199 if (failed) {
200 are->set(NULL);
201 }
commit-bot@chromium.orge5a041c2014-03-07 19:43:43 +0000202 return !failed;
203}
204
robertphillips@google.comf294b772012-04-27 14:29:26 +0000205////////////////////////////////////////////////////////////////////////////////
robertphillips@google.com6b70a7b2012-05-11 15:32:48 +0000206// sort out what kind of clip mask needs to be created: alpha, stencil,
207// scissor, or entirely software
egdaniel8dd688b2015-01-22 10:16:09 -0800208bool GrClipMaskManager::setupClipping(GrPipelineBuilder* pipelineBuilder,
209 GrPipelineBuilder::AutoRestoreEffects* are,
210 GrPipelineBuilder::AutoRestoreStencil* ars,
bsalomon3e791242014-12-17 13:43:13 -0800211 GrScissorState* scissorState,
joshualitt9853cce2014-11-17 14:22:48 -0800212 const SkRect* devBounds) {
bsalomon@google.comc8f7f472012-06-18 13:44:51 +0000213 fCurrClipMaskType = kNone_ClipMaskType;
joshualitt7a6184f2014-10-29 18:29:27 -0700214 if (kRespectClip_StencilClipMode == fClipMode) {
215 fClipMode = kIgnoreClip_StencilClipMode;
216 }
bsalomon@google.coma3201942012-06-21 19:58:20 +0000217
tfarinabf54e492014-10-23 17:47:18 -0700218 GrReducedClip::ElementList elements(16);
commit-bot@chromium.orgd3e58422013-11-05 15:03:08 +0000219 int32_t genID;
tfarinabf54e492014-10-23 17:47:18 -0700220 GrReducedClip::InitialState initialState;
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000221 SkIRect clipSpaceIBounds;
222 bool requiresAA;
egdaniel8dd688b2015-01-22 10:16:09 -0800223 GrRenderTarget* rt = pipelineBuilder->getRenderTarget();
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000224
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000225 // GrDrawTarget should have filtered this for us
bsalomon49f085d2014-09-05 13:34:00 -0700226 SkASSERT(rt);
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000227
joshualitt44701df2015-02-23 14:44:57 -0800228 SkIRect clipSpaceRTIBounds = SkIRect::MakeWH(rt->width(), rt->height());
229 const GrClip& clip = pipelineBuilder->clip();
230 // TODO we shouldn't be ignoring the clip mask manager's clip. This is temporary.
joshualitt0413d432015-02-23 17:52:51 -0800231 bool ignoreClip = clip.isWideOpen(clipSpaceRTIBounds);
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000232 if (!ignoreClip) {
joshualitt44701df2015-02-23 14:44:57 -0800233 // The clip mask manager always draws with a single IRect so we special case that logic here
joshualitt586d5d62015-02-25 11:21:21 -0800234 // Image filters just use a rect, so we also special case that logic
235 switch (clip.clipType()) {
236 case GrClip::kWideOpen_ClipType:
237 // we should have handled this case above
238 SkASSERT(false);
239 case GrClip::kIRect_ClipType: {
240 initialState = GrReducedClip::kAllIn_InitialState;
241 clipSpaceIBounds = clip.irect();
242 SkNEW_INSERT_AT_LLIST_HEAD(&elements,
243 Element,
244 (SkRect::Make(clipSpaceIBounds),
245 SkRegion::kIntersect_Op, false));
246 } break;
247 case GrClip::kRect_ClipType: {
248 initialState = GrReducedClip::kAllIn_InitialState;
249 clipSpaceIBounds.setLTRB(SkScalarCeilToInt(clip.rect().fLeft),
250 SkScalarCeilToInt(clip.rect().fTop),
251 SkScalarCeilToInt(clip.rect().fRight),
252 SkScalarCeilToInt(clip.rect().fBottom));
253 SkNEW_INSERT_AT_LLIST_HEAD(&elements,
254 Element,
255 (SkRect::Make(clipSpaceIBounds),
256 SkRegion::kIntersect_Op, false));
257 } break;
258 case GrClip::kClipStack_ClipType: {
259 clipSpaceRTIBounds.offset(clip.origin());
260 GrReducedClip::ReduceClipStack(*clip.clipStack(),
261 clipSpaceRTIBounds,
262 &elements,
263 &genID,
264 &initialState,
265 &clipSpaceIBounds,
266 &requiresAA);
267 if (elements.isEmpty()) {
268 if (GrReducedClip::kAllIn_InitialState == initialState) {
269 ignoreClip = clipSpaceIBounds == clipSpaceRTIBounds;
270 } else {
271 return false;
272 }
joshualitt44701df2015-02-23 14:44:57 -0800273 }
joshualitt586d5d62015-02-25 11:21:21 -0800274 } break;
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000275 }
276 }
277
278 if (ignoreClip) {
egdaniel8dd688b2015-01-22 10:16:09 -0800279 this->setPipelineBuilderStencil(pipelineBuilder, ars);
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000280 return true;
281 }
282
commit-bot@chromium.orge5a041c2014-03-07 19:43:43 +0000283 // An element count of 4 was chosen because of the common pattern in Blink of:
284 // isect RR
285 // diff RR
286 // isect convex_poly
287 // isect convex_poly
288 // when drawing rounded div borders. This could probably be tuned based on a
289 // configuration's relative costs of switching RTs to generate a mask vs
290 // longer shaders.
291 if (elements.count() <= 4) {
joshualitt44701df2015-02-23 14:44:57 -0800292 SkVector clipToRTOffset = { SkIntToScalar(-clip.origin().fX),
293 SkIntToScalar(-clip.origin().fY) };
commit-bot@chromium.orge5a041c2014-03-07 19:43:43 +0000294 if (elements.isEmpty() ||
bsalomon25965672015-02-23 09:28:30 -0800295 this->installClipEffects(pipelineBuilder, are, elements, clipToRTOffset, devBounds)) {
mtklein217daa72014-07-02 12:55:21 -0700296 SkIRect scissorSpaceIBounds(clipSpaceIBounds);
joshualitt44701df2015-02-23 14:44:57 -0800297 scissorSpaceIBounds.offset(-clip.origin());
mtklein217daa72014-07-02 12:55:21 -0700298 if (NULL == devBounds ||
299 !SkRect::Make(scissorSpaceIBounds).contains(*devBounds)) {
joshualitt77b13072014-10-27 14:51:01 -0700300 scissorState->set(scissorSpaceIBounds);
commit-bot@chromium.orge5a041c2014-03-07 19:43:43 +0000301 }
egdaniel8dd688b2015-01-22 10:16:09 -0800302 this->setPipelineBuilderStencil(pipelineBuilder, ars);
commit-bot@chromium.org65ee5f42014-02-04 17:49:48 +0000303 return true;
304 }
305 }
bsalomon@google.comd3066bd2014-02-03 20:09:56 +0000306
robertphillips@google.coma3e5c632012-05-22 18:09:26 +0000307 // If MSAA is enabled we can do everything in the stencil buffer.
robertphillips@google.comb99225c2012-07-24 18:20:10 +0000308 if (0 == rt->numSamples() && requiresAA) {
robertphillips@google.coma72eef32012-05-01 17:22:59 +0000309 GrTexture* result = NULL;
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000310
joshualitt8059eb92014-12-29 15:10:07 -0800311 // The top-left of the mask corresponds to the top-left corner of the bounds.
312 SkVector clipToMaskOffset = {
313 SkIntToScalar(-clipSpaceIBounds.fLeft),
314 SkIntToScalar(-clipSpaceIBounds.fTop)
315 };
316
egdaniel8dd688b2015-01-22 10:16:09 -0800317 if (this->useSWOnlyPath(pipelineBuilder, clipToMaskOffset, elements)) {
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000318 // The clip geometry is complex enough that it will be more efficient to create it
319 // entirely in software
320 result = this->createSoftwareClipMask(genID,
321 initialState,
322 elements,
joshualitt8059eb92014-12-29 15:10:07 -0800323 clipToMaskOffset,
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000324 clipSpaceIBounds);
325 } else {
326 result = this->createAlphaClipMask(genID,
327 initialState,
328 elements,
joshualitt8059eb92014-12-29 15:10:07 -0800329 clipToMaskOffset,
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000330 clipSpaceIBounds);
331 }
332
bsalomon49f085d2014-09-05 13:34:00 -0700333 if (result) {
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000334 // The mask's top left coord should be pinned to the rounded-out top left corner of
335 // clipSpace bounds. We determine the mask's position WRT to the render target here.
336 SkIRect rtSpaceMaskBounds = clipSpaceIBounds;
joshualitt44701df2015-02-23 14:44:57 -0800337 rtSpaceMaskBounds.offset(-clip.origin());
egdaniel8dd688b2015-01-22 10:16:09 -0800338 setup_drawstate_aaclip(rtSpaceMaskBounds, pipelineBuilder, result);
339 this->setPipelineBuilderStencil(pipelineBuilder, ars);
robertphillips@google.comf294b772012-04-27 14:29:26 +0000340 return true;
341 }
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000342 // if alpha clip mask creation fails fall through to the non-AA code paths
robertphillips@google.comf294b772012-04-27 14:29:26 +0000343 }
robertphillips@google.comf294b772012-04-27 14:29:26 +0000344
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000345 // Either a hard (stencil buffer) clip was explicitly requested or an anti-aliased clip couldn't
346 // be created. In either case, free up the texture in the anti-aliased mask cache.
347 // TODO: this may require more investigation. Ganesh performs a lot of utility draws (e.g.,
348 // clears, InOrderDrawBuffer playbacks) that hit the stencil buffer path. These may be
349 // "incorrectly" clearing the AA cache.
robertphillips@google.com5acc0e32012-05-17 12:01:02 +0000350 fAACache.reset();
351
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000352 // use the stencil clip if we can't represent the clip as a rectangle.
joshualitt44701df2015-02-23 14:44:57 -0800353 SkIPoint clipSpaceToStencilSpaceOffset = -clip.origin();
joshualitt9853cce2014-11-17 14:22:48 -0800354 this->createStencilClipMask(rt,
355 genID,
commit-bot@chromium.orgd3e58422013-11-05 15:03:08 +0000356 initialState,
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000357 elements,
358 clipSpaceIBounds,
359 clipSpaceToStencilSpaceOffset);
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000360
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000361 // This must occur after createStencilClipMask. That function may change the scissor. Also, it
362 // only guarantees that the stencil mask is correct within the bounds it was passed, so we must
363 // use both stencil and scissor test to the bounds for the final draw.
364 SkIRect scissorSpaceIBounds(clipSpaceIBounds);
365 scissorSpaceIBounds.offset(clipSpaceToStencilSpaceOffset);
joshualitt77b13072014-10-27 14:51:01 -0700366 scissorState->set(scissorSpaceIBounds);
egdaniel8dd688b2015-01-22 10:16:09 -0800367 this->setPipelineBuilderStencil(pipelineBuilder, ars);
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000368 return true;
369}
370
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000371namespace {
robertphillips@google.comf294b772012-04-27 14:29:26 +0000372////////////////////////////////////////////////////////////////////////////////
egdaniel8dd688b2015-01-22 10:16:09 -0800373// Set a coverage drawing XPF on the pipelineBuilder for the given op and invertCoverage mode
374void set_coverage_drawing_xpf(SkRegion::Op op, bool invertCoverage,
375 GrPipelineBuilder* pipelineBuilder) {
egdaniel87509242014-12-17 13:37:13 -0800376 SkASSERT(op <= SkRegion::kLastOp);
egdaniel8dd688b2015-01-22 10:16:09 -0800377 pipelineBuilder->setCoverageSetOpXPFactory(op, invertCoverage);
robertphillips@google.comf294b772012-04-27 14:29:26 +0000378}
robertphillips@google.com72176b22012-05-23 13:19:12 +0000379}
robertphillips@google.comf294b772012-04-27 14:29:26 +0000380
381////////////////////////////////////////////////////////////////////////////////
egdaniel8dd688b2015-01-22 10:16:09 -0800382bool GrClipMaskManager::drawElement(GrPipelineBuilder* pipelineBuilder,
joshualitt8059eb92014-12-29 15:10:07 -0800383 const SkMatrix& viewMatrix,
joshualitt9853cce2014-11-17 14:22:48 -0800384 GrTexture* target,
robertphillips@google.come79f3202014-02-11 16:30:21 +0000385 const SkClipStack::Element* element,
386 GrPathRenderer* pr) {
joshualitt9853cce2014-11-17 14:22:48 -0800387 GrDrawTarget::AutoGeometryPush agp(fClipTarget);
robertphillips@google.comf294b772012-04-27 14:29:26 +0000388
egdaniel8dd688b2015-01-22 10:16:09 -0800389 pipelineBuilder->setRenderTarget(target->asRenderTarget());
robertphillips@google.comf294b772012-04-27 14:29:26 +0000390
egdaniel87509242014-12-17 13:37:13 -0800391 // The color we use to draw does not matter since we will always be using a GrCoverageSetOpXP
392 // which ignores color.
393 GrColor color = GrColor_WHITE;
394
commit-bot@chromium.orge5b2af92014-02-16 13:25:24 +0000395 // TODO: Draw rrects directly here.
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000396 switch (element->getType()) {
commit-bot@chromium.orge5b2af92014-02-16 13:25:24 +0000397 case Element::kEmpty_Type:
398 SkDEBUGFAIL("Should never get here with an empty element.");
399 break;
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000400 case Element::kRect_Type:
joshualittb0a8a372014-09-23 09:50:21 -0700401 // TODO: Do rects directly to the accumulator using a aa-rect GrProcessor that covers
402 // the entire mask bounds and writes 0 outside the rect.
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000403 if (element->isAA()) {
joshualitt8059eb92014-12-29 15:10:07 -0800404 SkRect devRect = element->getRect();
405 viewMatrix.mapRect(&devRect);
joshualitt329bf482014-10-29 12:31:28 -0700406 this->getContext()->getAARectRenderer()->fillAARect(fClipTarget,
egdaniel8dd688b2015-01-22 10:16:09 -0800407 pipelineBuilder,
joshualitt2e3b3e32014-12-09 13:31:14 -0800408 color,
joshualitt8059eb92014-12-29 15:10:07 -0800409 viewMatrix,
joshualitta58fe352014-10-27 08:39:00 -0700410 element->getRect(),
joshualitt8059eb92014-12-29 15:10:07 -0800411 devRect);
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000412 } else {
egdaniel8dd688b2015-01-22 10:16:09 -0800413 fClipTarget->drawSimpleRect(pipelineBuilder, color, viewMatrix, element->getRect());
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000414 }
415 return true;
commit-bot@chromium.orge5b2af92014-02-16 13:25:24 +0000416 default: {
417 SkPath path;
418 element->asPath(&path);
jvanverthb3eb6872014-10-24 07:12:51 -0700419 path.setIsVolatile(true);
commit-bot@chromium.orge5b2af92014-02-16 13:25:24 +0000420 if (path.isInverseFillType()) {
421 path.toggleInverseFillType();
robertphillips@google.come79f3202014-02-11 16:30:21 +0000422 }
sugoi@google.com5f74cf82012-12-17 21:16:45 +0000423 SkStrokeRec stroke(SkStrokeRec::kFill_InitStyle);
robertphillips@google.come79f3202014-02-11 16:30:21 +0000424 if (NULL == pr) {
425 GrPathRendererChain::DrawType type;
426 type = element->isAA() ? GrPathRendererChain::kColorAntiAlias_DrawType :
427 GrPathRendererChain::kColor_DrawType;
egdaniel8dd688b2015-01-22 10:16:09 -0800428 pr = this->getContext()->getPathRenderer(fClipTarget, pipelineBuilder, viewMatrix,
429 path, stroke, false, type);
robertphillips@google.come79f3202014-02-11 16:30:21 +0000430 }
431 if (NULL == pr) {
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000432 return false;
433 }
joshualitt9853cce2014-11-17 14:22:48 -0800434
egdaniel8dd688b2015-01-22 10:16:09 -0800435 pr->drawPath(fClipTarget, pipelineBuilder, color, viewMatrix, path, stroke,
436 element->isAA());
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000437 break;
438 }
robertphillips@google.comf294b772012-04-27 14:29:26 +0000439 }
440 return true;
441}
442
egdaniel8dd688b2015-01-22 10:16:09 -0800443bool GrClipMaskManager::canStencilAndDrawElement(GrPipelineBuilder* pipelineBuilder,
joshualitt9853cce2014-11-17 14:22:48 -0800444 GrTexture* target,
445 GrPathRenderer** pr,
446 const SkClipStack::Element* element) {
egdaniel8dd688b2015-01-22 10:16:09 -0800447 pipelineBuilder->setRenderTarget(target->asRenderTarget());
bsalomon@google.comb68addd2012-12-14 13:36:53 +0000448
commit-bot@chromium.orge5b2af92014-02-16 13:25:24 +0000449 if (Element::kRect_Type == element->getType()) {
450 return true;
451 } else {
452 // We shouldn't get here with an empty clip element.
453 SkASSERT(Element::kEmpty_Type != element->getType());
454 SkPath path;
455 element->asPath(&path);
456 if (path.isInverseFillType()) {
457 path.toggleInverseFillType();
bsalomon@google.comb68addd2012-12-14 13:36:53 +0000458 }
commit-bot@chromium.orge5b2af92014-02-16 13:25:24 +0000459 SkStrokeRec stroke(SkStrokeRec::kFill_InitStyle);
460 GrPathRendererChain::DrawType type = element->isAA() ?
461 GrPathRendererChain::kStencilAndColorAntiAlias_DrawType :
462 GrPathRendererChain::kStencilAndColor_DrawType;
egdaniel8dd688b2015-01-22 10:16:09 -0800463 *pr = this->getContext()->getPathRenderer(fClipTarget, pipelineBuilder, SkMatrix::I(), path,
joshualitt8059eb92014-12-29 15:10:07 -0800464 stroke, false, type);
bsalomon49f085d2014-09-05 13:34:00 -0700465 return SkToBool(*pr);
bsalomon@google.comb68addd2012-12-14 13:36:53 +0000466 }
467}
468
egdaniel8dd688b2015-01-22 10:16:09 -0800469void GrClipMaskManager::mergeMask(GrPipelineBuilder* pipelineBuilder,
joshualitt9853cce2014-11-17 14:22:48 -0800470 GrTexture* dstMask,
bsalomon@google.com7b7cdd12012-11-07 16:17:24 +0000471 GrTexture* srcMask,
472 SkRegion::Op op,
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000473 const SkIRect& dstBound,
474 const SkIRect& srcBound) {
egdaniel8dd688b2015-01-22 10:16:09 -0800475 pipelineBuilder->setRenderTarget(dstMask->asRenderTarget());
robertphillips@google.comf294b772012-04-27 14:29:26 +0000476
egdaniel87509242014-12-17 13:37:13 -0800477 // We want to invert the coverage here
egdaniel8dd688b2015-01-22 10:16:09 -0800478 set_coverage_drawing_xpf(op, false, pipelineBuilder);
skia.committer@gmail.com72b2e6f2012-11-08 02:03:56 +0000479
bsalomon@google.comb9086a02012-11-01 18:02:54 +0000480 SkMatrix sampleM;
bsalomon@google.com7b7cdd12012-11-07 16:17:24 +0000481 sampleM.setIDiv(srcMask->width(), srcMask->height());
skia.committer@gmail.com956b3102013-07-26 07:00:58 +0000482
egdaniel8dd688b2015-01-22 10:16:09 -0800483 pipelineBuilder->addCoverageProcessor(
bsalomon@google.com7b7cdd12012-11-07 16:17:24 +0000484 GrTextureDomainEffect::Create(srcMask,
485 sampleM,
commit-bot@chromium.org907fbd52013-12-09 17:03:02 +0000486 GrTextureDomain::MakeTexelDomain(srcMask, srcBound),
487 GrTextureDomain::kDecal_Mode,
humper@google.comb86add12013-07-25 18:49:07 +0000488 GrTextureParams::kNone_FilterMode))->unref();
egdaniel87509242014-12-17 13:37:13 -0800489 // The color passed in here does not matter since the coverageSetOpXP won't read it.
joshualitt44701df2015-02-23 14:44:57 -0800490 fClipTarget->drawSimpleRect(pipelineBuilder,
491 GrColor_WHITE,
492 SkMatrix::I(),
egdaniel8dd688b2015-01-22 10:16:09 -0800493 SkRect::Make(dstBound));
robertphillips@google.comf294b772012-04-27 14:29:26 +0000494}
495
bsalomon427cf282014-10-16 13:41:43 -0700496GrTexture* GrClipMaskManager::createTempMask(int width, int height) {
bsalomonf2703d82014-10-28 14:33:06 -0700497 GrSurfaceDesc desc;
bsalomon3f490a02014-12-18 06:20:52 -0800498 desc.fFlags = kRenderTarget_GrSurfaceFlag;
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000499 desc.fWidth = width;
500 desc.fHeight = height;
bsalomon51d1f7e2014-12-22 08:40:49 -0800501 if (this->getContext()->isConfigRenderable(kAlpha_8_GrPixelConfig, false)) {
502 desc.fConfig = kAlpha_8_GrPixelConfig;
503 } else {
504 desc.fConfig = kRGBA_8888_GrPixelConfig;
505 }
robertphillips@google.com6b70a7b2012-05-11 15:32:48 +0000506
joshualitt329bf482014-10-29 12:31:28 -0700507 return this->getContext()->refScratchTexture(desc, GrContext::kApprox_ScratchTexMatch);
robertphillips@google.com6d62df42012-05-07 18:07:36 +0000508}
509
robertphillips@google.com6b70a7b2012-05-11 15:32:48 +0000510////////////////////////////////////////////////////////////////////////////////
krajcevskiad1dc582014-06-10 15:06:47 -0700511// Return the texture currently in the cache if it exists. Otherwise, return NULL
512GrTexture* GrClipMaskManager::getCachedMaskTexture(int32_t elementsGenID,
513 const SkIRect& clipSpaceIBounds) {
commit-bot@chromium.orgd3e58422013-11-05 15:03:08 +0000514 bool cached = fAACache.canReuse(elementsGenID, clipSpaceIBounds);
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000515 if (!cached) {
krajcevskiad1dc582014-06-10 15:06:47 -0700516 return NULL;
robertphillips@google.com8fff3562012-05-11 12:53:50 +0000517 }
518
krajcevskiad1dc582014-06-10 15:06:47 -0700519 return fAACache.getLastMask();
520}
521
522////////////////////////////////////////////////////////////////////////////////
523// Allocate a texture in the texture cache. This function returns the texture
524// allocated (or NULL on error).
525GrTexture* GrClipMaskManager::allocMaskTexture(int32_t elementsGenID,
526 const SkIRect& clipSpaceIBounds,
527 bool willUpload) {
528 // Since we are setting up the cache we should free up the
529 // currently cached mask so it can be reused.
530 fAACache.reset();
531
bsalomonf2703d82014-10-28 14:33:06 -0700532 GrSurfaceDesc desc;
533 desc.fFlags = willUpload ? kNone_GrSurfaceFlags : kRenderTarget_GrSurfaceFlag;
krajcevskiad1dc582014-06-10 15:06:47 -0700534 desc.fWidth = clipSpaceIBounds.width();
535 desc.fHeight = clipSpaceIBounds.height();
536 desc.fConfig = kRGBA_8888_GrPixelConfig;
537 if (willUpload || this->getContext()->isConfigRenderable(kAlpha_8_GrPixelConfig, false)) {
538 // We would always like A8 but it isn't supported on all platforms
539 desc.fConfig = kAlpha_8_GrPixelConfig;
540 }
541
542 fAACache.acquireMask(elementsGenID, desc, clipSpaceIBounds);
543 return fAACache.getLastMask();
robertphillips@google.com6b70a7b2012-05-11 15:32:48 +0000544}
robertphillips@google.comf294b772012-04-27 14:29:26 +0000545
robertphillips@google.com6b70a7b2012-05-11 15:32:48 +0000546////////////////////////////////////////////////////////////////////////////////
547// Create a 8-bit clip mask in alpha
commit-bot@chromium.orgd3e58422013-11-05 15:03:08 +0000548GrTexture* GrClipMaskManager::createAlphaClipMask(int32_t elementsGenID,
tfarinabf54e492014-10-23 17:47:18 -0700549 GrReducedClip::InitialState initialState,
550 const GrReducedClip::ElementList& elements,
joshualitt8059eb92014-12-29 15:10:07 -0800551 const SkVector& clipToMaskOffset,
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000552 const SkIRect& clipSpaceIBounds) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000553 SkASSERT(kNone_ClipMaskType == fCurrClipMaskType);
bsalomon@google.comc8f7f472012-06-18 13:44:51 +0000554
krajcevskiad1dc582014-06-10 15:06:47 -0700555 // First, check for cached texture
556 GrTexture* result = this->getCachedMaskTexture(elementsGenID, clipSpaceIBounds);
bsalomon49f085d2014-09-05 13:34:00 -0700557 if (result) {
bsalomon@google.comc8f7f472012-06-18 13:44:51 +0000558 fCurrClipMaskType = kAlpha_ClipMaskType;
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000559 return result;
robertphillips@google.com6b70a7b2012-05-11 15:32:48 +0000560 }
561
krajcevskiad1dc582014-06-10 15:06:47 -0700562 // There's no texture in the cache. Let's try to allocate it then.
563 result = this->allocMaskTexture(elementsGenID, clipSpaceIBounds, false);
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000564 if (NULL == result) {
robertphillips@google.comf105b102012-05-14 12:18:26 +0000565 fAACache.reset();
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000566 return NULL;
robertphillips@google.comf294b772012-04-27 14:29:26 +0000567 }
568
joshualitt8059eb92014-12-29 15:10:07 -0800569 // Set the matrix so that rendered clip elements are transformed to mask space from clip
570 // space.
571 SkMatrix translate;
572 translate.setTranslate(clipToMaskOffset);
573
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000574 // The texture may be larger than necessary, this rect represents the part of the texture
575 // we populate with a rasterization of the clip.
576 SkIRect maskSpaceIBounds = SkIRect::MakeWH(clipSpaceIBounds.width(), clipSpaceIBounds.height());
577
bsalomon@google.com7b7cdd12012-11-07 16:17:24 +0000578 // The scratch texture that we are drawing into can be substantially larger than the mask. Only
579 // clear the part that we care about.
joshualitt329bf482014-10-29 12:31:28 -0700580 fClipTarget->clear(&maskSpaceIBounds,
581 GrReducedClip::kAllIn_InitialState == initialState ? 0xffffffff : 0x00000000,
582 true,
583 result->asRenderTarget());
skia.committer@gmail.comd9f75032012-11-09 02:01:24 +0000584
bsalomon@google.comb68addd2012-12-14 13:36:53 +0000585 // When we use the stencil in the below loop it is important to have this clip installed.
586 // The second pass that zeros the stencil buffer renders the rect maskSpaceIBounds so the first
587 // pass must not set values outside of this bounds or stencil values outside the rect won't be
588 // cleared.
joshualitt44701df2015-02-23 14:44:57 -0800589 GrClip clip(maskSpaceIBounds);
bsalomon427cf282014-10-16 13:41:43 -0700590 SkAutoTUnref<GrTexture> temp;
joshualitt9853cce2014-11-17 14:22:48 -0800591
robertphillips@google.comf294b772012-04-27 14:29:26 +0000592 // walk through each clip element and perform its set op
tfarinabf54e492014-10-23 17:47:18 -0700593 for (GrReducedClip::ElementList::Iter iter = elements.headIter(); iter.get(); iter.next()) {
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000594 const Element* element = iter.get();
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000595 SkRegion::Op op = element->getOp();
bsalomon@google.comb68addd2012-12-14 13:36:53 +0000596 bool invert = element->isInverseFilled();
bsalomon@google.comb68addd2012-12-14 13:36:53 +0000597 if (invert || SkRegion::kIntersect_Op == op || SkRegion::kReverseDifference_Op == op) {
egdaniel8dd688b2015-01-22 10:16:09 -0800598 GrPipelineBuilder pipelineBuilder;
joshualitt9853cce2014-11-17 14:22:48 -0800599
joshualitt44701df2015-02-23 14:44:57 -0800600 pipelineBuilder.setClip(clip);
robertphillips@google.come79f3202014-02-11 16:30:21 +0000601 GrPathRenderer* pr = NULL;
egdaniel8dd688b2015-01-22 10:16:09 -0800602 bool useTemp = !this->canStencilAndDrawElement(&pipelineBuilder, result, &pr, element);
bsalomon@google.comb68addd2012-12-14 13:36:53 +0000603 GrTexture* dst;
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000604 // This is the bounds of the clip element in the space of the alpha-mask. The temporary
bsalomon@google.com7b7cdd12012-11-07 16:17:24 +0000605 // mask buffer can be substantially larger than the actually clip stack element. We
606 // touch the minimum number of pixels necessary and use decal mode to combine it with
bsalomon@google.comb68addd2012-12-14 13:36:53 +0000607 // the accumulator.
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000608 SkIRect maskSpaceElementIBounds;
bsalomon@google.comb68addd2012-12-14 13:36:53 +0000609
610 if (useTemp) {
611 if (invert) {
612 maskSpaceElementIBounds = maskSpaceIBounds;
613 } else {
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000614 SkRect elementBounds = element->getBounds();
bsalomon@google.comb68addd2012-12-14 13:36:53 +0000615 elementBounds.offset(clipToMaskOffset);
616 elementBounds.roundOut(&maskSpaceElementIBounds);
617 }
618
bsalomon427cf282014-10-16 13:41:43 -0700619 if (!temp) {
620 temp.reset(this->createTempMask(maskSpaceIBounds.fRight,
621 maskSpaceIBounds.fBottom));
622 if (!temp) {
623 fAACache.reset();
624 return NULL;
625 }
skia.committer@gmail.coma7aedfe2012-12-15 02:03:10 +0000626 }
bsalomon427cf282014-10-16 13:41:43 -0700627 dst = temp;
bsalomon@google.comb68addd2012-12-14 13:36:53 +0000628 // clear the temp target and set blend to replace
joshualitt329bf482014-10-29 12:31:28 -0700629 fClipTarget->clear(&maskSpaceElementIBounds,
joshualitt9853cce2014-11-17 14:22:48 -0800630 invert ? 0xffffffff : 0x00000000,
631 true,
632 dst->asRenderTarget());
egdaniel8dd688b2015-01-22 10:16:09 -0800633 set_coverage_drawing_xpf(SkRegion::kReplace_Op, invert, &pipelineBuilder);
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000634 } else {
bsalomon@google.comb68addd2012-12-14 13:36:53 +0000635 // draw directly into the result with the stencil set to make the pixels affected
636 // by the clip shape be non-zero.
637 dst = result;
638 GR_STATIC_CONST_SAME_STENCIL(kStencilInElement,
639 kReplace_StencilOp,
640 kReplace_StencilOp,
641 kAlways_StencilFunc,
642 0xffff,
643 0xffff,
644 0xffff);
egdaniel8dd688b2015-01-22 10:16:09 -0800645 pipelineBuilder.setStencil(kStencilInElement);
646 set_coverage_drawing_xpf(op, invert, &pipelineBuilder);
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000647 }
bsalomon@google.com7b7cdd12012-11-07 16:17:24 +0000648
egdaniel8dd688b2015-01-22 10:16:09 -0800649 if (!this->drawElement(&pipelineBuilder, translate, dst, element, pr)) {
robertphillips@google.come79f3202014-02-11 16:30:21 +0000650 fAACache.reset();
651 return NULL;
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000652 }
robertphillips@google.comf294b772012-04-27 14:29:26 +0000653
bsalomon@google.comb68addd2012-12-14 13:36:53 +0000654 if (useTemp) {
egdaniel8dd688b2015-01-22 10:16:09 -0800655 GrPipelineBuilder backgroundPipelineBuilder;
egdaniel8dd688b2015-01-22 10:16:09 -0800656 backgroundPipelineBuilder.setRenderTarget(result->asRenderTarget());
joshualitt8fc6c2d2014-12-22 15:27:05 -0800657
bsalomon@google.comb68addd2012-12-14 13:36:53 +0000658 // Now draw into the accumulator using the real operation and the temp buffer as a
659 // texture
egdaniel8dd688b2015-01-22 10:16:09 -0800660 this->mergeMask(&backgroundPipelineBuilder,
joshualitt9853cce2014-11-17 14:22:48 -0800661 result,
bsalomon427cf282014-10-16 13:41:43 -0700662 temp,
bsalomon@google.comb68addd2012-12-14 13:36:53 +0000663 op,
664 maskSpaceIBounds,
665 maskSpaceElementIBounds);
666 } else {
egdaniel8dd688b2015-01-22 10:16:09 -0800667 GrPipelineBuilder backgroundPipelineBuilder;
egdaniel8dd688b2015-01-22 10:16:09 -0800668 backgroundPipelineBuilder.setRenderTarget(result->asRenderTarget());
joshualitt8fc6c2d2014-12-22 15:27:05 -0800669
egdaniel8dd688b2015-01-22 10:16:09 -0800670 set_coverage_drawing_xpf(op, !invert, &backgroundPipelineBuilder);
bsalomon@google.comb68addd2012-12-14 13:36:53 +0000671 // Draw to the exterior pixels (those with a zero stencil value).
bsalomon@google.comb68addd2012-12-14 13:36:53 +0000672 GR_STATIC_CONST_SAME_STENCIL(kDrawOutsideElement,
673 kZero_StencilOp,
674 kZero_StencilOp,
675 kEqual_StencilFunc,
676 0xffff,
677 0x0000,
678 0xffff);
egdaniel8dd688b2015-01-22 10:16:09 -0800679 backgroundPipelineBuilder.setStencil(kDrawOutsideElement);
egdaniel87509242014-12-17 13:37:13 -0800680 // The color passed in here does not matter since the coverageSetOpXP won't read it.
egdaniel8dd688b2015-01-22 10:16:09 -0800681 fClipTarget->drawSimpleRect(&backgroundPipelineBuilder, GrColor_WHITE, translate,
joshualitt8059eb92014-12-29 15:10:07 -0800682 clipSpaceIBounds);
bsalomon@google.comb68addd2012-12-14 13:36:53 +0000683 }
robertphillips@google.comf294b772012-04-27 14:29:26 +0000684 } else {
egdaniel8dd688b2015-01-22 10:16:09 -0800685 GrPipelineBuilder pipelineBuilder;
joshualitt9853cce2014-11-17 14:22:48 -0800686
robertphillips@google.come79f3202014-02-11 16:30:21 +0000687 // all the remaining ops can just be directly draw into the accumulation buffer
egdaniel8dd688b2015-01-22 10:16:09 -0800688 set_coverage_drawing_xpf(op, false, &pipelineBuilder);
egdaniel87509242014-12-17 13:37:13 -0800689 // The color passed in here does not matter since the coverageSetOpXP won't read it.
egdaniel8dd688b2015-01-22 10:16:09 -0800690 this->drawElement(&pipelineBuilder, translate, result, element);
robertphillips@google.comf294b772012-04-27 14:29:26 +0000691 }
692 }
693
bsalomon@google.comc8f7f472012-06-18 13:44:51 +0000694 fCurrClipMaskType = kAlpha_ClipMaskType;
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000695 return result;
robertphillips@google.comf294b772012-04-27 14:29:26 +0000696}
697
698////////////////////////////////////////////////////////////////////////////////
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000699// Create a 1-bit clip mask in the stencil buffer. 'devClipBounds' are in device
robertphillips@google.comf8d904a2012-07-31 12:18:16 +0000700// (as opposed to canvas) coordinates
joshualitt9853cce2014-11-17 14:22:48 -0800701bool GrClipMaskManager::createStencilClipMask(GrRenderTarget* rt,
702 int32_t elementsGenID,
tfarinabf54e492014-10-23 17:47:18 -0700703 GrReducedClip::InitialState initialState,
704 const GrReducedClip::ElementList& elements,
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000705 const SkIRect& clipSpaceIBounds,
706 const SkIPoint& clipSpaceToStencilOffset) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000707 SkASSERT(kNone_ClipMaskType == fCurrClipMaskType);
bsalomon49f085d2014-09-05 13:34:00 -0700708 SkASSERT(rt);
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000709
bsalomon6bc1b5f2015-02-23 09:06:38 -0800710 GrStencilBuffer* stencilBuffer = rt->renderTargetPriv().attachStencilBuffer();
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000711 if (NULL == stencilBuffer) {
712 return false;
713 }
714
commit-bot@chromium.orgd3e58422013-11-05 15:03:08 +0000715 if (stencilBuffer->mustRenderClip(elementsGenID, clipSpaceIBounds, clipSpaceToStencilOffset)) {
commit-bot@chromium.orgd3e58422013-11-05 15:03:08 +0000716 stencilBuffer->setLastClip(elementsGenID, clipSpaceIBounds, clipSpaceToStencilOffset);
bsalomon@google.com137f1342013-05-29 21:27:53 +0000717 // Set the matrix so that rendered clip elements are transformed from clip to stencil space.
718 SkVector translate = {
719 SkIntToScalar(clipSpaceToStencilOffset.fX),
720 SkIntToScalar(clipSpaceToStencilOffset.fY)
721 };
joshualitt8059eb92014-12-29 15:10:07 -0800722 SkMatrix viewMatrix;
723 viewMatrix.setTranslate(translate);
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000724
bsalomon@google.com9f131742012-12-13 20:43:56 +0000725 // We set the current clip to the bounds so that our recursive draws are scissored to them.
726 SkIRect stencilSpaceIBounds(clipSpaceIBounds);
727 stencilSpaceIBounds.offset(clipSpaceToStencilOffset);
joshualitt44701df2015-02-23 14:44:57 -0800728 GrClip clip(stencilSpaceIBounds);
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000729
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000730 int clipBit = stencilBuffer->bits();
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000731 SkASSERT((clipBit <= 16) && "Ganesh only handles 16b or smaller stencil buffers");
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000732 clipBit = (1 << (clipBit-1));
733
joshualitt329bf482014-10-29 12:31:28 -0700734 fClipTarget->clearStencilClip(stencilSpaceIBounds,
735 GrReducedClip::kAllIn_InitialState == initialState,
736 rt);
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000737
738 // walk through each clip element and perform its set op
739 // with the existing clip.
tfarinabf54e492014-10-23 17:47:18 -0700740 for (GrReducedClip::ElementList::Iter iter(elements.headIter()); iter.get(); iter.next()) {
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000741 const Element* element = iter.get();
joshualitt9853cce2014-11-17 14:22:48 -0800742
egdaniel8dd688b2015-01-22 10:16:09 -0800743 GrPipelineBuilder pipelineBuilder;
joshualitt44701df2015-02-23 14:44:57 -0800744 pipelineBuilder.setClip(clip);
egdaniel8dd688b2015-01-22 10:16:09 -0800745 pipelineBuilder.setRenderTarget(rt);
egdaniel080e6732014-12-22 07:35:52 -0800746
egdaniel8dd688b2015-01-22 10:16:09 -0800747 pipelineBuilder.setDisableColorXPFactory();
joshualitt9853cce2014-11-17 14:22:48 -0800748
749 // if the target is MSAA then we want MSAA enabled when the clip is soft
750 if (rt->isMultisampled()) {
egdaniel8dd688b2015-01-22 10:16:09 -0800751 pipelineBuilder.setState(GrPipelineBuilder::kHWAntialias_StateBit, element->isAA());
joshualitt9853cce2014-11-17 14:22:48 -0800752 }
753
tomhudson@google.com8afae612012-08-14 15:03:35 +0000754 bool fillInverted = false;
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000755 // enabled at bottom of loop
joshualitt7a6184f2014-10-29 18:29:27 -0700756 fClipMode = kIgnoreClip_StencilClipMode;
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000757
bsalomon@google.com45a15f52012-12-10 19:10:17 +0000758 // This will be used to determine whether the clip shape can be rendered into the
759 // stencil with arbitrary stencil settings.
760 GrPathRenderer::StencilSupport stencilSupport;
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000761
sugoi@google.com5f74cf82012-12-17 21:16:45 +0000762 SkStrokeRec stroke(SkStrokeRec::kFill_InitStyle);
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000763 SkRegion::Op op = element->getOp();
robertphillips@google.comf294b772012-04-27 14:29:26 +0000764
robertphillips@google.come79f3202014-02-11 16:30:21 +0000765 GrPathRenderer* pr = NULL;
commit-bot@chromium.orge5b2af92014-02-16 13:25:24 +0000766 SkPath clipPath;
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000767 if (Element::kRect_Type == element->getType()) {
bsalomon@google.com45a15f52012-12-10 19:10:17 +0000768 stencilSupport = GrPathRenderer::kNoRestriction_StencilSupport;
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000769 fillInverted = false;
tomhudson@google.com8afae612012-08-14 15:03:35 +0000770 } else {
commit-bot@chromium.orge5b2af92014-02-16 13:25:24 +0000771 element->asPath(&clipPath);
772 fillInverted = clipPath.isInverseFillType();
robertphillips@google.come79f3202014-02-11 16:30:21 +0000773 if (fillInverted) {
commit-bot@chromium.orge5b2af92014-02-16 13:25:24 +0000774 clipPath.toggleInverseFillType();
robertphillips@google.come79f3202014-02-11 16:30:21 +0000775 }
joshualitt9853cce2014-11-17 14:22:48 -0800776 pr = this->getContext()->getPathRenderer(fClipTarget,
egdaniel8dd688b2015-01-22 10:16:09 -0800777 &pipelineBuilder,
joshualitt8059eb92014-12-29 15:10:07 -0800778 viewMatrix,
joshualitt9853cce2014-11-17 14:22:48 -0800779 clipPath,
bsalomon@google.com45a15f52012-12-10 19:10:17 +0000780 stroke,
bsalomon@google.com45a15f52012-12-10 19:10:17 +0000781 false,
782 GrPathRendererChain::kStencilOnly_DrawType,
robertphillips@google.come79f3202014-02-11 16:30:21 +0000783 &stencilSupport);
784 if (NULL == pr) {
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000785 return false;
786 }
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000787 }
788
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000789 int passes;
790 GrStencilSettings stencilSettings[GrStencilSettings::kMaxStencilClipPasses];
791
bsalomon@google.com45a15f52012-12-10 19:10:17 +0000792 bool canRenderDirectToStencil =
793 GrPathRenderer::kNoRestriction_StencilSupport == stencilSupport;
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000794 bool canDrawDirectToClip; // Given the renderer, the element,
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000795 // fill rule, and set operation can
796 // we render the element directly to
797 // stencil bit used for clipping.
798 canDrawDirectToClip = GrStencilSettings::GetClipPasses(op,
799 canRenderDirectToStencil,
800 clipBit,
801 fillInverted,
802 &passes,
803 stencilSettings);
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000804
805 // draw the element to the client stencil bits if necessary
806 if (!canDrawDirectToClip) {
807 GR_STATIC_CONST_SAME_STENCIL(gDrawToStencil,
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000808 kIncClamp_StencilOp,
809 kIncClamp_StencilOp,
810 kAlways_StencilFunc,
811 0xffff,
812 0x0000,
813 0xffff);
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000814 if (Element::kRect_Type == element->getType()) {
egdaniel8dd688b2015-01-22 10:16:09 -0800815 *pipelineBuilder.stencil() = gDrawToStencil;
joshualitt44701df2015-02-23 14:44:57 -0800816 fClipTarget->drawSimpleRect(&pipelineBuilder,
817 GrColor_WHITE,
818 viewMatrix,
joshualitt8059eb92014-12-29 15:10:07 -0800819 element->getRect());
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000820 } else {
commit-bot@chromium.orge5b2af92014-02-16 13:25:24 +0000821 if (!clipPath.isEmpty()) {
joshualitt9853cce2014-11-17 14:22:48 -0800822 GrDrawTarget::AutoGeometryPush agp(fClipTarget);
commit-bot@chromium.org19dd0172013-08-05 13:28:55 +0000823 if (canRenderDirectToStencil) {
egdaniel8dd688b2015-01-22 10:16:09 -0800824 *pipelineBuilder.stencil() = gDrawToStencil;
joshualitt44701df2015-02-23 14:44:57 -0800825 pr->drawPath(fClipTarget, &pipelineBuilder, GrColor_WHITE,
826 viewMatrix, clipPath, stroke, false);
commit-bot@chromium.org19dd0172013-08-05 13:28:55 +0000827 } else {
joshualitt44701df2015-02-23 14:44:57 -0800828 pr->stencilPath(fClipTarget, &pipelineBuilder, viewMatrix,
829 clipPath, stroke);
commit-bot@chromium.org19dd0172013-08-05 13:28:55 +0000830 }
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000831 }
832 }
833 }
834
835 // now we modify the clip bit by rendering either the clip
836 // element directly or a bounding rect of the entire clip.
joshualitt7a6184f2014-10-29 18:29:27 -0700837 fClipMode = kModifyClip_StencilClipMode;
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000838 for (int p = 0; p < passes; ++p) {
egdaniel8dd688b2015-01-22 10:16:09 -0800839 GrPipelineBuilder pipelineBuilderCopy(pipelineBuilder);
840 *pipelineBuilderCopy.stencil() = stencilSettings[p];
joshualitt9853cce2014-11-17 14:22:48 -0800841
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000842 if (canDrawDirectToClip) {
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000843 if (Element::kRect_Type == element->getType()) {
joshualitt44701df2015-02-23 14:44:57 -0800844 fClipTarget->drawSimpleRect(&pipelineBuilderCopy,
845 GrColor_WHITE,
846 viewMatrix,
joshualitt2e3b3e32014-12-09 13:31:14 -0800847 element->getRect());
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000848 } else {
joshualitt9853cce2014-11-17 14:22:48 -0800849 GrDrawTarget::AutoGeometryPush agp(fClipTarget);
joshualitt44701df2015-02-23 14:44:57 -0800850 pr->drawPath(fClipTarget, &pipelineBuilderCopy, GrColor_WHITE,
851 viewMatrix, clipPath, stroke, false);
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000852 }
853 } else {
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000854 // The view matrix is setup to do clip space -> stencil space translation, so
855 // draw rect in clip space.
joshualitt44701df2015-02-23 14:44:57 -0800856 fClipTarget->drawSimpleRect(&pipelineBuilderCopy,
857 GrColor_WHITE,
858 viewMatrix,
joshualitt2e3b3e32014-12-09 13:31:14 -0800859 SkRect::Make(clipSpaceIBounds));
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000860 }
861 }
862 }
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000863 }
bsalomon@google.comc8f7f472012-06-18 13:44:51 +0000864 // set this last because recursive draws may overwrite it back to kNone.
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000865 SkASSERT(kNone_ClipMaskType == fCurrClipMaskType);
bsalomon@google.comc8f7f472012-06-18 13:44:51 +0000866 fCurrClipMaskType = kStencil_ClipMaskType;
joshualitt7a6184f2014-10-29 18:29:27 -0700867 fClipMode = kRespectClip_StencilClipMode;
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000868 return true;
869}
870
bsalomon@google.com411dad02012-06-05 20:24:20 +0000871// mapping of clip-respecting stencil funcs to normal stencil funcs
872// mapping depends on whether stencil-clipping is in effect.
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000873static const GrStencilFunc
bsalomon@google.com411dad02012-06-05 20:24:20 +0000874 gSpecialToBasicStencilFunc[2][kClipStencilFuncCount] = {
875 {// Stencil-Clipping is DISABLED, we are effectively always inside the clip
876 // In the Clip Funcs
877 kAlways_StencilFunc, // kAlwaysIfInClip_StencilFunc
878 kEqual_StencilFunc, // kEqualIfInClip_StencilFunc
879 kLess_StencilFunc, // kLessIfInClip_StencilFunc
880 kLEqual_StencilFunc, // kLEqualIfInClip_StencilFunc
881 // Special in the clip func that forces user's ref to be 0.
882 kNotEqual_StencilFunc, // kNonZeroIfInClip_StencilFunc
883 // make ref 0 and do normal nequal.
884 },
885 {// Stencil-Clipping is ENABLED
886 // In the Clip Funcs
887 kEqual_StencilFunc, // kAlwaysIfInClip_StencilFunc
888 // eq stencil clip bit, mask
889 // out user bits.
890
891 kEqual_StencilFunc, // kEqualIfInClip_StencilFunc
892 // add stencil bit to mask and ref
893
894 kLess_StencilFunc, // kLessIfInClip_StencilFunc
895 kLEqual_StencilFunc, // kLEqualIfInClip_StencilFunc
896 // for both of these we can add
897 // the clip bit to the mask and
898 // ref and compare as normal
899 // Special in the clip func that forces user's ref to be 0.
900 kLess_StencilFunc, // kNonZeroIfInClip_StencilFunc
901 // make ref have only the clip bit set
902 // and make comparison be less
903 // 10..0 < 1..user_bits..
904 }
905};
906
bsalomon@google.coma3201942012-06-21 19:58:20 +0000907namespace {
908// Sets the settings to clip against the stencil buffer clip while ignoring the
909// client bits.
910const GrStencilSettings& basic_apply_stencil_clip_settings() {
911 // stencil settings to use when clip is in stencil
912 GR_STATIC_CONST_SAME_STENCIL_STRUCT(gSettings,
913 kKeep_StencilOp,
914 kKeep_StencilOp,
915 kAlwaysIfInClip_StencilFunc,
916 0x0000,
917 0x0000,
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000918 0x0000);
bsalomon@google.coma3201942012-06-21 19:58:20 +0000919 return *GR_CONST_STENCIL_SETTINGS_PTR_FROM_STRUCT_PTR(&gSettings);
920}
921}
922
egdaniel8dd688b2015-01-22 10:16:09 -0800923void GrClipMaskManager::setPipelineBuilderStencil(GrPipelineBuilder* pipelineBuilder,
924 GrPipelineBuilder::AutoRestoreStencil* ars) {
bsalomon@google.coma3201942012-06-21 19:58:20 +0000925 // We make two copies of the StencilSettings here (except in the early
926 // exit scenario. One copy from draw state to the stack var. Then another
927 // from the stack var to the gpu. We could make this class hold a ptr to
928 // GrGpu's fStencilSettings and eliminate the stack copy here.
929
bsalomon@google.coma3201942012-06-21 19:58:20 +0000930 // use stencil for clipping if clipping is enabled and the clip
931 // has been written into the stencil.
bsalomon@google.coma3201942012-06-21 19:58:20 +0000932 GrStencilSettings settings;
joshualitt9853cce2014-11-17 14:22:48 -0800933
bsalomon@google.coma3201942012-06-21 19:58:20 +0000934 // The GrGpu client may not be using the stencil buffer but we may need to
935 // enable it in order to respect a stencil clip.
egdaniel8dd688b2015-01-22 10:16:09 -0800936 if (pipelineBuilder->getStencil().isDisabled()) {
joshualitt7a6184f2014-10-29 18:29:27 -0700937 if (GrClipMaskManager::kRespectClip_StencilClipMode == fClipMode) {
bsalomon@google.coma3201942012-06-21 19:58:20 +0000938 settings = basic_apply_stencil_clip_settings();
939 } else {
bsalomon@google.coma3201942012-06-21 19:58:20 +0000940 return;
941 }
942 } else {
egdaniel8dd688b2015-01-22 10:16:09 -0800943 settings = pipelineBuilder->getStencil();
bsalomon@google.coma3201942012-06-21 19:58:20 +0000944 }
945
bsalomon@google.coma3201942012-06-21 19:58:20 +0000946 int stencilBits = 0;
bsalomon6bc1b5f2015-02-23 09:06:38 -0800947 GrRenderTarget* rt = pipelineBuilder->getRenderTarget();
948 GrStencilBuffer* stencilBuffer = rt->renderTargetPriv().attachStencilBuffer();
bsalomon49f085d2014-09-05 13:34:00 -0700949 if (stencilBuffer) {
bsalomon@google.coma3201942012-06-21 19:58:20 +0000950 stencilBits = stencilBuffer->bits();
951 }
952
joshualitt329bf482014-10-29 12:31:28 -0700953 SkASSERT(fClipTarget->caps()->stencilWrapOpsSupport() || !settings.usesWrapOp());
954 SkASSERT(fClipTarget->caps()->twoSidedStencilSupport() || !settings.isTwoSided());
joshualitt7a6184f2014-10-29 18:29:27 -0700955 this->adjustStencilParams(&settings, fClipMode, stencilBits);
egdaniel8dd688b2015-01-22 10:16:09 -0800956 ars->set(pipelineBuilder);
957 pipelineBuilder->setStencil(settings);
bsalomon@google.coma3201942012-06-21 19:58:20 +0000958}
959
960void GrClipMaskManager::adjustStencilParams(GrStencilSettings* settings,
961 StencilClipMode mode,
962 int stencilBitCnt) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000963 SkASSERT(stencilBitCnt > 0);
bsalomon@google.com411dad02012-06-05 20:24:20 +0000964
965 if (kModifyClip_StencilClipMode == mode) {
bsalomon@google.coma3201942012-06-21 19:58:20 +0000966 // We assume that this clip manager itself is drawing to the GrGpu and
967 // has already setup the correct values.
968 return;
bsalomon@google.com411dad02012-06-05 20:24:20 +0000969 }
bsalomon@google.coma3201942012-06-21 19:58:20 +0000970
bsalomon@google.com411dad02012-06-05 20:24:20 +0000971 unsigned int clipBit = (1 << (stencilBitCnt - 1));
972 unsigned int userBits = clipBit - 1;
973
bsalomon@google.coma3201942012-06-21 19:58:20 +0000974 GrStencilSettings::Face face = GrStencilSettings::kFront_Face;
joshualitt329bf482014-10-29 12:31:28 -0700975 bool twoSided = fClipTarget->caps()->twoSidedStencilSupport();
bsalomon@google.com411dad02012-06-05 20:24:20 +0000976
bsalomon@google.coma3201942012-06-21 19:58:20 +0000977 bool finished = false;
978 while (!finished) {
979 GrStencilFunc func = settings->func(face);
980 uint16_t writeMask = settings->writeMask(face);
981 uint16_t funcMask = settings->funcMask(face);
982 uint16_t funcRef = settings->funcRef(face);
983
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000984 SkASSERT((unsigned) func < kStencilFuncCount);
bsalomon@google.coma3201942012-06-21 19:58:20 +0000985
986 writeMask &= userBits;
987
988 if (func >= kBasicStencilFuncCount) {
989 int respectClip = kRespectClip_StencilClipMode == mode;
990 if (respectClip) {
991 // The GrGpu class should have checked this
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000992 SkASSERT(this->isClipInStencil());
bsalomon@google.coma3201942012-06-21 19:58:20 +0000993 switch (func) {
994 case kAlwaysIfInClip_StencilFunc:
995 funcMask = clipBit;
996 funcRef = clipBit;
997 break;
998 case kEqualIfInClip_StencilFunc:
999 case kLessIfInClip_StencilFunc:
1000 case kLEqualIfInClip_StencilFunc:
1001 funcMask = (funcMask & userBits) | clipBit;
1002 funcRef = (funcRef & userBits) | clipBit;
1003 break;
1004 case kNonZeroIfInClip_StencilFunc:
1005 funcMask = (funcMask & userBits) | clipBit;
1006 funcRef = clipBit;
1007 break;
1008 default:
commit-bot@chromium.org88cb22b2014-04-30 14:17:00 +00001009 SkFAIL("Unknown stencil func");
bsalomon@google.coma3201942012-06-21 19:58:20 +00001010 }
1011 } else {
1012 funcMask &= userBits;
1013 funcRef &= userBits;
bsalomon@google.com411dad02012-06-05 20:24:20 +00001014 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001015 const GrStencilFunc* table =
bsalomon@google.coma3201942012-06-21 19:58:20 +00001016 gSpecialToBasicStencilFunc[respectClip];
1017 func = table[func - kBasicStencilFuncCount];
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +00001018 SkASSERT(func >= 0 && func < kBasicStencilFuncCount);
bsalomon@google.com411dad02012-06-05 20:24:20 +00001019 } else {
bsalomon@google.coma3201942012-06-21 19:58:20 +00001020 funcMask &= userBits;
1021 funcRef &= userBits;
bsalomon@google.com411dad02012-06-05 20:24:20 +00001022 }
bsalomon@google.coma3201942012-06-21 19:58:20 +00001023
1024 settings->setFunc(face, func);
1025 settings->setWriteMask(face, writeMask);
1026 settings->setFuncMask(face, funcMask);
1027 settings->setFuncRef(face, funcRef);
1028
1029 if (GrStencilSettings::kFront_Face == face) {
1030 face = GrStencilSettings::kBack_Face;
1031 finished = !twoSided;
1032 } else {
1033 finished = true;
1034 }
bsalomon@google.com411dad02012-06-05 20:24:20 +00001035 }
bsalomon@google.coma3201942012-06-21 19:58:20 +00001036 if (!twoSided) {
1037 settings->copyFrontSettingsToBack();
1038 }
bsalomon@google.com411dad02012-06-05 20:24:20 +00001039}
1040
1041////////////////////////////////////////////////////////////////////////////////
commit-bot@chromium.orgd3e58422013-11-05 15:03:08 +00001042GrTexture* GrClipMaskManager::createSoftwareClipMask(int32_t elementsGenID,
bsalomon@google.com4c2443e2012-12-06 20:58:57 +00001043 GrReducedClip::InitialState initialState,
1044 const GrReducedClip::ElementList& elements,
joshualitt8059eb92014-12-29 15:10:07 -08001045 const SkVector& clipToMaskOffset,
bsalomon@google.com4c2443e2012-12-06 20:58:57 +00001046 const SkIRect& clipSpaceIBounds) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +00001047 SkASSERT(kNone_ClipMaskType == fCurrClipMaskType);
robertphillips@google.com6b70a7b2012-05-11 15:32:48 +00001048
krajcevskiad1dc582014-06-10 15:06:47 -07001049 GrTexture* result = this->getCachedMaskTexture(elementsGenID, clipSpaceIBounds);
bsalomon49f085d2014-09-05 13:34:00 -07001050 if (result) {
bsalomon@google.com4c2443e2012-12-06 20:58:57 +00001051 return result;
robertphillips@google.com6b70a7b2012-05-11 15:32:48 +00001052 }
1053
bsalomon@google.com4c2443e2012-12-06 20:58:57 +00001054 // The mask texture may be larger than necessary. We round out the clip space bounds and pin
1055 // the top left corner of the resulting rect to the top left of the texture.
1056 SkIRect maskSpaceIBounds = SkIRect::MakeWH(clipSpaceIBounds.width(), clipSpaceIBounds.height());
1057
robertphillips@google.com2c756812012-05-22 20:28:23 +00001058 GrSWMaskHelper helper(this->getContext());
robertphillips@google.com6b70a7b2012-05-11 15:32:48 +00001059
joshualitt8059eb92014-12-29 15:10:07 -08001060 // Set the matrix so that rendered clip elements are transformed to mask space from clip
1061 // space.
1062 SkMatrix translate;
1063 translate.setTranslate(clipToMaskOffset);
joshualitt9853cce2014-11-17 14:22:48 -08001064
joshualitt8059eb92014-12-29 15:10:07 -08001065 helper.init(maskSpaceIBounds, &translate, false);
tfarinabf54e492014-10-23 17:47:18 -07001066 helper.clear(GrReducedClip::kAllIn_InitialState == initialState ? 0xFF : 0x00);
sugoi@google.com5f74cf82012-12-17 21:16:45 +00001067 SkStrokeRec stroke(SkStrokeRec::kFill_InitStyle);
sugoi@google.com12b4e272012-12-06 20:13:11 +00001068
tfarinabf54e492014-10-23 17:47:18 -07001069 for (GrReducedClip::ElementList::Iter iter(elements.headIter()) ; iter.get(); iter.next()) {
bsalomon@google.com4c2443e2012-12-06 20:58:57 +00001070 const Element* element = iter.get();
bsalomon@google.com8182fa02012-12-04 14:06:06 +00001071 SkRegion::Op op = element->getOp();
robertphillips@google.comfa662942012-05-17 12:20:22 +00001072
bsalomon@google.com4c2443e2012-12-06 20:58:57 +00001073 if (SkRegion::kIntersect_Op == op || SkRegion::kReverseDifference_Op == op) {
1074 // Intersect and reverse difference require modifying pixels outside of the geometry
1075 // that is being "drawn". In both cases we erase all the pixels outside of the geometry
1076 // but leave the pixels inside the geometry alone. For reverse difference we invert all
1077 // the pixels before clearing the ones outside the geometry.
robertphillips@google.comfa662942012-05-17 12:20:22 +00001078 if (SkRegion::kReverseDifference_Op == op) {
reed@google.com44699382013-10-31 17:28:30 +00001079 SkRect temp = SkRect::Make(clipSpaceIBounds);
robertphillips@google.comfa662942012-05-17 12:20:22 +00001080 // invert the entire scene
robertphillips@google.com366f1c62012-06-29 21:38:47 +00001081 helper.draw(temp, SkRegion::kXOR_Op, false, 0xFF);
robertphillips@google.comfa662942012-05-17 12:20:22 +00001082 }
commit-bot@chromium.org5c056392014-02-17 19:50:02 +00001083 SkPath clipPath;
1084 element->asPath(&clipPath);
1085 clipPath.toggleInverseFillType();
1086 helper.draw(clipPath, stroke, SkRegion::kReplace_Op, element->isAA(), 0x00);
robertphillips@google.comfa662942012-05-17 12:20:22 +00001087 continue;
1088 }
1089
1090 // The other ops (union, xor, diff) only affect pixels inside
1091 // the geometry so they can just be drawn normally
bsalomon@google.com8182fa02012-12-04 14:06:06 +00001092 if (Element::kRect_Type == element->getType()) {
1093 helper.draw(element->getRect(), op, element->isAA(), 0xFF);
1094 } else {
commit-bot@chromium.org5c056392014-02-17 19:50:02 +00001095 SkPath path;
1096 element->asPath(&path);
1097 helper.draw(path, stroke, op, element->isAA(), 0xFF);
robertphillips@google.com6b70a7b2012-05-11 15:32:48 +00001098 }
1099 }
1100
krajcevskiad1dc582014-06-10 15:06:47 -07001101 // Allocate clip mask texture
1102 result = this->allocMaskTexture(elementsGenID, clipSpaceIBounds, true);
1103 if (NULL == result) {
1104 fAACache.reset();
1105 return NULL;
1106 }
robertphillips@google.comd92cf2e2013-07-19 18:13:02 +00001107 helper.toTexture(result);
robertphillips@google.com6b70a7b2012-05-11 15:32:48 +00001108
bsalomon@google.comc8f7f472012-06-18 13:44:51 +00001109 fCurrClipMaskType = kAlpha_ClipMaskType;
bsalomon@google.com4c2443e2012-12-06 20:58:57 +00001110 return result;
robertphillips@google.com6b70a7b2012-05-11 15:32:48 +00001111}
1112
robertphillips@google.comf294b772012-04-27 14:29:26 +00001113////////////////////////////////////////////////////////////////////////////////
bsalomonc8dc1f72014-08-21 13:02:13 -07001114void GrClipMaskManager::purgeResources() {
1115 fAACache.purgeResources();
robertphillips@google.com1e945b72012-04-16 18:03:03 +00001116}
bsalomon@google.com6e4e6502013-02-25 20:12:45 +00001117
joshualitt329bf482014-10-29 12:31:28 -07001118void GrClipMaskManager::setClipTarget(GrClipTarget* clipTarget) {
1119 fClipTarget = clipTarget;
1120 fAACache.setContext(clipTarget->getContext());
bsalomon@google.com6e4e6502013-02-25 20:12:45 +00001121}
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +00001122
joshualitt9853cce2014-11-17 14:22:48 -08001123void GrClipMaskManager::adjustPathStencilParams(const GrStencilBuffer* stencilBuffer,
1124 GrStencilSettings* settings) {
bsalomon49f085d2014-09-05 13:34:00 -07001125 if (stencilBuffer) {
joshualitt9853cce2014-11-17 14:22:48 -08001126 int stencilBits = stencilBuffer->bits();
joshualitt7a6184f2014-10-29 18:29:27 -07001127 this->adjustStencilParams(settings, fClipMode, stencilBits);
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +00001128 }
1129}