robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 1 | |
| 2 | /* |
| 3 | * Copyright 2012 Google Inc. |
| 4 | * |
| 5 | * Use of this source code is governed by a BSD-style license that can be |
| 6 | * found in the LICENSE file. |
| 7 | */ |
| 8 | |
| 9 | #include "GrClipMaskManager.h" |
robertphillips@google.com | fa66294 | 2012-05-17 12:20:22 +0000 | [diff] [blame] | 10 | #include "GrAAConvexPathRenderer.h" |
| 11 | #include "GrAAHairLinePathRenderer.h" |
jvanverth@google.com | bfe2b9d | 2013-09-06 16:57:29 +0000 | [diff] [blame] | 12 | #include "GrAARectRenderer.h" |
bsalomon@google.com | c26d94f | 2013-03-25 18:19:00 +0000 | [diff] [blame] | 13 | #include "GrDrawTargetCaps.h" |
| 14 | #include "GrGpu.h" |
| 15 | #include "GrPaint.h" |
| 16 | #include "GrPathRenderer.h" |
| 17 | #include "GrRenderTarget.h" |
| 18 | #include "GrStencilBuffer.h" |
robertphillips@google.com | 58b2021 | 2012-06-27 20:44:52 +0000 | [diff] [blame] | 19 | #include "GrSWMaskHelper.h" |
bsalomon@google.com | c26d94f | 2013-03-25 18:19:00 +0000 | [diff] [blame] | 20 | #include "SkRasterClip.h" |
| 21 | #include "SkStrokeRec.h" |
bsalomon@google.com | c6b3e48 | 2012-12-07 20:43:52 +0000 | [diff] [blame] | 22 | #include "SkTLazy.h" |
joshualitt | 7afb5aa | 2014-10-27 07:17:17 -0700 | [diff] [blame] | 23 | #include "effects/GrTextureDomain.h" |
| 24 | #include "effects/GrConvexPolyEffect.h" |
| 25 | #include "effects/GrRRectEffect.h" |
bsalomon@google.com | c6b3e48 | 2012-12-07 20:43:52 +0000 | [diff] [blame] | 26 | |
robertphillips@google.com | ba998f2 | 2012-10-12 11:33:56 +0000 | [diff] [blame] | 27 | #define GR_AA_CLIP 1 |
robertphillips@google.com | a72eef3 | 2012-05-01 17:22:59 +0000 | [diff] [blame] | 28 | |
bsalomon@google.com | 8182fa0 | 2012-12-04 14:06:06 +0000 | [diff] [blame] | 29 | typedef SkClipStack::Element Element; |
bsalomon@google.com | 51a6286 | 2012-11-26 21:19:43 +0000 | [diff] [blame] | 30 | |
| 31 | //////////////////////////////////////////////////////////////////////////////// |
robertphillips@google.com | e79f320 | 2014-02-11 16:30:21 +0000 | [diff] [blame] | 32 | namespace { |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 33 | // set up the draw state to enable the aa clipping mask. Besides setting up the |
bsalomon@google.com | 08283af | 2012-10-26 13:01:20 +0000 | [diff] [blame] | 34 | // stage matrix this also alters the vertex layout |
robertphillips@google.com | e79f320 | 2014-02-11 16:30:21 +0000 | [diff] [blame] | 35 | void setup_drawstate_aaclip(GrGpu* gpu, |
| 36 | GrTexture* result, |
| 37 | const SkIRect &devBound) { |
robertphillips@google.com | a72eef3 | 2012-05-01 17:22:59 +0000 | [diff] [blame] | 38 | GrDrawState* drawState = gpu->drawState(); |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 39 | SkASSERT(drawState); |
robertphillips@google.com | a72eef3 | 2012-05-01 17:22:59 +0000 | [diff] [blame] | 40 | |
bsalomon@google.com | b9086a0 | 2012-11-01 18:02:54 +0000 | [diff] [blame] | 41 | SkMatrix mat; |
bsalomon@google.com | c781888 | 2013-03-20 19:19:53 +0000 | [diff] [blame] | 42 | // We want to use device coords to compute the texture coordinates. We set our matrix to be |
| 43 | // equal to the view matrix followed by an offset to the devBound, and then a scaling matrix to |
| 44 | // normalized coords. We apply this matrix to the vertex positions rather than local coords. |
robertphillips@google.com | a72eef3 | 2012-05-01 17:22:59 +0000 | [diff] [blame] | 45 | mat.setIDiv(result->width(), result->height()); |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 46 | mat.preTranslate(SkIntToScalar(-devBound.fLeft), |
robertphillips@google.com | 7b11289 | 2012-07-31 15:18:21 +0000 | [diff] [blame] | 47 | SkIntToScalar(-devBound.fTop)); |
robertphillips@google.com | a72eef3 | 2012-05-01 17:22:59 +0000 | [diff] [blame] | 48 | mat.preConcat(drawState->getViewMatrix()); |
| 49 | |
bsalomon@google.com | 7b7cdd1 | 2012-11-07 16:17:24 +0000 | [diff] [blame] | 50 | SkIRect domainTexels = SkIRect::MakeWH(devBound.width(), devBound.height()); |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 51 | // This could be a long-lived effect that is cached with the alpha-mask. |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 52 | drawState->addCoverageProcessor( |
bsalomon@google.com | eb6879f | 2013-06-13 19:34:18 +0000 | [diff] [blame] | 53 | GrTextureDomainEffect::Create(result, |
bsalomon@google.com | 7b7cdd1 | 2012-11-07 16:17:24 +0000 | [diff] [blame] | 54 | mat, |
commit-bot@chromium.org | 907fbd5 | 2013-12-09 17:03:02 +0000 | [diff] [blame] | 55 | GrTextureDomain::MakeTexelDomain(result, domainTexels), |
| 56 | GrTextureDomain::kDecal_Mode, |
humper@google.com | b86add1 | 2013-07-25 18:49:07 +0000 | [diff] [blame] | 57 | GrTextureParams::kNone_FilterMode, |
bsalomon@google.com | 77af680 | 2013-10-02 13:04:56 +0000 | [diff] [blame] | 58 | kPosition_GrCoordSet))->unref(); |
robertphillips@google.com | a72eef3 | 2012-05-01 17:22:59 +0000 | [diff] [blame] | 59 | } |
| 60 | |
robertphillips@google.com | e79f320 | 2014-02-11 16:30:21 +0000 | [diff] [blame] | 61 | bool path_needs_SW_renderer(GrContext* context, |
| 62 | GrGpu* gpu, |
| 63 | const SkPath& origPath, |
| 64 | const SkStrokeRec& stroke, |
| 65 | bool doAA) { |
| 66 | // the gpu alpha mask will draw the inverse paths as non-inverse to a temp buffer |
| 67 | SkTCopyOnFirstWrite<SkPath> path(origPath); |
| 68 | if (path->isInverseFillType()) { |
| 69 | path.writable()->toggleInverseFillType(); |
| 70 | } |
| 71 | // last (false) parameter disallows use of the SW path renderer |
bsalomon@google.com | 45a15f5 | 2012-12-10 19:10:17 +0000 | [diff] [blame] | 72 | GrPathRendererChain::DrawType type = doAA ? |
| 73 | GrPathRendererChain::kColorAntiAlias_DrawType : |
| 74 | GrPathRendererChain::kColor_DrawType; |
| 75 | |
robertphillips@google.com | e79f320 | 2014-02-11 16:30:21 +0000 | [diff] [blame] | 76 | return NULL == context->getPathRenderer(*path, stroke, gpu, false, type); |
| 77 | } |
| 78 | |
robertphillips@google.com | 6b70a7b | 2012-05-11 15:32:48 +0000 | [diff] [blame] | 79 | } |
| 80 | |
robertphillips@google.com | fa66294 | 2012-05-17 12:20:22 +0000 | [diff] [blame] | 81 | /* |
| 82 | * This method traverses the clip stack to see if the GrSoftwarePathRenderer |
| 83 | * will be used on any element. If so, it returns true to indicate that the |
| 84 | * entire clip should be rendered in SW and then uploaded en masse to the gpu. |
| 85 | */ |
tfarina | bf54e49 | 2014-10-23 17:47:18 -0700 | [diff] [blame] | 86 | bool GrClipMaskManager::useSWOnlyPath(const GrReducedClip::ElementList& elements) { |
robertphillips@google.com | a3e5c63 | 2012-05-22 18:09:26 +0000 | [diff] [blame] | 87 | |
robertphillips@google.com | 8a4fc40 | 2012-05-24 12:42:24 +0000 | [diff] [blame] | 88 | // TODO: generalize this function so that when |
robertphillips@google.com | fa66294 | 2012-05-17 12:20:22 +0000 | [diff] [blame] | 89 | // a clip gets complex enough it can just be done in SW regardless |
| 90 | // of whether it would invoke the GrSoftwarePathRenderer. |
sugoi@google.com | 5f74cf8 | 2012-12-17 21:16:45 +0000 | [diff] [blame] | 91 | SkStrokeRec stroke(SkStrokeRec::kFill_InitStyle); |
skia.committer@gmail.com | d21444a | 2012-12-07 02:01:25 +0000 | [diff] [blame] | 92 | |
tfarina | bf54e49 | 2014-10-23 17:47:18 -0700 | [diff] [blame] | 93 | for (GrReducedClip::ElementList::Iter iter(elements.headIter()); iter.get(); iter.next()) { |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 94 | const Element* element = iter.get(); |
robertphillips@google.com | f69a11b | 2012-06-15 13:58:07 +0000 | [diff] [blame] | 95 | // rects can always be drawn directly w/o using the software path |
commit-bot@chromium.org | e5b2af9 | 2014-02-16 13:25:24 +0000 | [diff] [blame] | 96 | // Skip rrects once we're drawing them directly. |
| 97 | if (Element::kRect_Type != element->getType()) { |
| 98 | SkPath path; |
| 99 | element->asPath(&path); |
| 100 | if (path_needs_SW_renderer(this->getContext(), fGpu, path, stroke, element->isAA())) { |
| 101 | return true; |
| 102 | } |
robertphillips@google.com | fa66294 | 2012-05-17 12:20:22 +0000 | [diff] [blame] | 103 | } |
robertphillips@google.com | fa66294 | 2012-05-17 12:20:22 +0000 | [diff] [blame] | 104 | } |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 105 | return false; |
robertphillips@google.com | a72eef3 | 2012-05-01 17:22:59 +0000 | [diff] [blame] | 106 | } |
| 107 | |
tfarina | bf54e49 | 2014-10-23 17:47:18 -0700 | [diff] [blame] | 108 | bool GrClipMaskManager::installClipEffects(const GrReducedClip::ElementList& elements, |
commit-bot@chromium.org | e5a041c | 2014-03-07 19:43:43 +0000 | [diff] [blame] | 109 | GrDrawState::AutoRestoreEffects* are, |
| 110 | const SkVector& clipToRTOffset, |
mtklein | 217daa7 | 2014-07-02 12:55:21 -0700 | [diff] [blame] | 111 | const SkRect* drawBounds) { |
commit-bot@chromium.org | e5a041c | 2014-03-07 19:43:43 +0000 | [diff] [blame] | 112 | |
| 113 | GrDrawState* drawState = fGpu->drawState(); |
| 114 | SkRect boundsInClipSpace; |
bsalomon | 49f085d | 2014-09-05 13:34:00 -0700 | [diff] [blame] | 115 | if (drawBounds) { |
commit-bot@chromium.org | e5a041c | 2014-03-07 19:43:43 +0000 | [diff] [blame] | 116 | boundsInClipSpace = *drawBounds; |
| 117 | boundsInClipSpace.offset(-clipToRTOffset.fX, -clipToRTOffset.fY); |
| 118 | } |
| 119 | |
| 120 | are->set(drawState); |
| 121 | GrRenderTarget* rt = drawState->getRenderTarget(); |
tfarina | bf54e49 | 2014-10-23 17:47:18 -0700 | [diff] [blame] | 122 | GrReducedClip::ElementList::Iter iter(elements); |
commit-bot@chromium.org | e5a041c | 2014-03-07 19:43:43 +0000 | [diff] [blame] | 123 | |
| 124 | bool setARE = false; |
| 125 | bool failed = false; |
| 126 | |
bsalomon | 49f085d | 2014-09-05 13:34:00 -0700 | [diff] [blame] | 127 | while (iter.get()) { |
commit-bot@chromium.org | e5a041c | 2014-03-07 19:43:43 +0000 | [diff] [blame] | 128 | 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; |
bsalomon | 49f085d | 2014-09-05 13:34:00 -0700 | [diff] [blame] | 137 | if (drawBounds && iter.get()->contains(boundsInClipSpace)) { |
commit-bot@chromium.org | e5a041c | 2014-03-07 19:43:43 +0000 | [diff] [blame] | 138 | 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) { |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 155 | GrPrimitiveEdgeType edgeType; |
commit-bot@chromium.org | e5a041c | 2014-03-07 19:43:43 +0000 | [diff] [blame] | 156 | if (GR_AA_CLIP && iter.get()->isAA()) { |
| 157 | if (rt->isMultisampled()) { |
mtklein | 217daa7 | 2014-07-02 12:55:21 -0700 | [diff] [blame] | 158 | // Coverage based AA clips don't place nicely with MSAA. |
commit-bot@chromium.org | e5a041c | 2014-03-07 19:43:43 +0000 | [diff] [blame] | 159 | failed = true; |
| 160 | break; |
| 161 | } |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 162 | edgeType = |
| 163 | invert ? kInverseFillAA_GrProcessorEdgeType : kFillAA_GrProcessorEdgeType; |
commit-bot@chromium.org | e5a041c | 2014-03-07 19:43:43 +0000 | [diff] [blame] | 164 | } else { |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 165 | edgeType = |
| 166 | invert ? kInverseFillBW_GrProcessorEdgeType : kFillBW_GrProcessorEdgeType; |
commit-bot@chromium.org | e5a041c | 2014-03-07 19:43:43 +0000 | [diff] [blame] | 167 | } |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 168 | SkAutoTUnref<GrFragmentProcessor> fp; |
commit-bot@chromium.org | e5a041c | 2014-03-07 19:43:43 +0000 | [diff] [blame] | 169 | switch (iter.get()->getType()) { |
| 170 | case SkClipStack::Element::kPath_Type: |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 171 | fp.reset(GrConvexPolyEffect::Create(edgeType, iter.get()->getPath(), |
commit-bot@chromium.org | e5a041c | 2014-03-07 19:43:43 +0000 | [diff] [blame] | 172 | &clipToRTOffset)); |
| 173 | break; |
| 174 | case SkClipStack::Element::kRRect_Type: { |
| 175 | SkRRect rrect = iter.get()->getRRect(); |
| 176 | rrect.offset(clipToRTOffset.fX, clipToRTOffset.fY); |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 177 | fp.reset(GrRRectEffect::Create(edgeType, rrect)); |
commit-bot@chromium.org | e5a041c | 2014-03-07 19:43:43 +0000 | [diff] [blame] | 178 | break; |
| 179 | } |
| 180 | case SkClipStack::Element::kRect_Type: { |
| 181 | SkRect rect = iter.get()->getRect(); |
| 182 | rect.offset(clipToRTOffset.fX, clipToRTOffset.fY); |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 183 | fp.reset(GrConvexPolyEffect::Create(edgeType, rect)); |
commit-bot@chromium.org | e5a041c | 2014-03-07 19:43:43 +0000 | [diff] [blame] | 184 | break; |
| 185 | } |
| 186 | default: |
| 187 | break; |
| 188 | } |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 189 | if (fp) { |
commit-bot@chromium.org | e5a041c | 2014-03-07 19:43:43 +0000 | [diff] [blame] | 190 | if (!setARE) { |
| 191 | are->set(fGpu->drawState()); |
| 192 | setARE = true; |
| 193 | } |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 194 | fGpu->drawState()->addCoverageProcessor(fp); |
mtklein | 217daa7 | 2014-07-02 12:55:21 -0700 | [diff] [blame] | 195 | } else { |
commit-bot@chromium.org | e5a041c | 2014-03-07 19:43:43 +0000 | [diff] [blame] | 196 | failed = true; |
| 197 | break; |
| 198 | } |
| 199 | } |
mtklein | 217daa7 | 2014-07-02 12:55:21 -0700 | [diff] [blame] | 200 | iter.next(); |
commit-bot@chromium.org | e5a041c | 2014-03-07 19:43:43 +0000 | [diff] [blame] | 201 | } |
| 202 | |
| 203 | if (failed) { |
| 204 | are->set(NULL); |
| 205 | } |
| 206 | |
| 207 | return !failed; |
| 208 | } |
| 209 | |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 210 | //////////////////////////////////////////////////////////////////////////////// |
robertphillips@google.com | 6b70a7b | 2012-05-11 15:32:48 +0000 | [diff] [blame] | 211 | // sort out what kind of clip mask needs to be created: alpha, stencil, |
| 212 | // scissor, or entirely software |
bsalomon@google.com | eb6879f | 2013-06-13 19:34:18 +0000 | [diff] [blame] | 213 | bool GrClipMaskManager::setupClipping(const GrClipData* clipDataIn, |
commit-bot@chromium.org | 3ae0e6c | 2014-02-11 18:24:25 +0000 | [diff] [blame] | 214 | GrDrawState::AutoRestoreEffects* are, |
joshualitt | 7afb5aa | 2014-10-27 07:17:17 -0700 | [diff] [blame] | 215 | GrDrawState::AutoRestoreStencil* asr, |
commit-bot@chromium.org | 3ae0e6c | 2014-02-11 18:24:25 +0000 | [diff] [blame] | 216 | const SkRect* devBounds) { |
bsalomon@google.com | c8f7f47 | 2012-06-18 13:44:51 +0000 | [diff] [blame] | 217 | fCurrClipMaskType = kNone_ClipMaskType; |
bsalomon@google.com | a320194 | 2012-06-21 19:58:20 +0000 | [diff] [blame] | 218 | |
tfarina | bf54e49 | 2014-10-23 17:47:18 -0700 | [diff] [blame] | 219 | GrReducedClip::ElementList elements(16); |
commit-bot@chromium.org | d3e5842 | 2013-11-05 15:03:08 +0000 | [diff] [blame] | 220 | int32_t genID; |
tfarina | bf54e49 | 2014-10-23 17:47:18 -0700 | [diff] [blame] | 221 | GrReducedClip::InitialState initialState; |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 222 | SkIRect clipSpaceIBounds; |
| 223 | bool requiresAA; |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 224 | |
bsalomon@google.com | 13b85aa | 2012-06-15 21:09:40 +0000 | [diff] [blame] | 225 | GrDrawState* drawState = fGpu->drawState(); |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 226 | |
| 227 | const GrRenderTarget* rt = drawState->getRenderTarget(); |
| 228 | // GrDrawTarget should have filtered this for us |
bsalomon | 49f085d | 2014-09-05 13:34:00 -0700 | [diff] [blame] | 229 | SkASSERT(rt); |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 230 | |
| 231 | bool ignoreClip = !drawState->isClipState() || clipDataIn->fClipStack->isWideOpen(); |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 232 | if (!ignoreClip) { |
| 233 | SkIRect clipSpaceRTIBounds = SkIRect::MakeWH(rt->width(), rt->height()); |
| 234 | clipSpaceRTIBounds.offset(clipDataIn->fOrigin); |
tfarina | bf54e49 | 2014-10-23 17:47:18 -0700 | [diff] [blame] | 235 | GrReducedClip::ReduceClipStack(*clipDataIn->fClipStack, |
| 236 | clipSpaceRTIBounds, |
| 237 | &elements, |
| 238 | &genID, |
| 239 | &initialState, |
| 240 | &clipSpaceIBounds, |
| 241 | &requiresAA); |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 242 | if (elements.isEmpty()) { |
tfarina | bf54e49 | 2014-10-23 17:47:18 -0700 | [diff] [blame] | 243 | if (GrReducedClip::kAllIn_InitialState == initialState) { |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 244 | ignoreClip = clipSpaceIBounds == clipSpaceRTIBounds; |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 245 | } else { |
| 246 | return false; |
| 247 | } |
| 248 | } |
| 249 | } |
| 250 | |
| 251 | if (ignoreClip) { |
bsalomon@google.com | a320194 | 2012-06-21 19:58:20 +0000 | [diff] [blame] | 252 | fGpu->disableScissor(); |
joshualitt | 7afb5aa | 2014-10-27 07:17:17 -0700 | [diff] [blame] | 253 | this->setDrawStateStencil(asr); |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 254 | return true; |
| 255 | } |
| 256 | |
commit-bot@chromium.org | e5a041c | 2014-03-07 19:43:43 +0000 | [diff] [blame] | 257 | // An element count of 4 was chosen because of the common pattern in Blink of: |
| 258 | // isect RR |
| 259 | // diff RR |
| 260 | // isect convex_poly |
| 261 | // isect convex_poly |
| 262 | // when drawing rounded div borders. This could probably be tuned based on a |
| 263 | // configuration's relative costs of switching RTs to generate a mask vs |
| 264 | // longer shaders. |
| 265 | if (elements.count() <= 4) { |
| 266 | SkVector clipToRTOffset = { SkIntToScalar(-clipDataIn->fOrigin.fX), |
commit-bot@chromium.org | b21fac1 | 2014-02-07 21:13:11 +0000 | [diff] [blame] | 267 | SkIntToScalar(-clipDataIn->fOrigin.fY) }; |
commit-bot@chromium.org | e5a041c | 2014-03-07 19:43:43 +0000 | [diff] [blame] | 268 | if (elements.isEmpty() || |
mtklein | 217daa7 | 2014-07-02 12:55:21 -0700 | [diff] [blame] | 269 | (requiresAA && this->installClipEffects(elements, are, clipToRTOffset, devBounds))) { |
| 270 | SkIRect scissorSpaceIBounds(clipSpaceIBounds); |
| 271 | scissorSpaceIBounds.offset(-clipDataIn->fOrigin); |
| 272 | if (NULL == devBounds || |
| 273 | !SkRect::Make(scissorSpaceIBounds).contains(*devBounds)) { |
| 274 | fGpu->enableScissor(scissorSpaceIBounds); |
commit-bot@chromium.org | e5a041c | 2014-03-07 19:43:43 +0000 | [diff] [blame] | 275 | } else { |
mtklein | 217daa7 | 2014-07-02 12:55:21 -0700 | [diff] [blame] | 276 | fGpu->disableScissor(); |
commit-bot@chromium.org | e5a041c | 2014-03-07 19:43:43 +0000 | [diff] [blame] | 277 | } |
joshualitt | 7afb5aa | 2014-10-27 07:17:17 -0700 | [diff] [blame] | 278 | this->setDrawStateStencil(asr); |
commit-bot@chromium.org | 65ee5f4 | 2014-02-04 17:49:48 +0000 | [diff] [blame] | 279 | return true; |
| 280 | } |
| 281 | } |
bsalomon@google.com | d3066bd | 2014-02-03 20:09:56 +0000 | [diff] [blame] | 282 | |
commit-bot@chromium.org | 65ee5f4 | 2014-02-04 17:49:48 +0000 | [diff] [blame] | 283 | #if GR_AA_CLIP |
robertphillips@google.com | a3e5c63 | 2012-05-22 18:09:26 +0000 | [diff] [blame] | 284 | // If MSAA is enabled we can do everything in the stencil buffer. |
robertphillips@google.com | b99225c | 2012-07-24 18:20:10 +0000 | [diff] [blame] | 285 | if (0 == rt->numSamples() && requiresAA) { |
robertphillips@google.com | a72eef3 | 2012-05-01 17:22:59 +0000 | [diff] [blame] | 286 | GrTexture* result = NULL; |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 287 | |
| 288 | if (this->useSWOnlyPath(elements)) { |
| 289 | // The clip geometry is complex enough that it will be more efficient to create it |
| 290 | // entirely in software |
| 291 | result = this->createSoftwareClipMask(genID, |
| 292 | initialState, |
| 293 | elements, |
| 294 | clipSpaceIBounds); |
| 295 | } else { |
| 296 | result = this->createAlphaClipMask(genID, |
| 297 | initialState, |
| 298 | elements, |
| 299 | clipSpaceIBounds); |
| 300 | } |
| 301 | |
bsalomon | 49f085d | 2014-09-05 13:34:00 -0700 | [diff] [blame] | 302 | if (result) { |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 303 | // The mask's top left coord should be pinned to the rounded-out top left corner of |
| 304 | // clipSpace bounds. We determine the mask's position WRT to the render target here. |
| 305 | SkIRect rtSpaceMaskBounds = clipSpaceIBounds; |
| 306 | rtSpaceMaskBounds.offset(-clipDataIn->fOrigin); |
bsalomon@google.com | eb6879f | 2013-06-13 19:34:18 +0000 | [diff] [blame] | 307 | are->set(fGpu->drawState()); |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 308 | setup_drawstate_aaclip(fGpu, result, rtSpaceMaskBounds); |
bsalomon@google.com | a320194 | 2012-06-21 19:58:20 +0000 | [diff] [blame] | 309 | fGpu->disableScissor(); |
joshualitt | 7afb5aa | 2014-10-27 07:17:17 -0700 | [diff] [blame] | 310 | this->setDrawStateStencil(asr); |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 311 | return true; |
| 312 | } |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 313 | // if alpha clip mask creation fails fall through to the non-AA code paths |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 314 | } |
| 315 | #endif // GR_AA_CLIP |
| 316 | |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 317 | // Either a hard (stencil buffer) clip was explicitly requested or an anti-aliased clip couldn't |
| 318 | // be created. In either case, free up the texture in the anti-aliased mask cache. |
| 319 | // TODO: this may require more investigation. Ganesh performs a lot of utility draws (e.g., |
| 320 | // clears, InOrderDrawBuffer playbacks) that hit the stencil buffer path. These may be |
| 321 | // "incorrectly" clearing the AA cache. |
robertphillips@google.com | 5acc0e3 | 2012-05-17 12:01:02 +0000 | [diff] [blame] | 322 | fAACache.reset(); |
| 323 | |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 324 | // use the stencil clip if we can't represent the clip as a rectangle. |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 325 | SkIPoint clipSpaceToStencilSpaceOffset = -clipDataIn->fOrigin; |
commit-bot@chromium.org | d3e5842 | 2013-11-05 15:03:08 +0000 | [diff] [blame] | 326 | this->createStencilClipMask(genID, |
| 327 | initialState, |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 328 | elements, |
| 329 | clipSpaceIBounds, |
| 330 | clipSpaceToStencilSpaceOffset); |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 331 | |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 332 | // This must occur after createStencilClipMask. That function may change the scissor. Also, it |
| 333 | // only guarantees that the stencil mask is correct within the bounds it was passed, so we must |
| 334 | // use both stencil and scissor test to the bounds for the final draw. |
| 335 | SkIRect scissorSpaceIBounds(clipSpaceIBounds); |
| 336 | scissorSpaceIBounds.offset(clipSpaceToStencilSpaceOffset); |
| 337 | fGpu->enableScissor(scissorSpaceIBounds); |
joshualitt | 7afb5aa | 2014-10-27 07:17:17 -0700 | [diff] [blame] | 338 | this->setDrawStateStencil(asr); |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 339 | return true; |
| 340 | } |
| 341 | |
| 342 | #define VISUALIZE_COMPLEX_CLIP 0 |
| 343 | |
| 344 | #if VISUALIZE_COMPLEX_CLIP |
tfarina@chromium.org | 223137f | 2012-11-21 22:38:36 +0000 | [diff] [blame] | 345 | #include "SkRandom.h" |
| 346 | SkRandom gRandom; |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 347 | #define SET_RANDOM_COLOR drawState->setColor(0xff000000 | gRandom.nextU()); |
| 348 | #else |
| 349 | #define SET_RANDOM_COLOR |
| 350 | #endif |
| 351 | |
| 352 | namespace { |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 353 | |
| 354 | //////////////////////////////////////////////////////////////////////////////// |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 355 | // set up the OpenGL blend function to perform the specified |
| 356 | // boolean operation for alpha clip mask creation |
robertphillips@google.com | 6b70a7b | 2012-05-11 15:32:48 +0000 | [diff] [blame] | 357 | void setup_boolean_blendcoeffs(GrDrawState* drawState, SkRegion::Op op) { |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 358 | |
| 359 | switch (op) { |
| 360 | case SkRegion::kReplace_Op: |
bsalomon@google.com | 4705954 | 2012-06-06 20:51:20 +0000 | [diff] [blame] | 361 | drawState->setBlendFunc(kOne_GrBlendCoeff, kZero_GrBlendCoeff); |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 362 | break; |
| 363 | case SkRegion::kIntersect_Op: |
bsalomon@google.com | 4705954 | 2012-06-06 20:51:20 +0000 | [diff] [blame] | 364 | drawState->setBlendFunc(kDC_GrBlendCoeff, kZero_GrBlendCoeff); |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 365 | break; |
| 366 | case SkRegion::kUnion_Op: |
bsalomon@google.com | 4705954 | 2012-06-06 20:51:20 +0000 | [diff] [blame] | 367 | drawState->setBlendFunc(kOne_GrBlendCoeff, kISC_GrBlendCoeff); |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 368 | break; |
| 369 | case SkRegion::kXOR_Op: |
bsalomon@google.com | 4705954 | 2012-06-06 20:51:20 +0000 | [diff] [blame] | 370 | drawState->setBlendFunc(kIDC_GrBlendCoeff, kISC_GrBlendCoeff); |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 371 | break; |
| 372 | case SkRegion::kDifference_Op: |
bsalomon@google.com | 4705954 | 2012-06-06 20:51:20 +0000 | [diff] [blame] | 373 | drawState->setBlendFunc(kZero_GrBlendCoeff, kISC_GrBlendCoeff); |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 374 | break; |
| 375 | case SkRegion::kReverseDifference_Op: |
bsalomon@google.com | 4705954 | 2012-06-06 20:51:20 +0000 | [diff] [blame] | 376 | drawState->setBlendFunc(kIDC_GrBlendCoeff, kZero_GrBlendCoeff); |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 377 | break; |
| 378 | default: |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 379 | SkASSERT(false); |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 380 | break; |
| 381 | } |
| 382 | } |
| 383 | |
robertphillips@google.com | 72176b2 | 2012-05-23 13:19:12 +0000 | [diff] [blame] | 384 | } |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 385 | |
| 386 | //////////////////////////////////////////////////////////////////////////////// |
bsalomon@google.com | b68addd | 2012-12-14 13:36:53 +0000 | [diff] [blame] | 387 | bool GrClipMaskManager::drawElement(GrTexture* target, |
robertphillips@google.com | e79f320 | 2014-02-11 16:30:21 +0000 | [diff] [blame] | 388 | const SkClipStack::Element* element, |
| 389 | GrPathRenderer* pr) { |
bsalomon@google.com | 13b85aa | 2012-06-15 21:09:40 +0000 | [diff] [blame] | 390 | GrDrawState* drawState = fGpu->drawState(); |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 391 | |
| 392 | drawState->setRenderTarget(target->asRenderTarget()); |
| 393 | |
commit-bot@chromium.org | e5b2af9 | 2014-02-16 13:25:24 +0000 | [diff] [blame] | 394 | // TODO: Draw rrects directly here. |
bsalomon@google.com | 8182fa0 | 2012-12-04 14:06:06 +0000 | [diff] [blame] | 395 | switch (element->getType()) { |
commit-bot@chromium.org | e5b2af9 | 2014-02-16 13:25:24 +0000 | [diff] [blame] | 396 | case Element::kEmpty_Type: |
| 397 | SkDEBUGFAIL("Should never get here with an empty element."); |
| 398 | break; |
bsalomon@google.com | 8182fa0 | 2012-12-04 14:06:06 +0000 | [diff] [blame] | 399 | case Element::kRect_Type: |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 400 | // TODO: Do rects directly to the accumulator using a aa-rect GrProcessor that covers |
| 401 | // the entire mask bounds and writes 0 outside the rect. |
bsalomon@google.com | 8182fa0 | 2012-12-04 14:06:06 +0000 | [diff] [blame] | 402 | if (element->isAA()) { |
joshualitt | 7afb5aa | 2014-10-27 07:17:17 -0700 | [diff] [blame] | 403 | this->getContext()->getAARectRenderer()->fillAARect(fGpu, |
| 404 | fGpu, |
| 405 | element->getRect(), |
| 406 | SkMatrix::I(), |
| 407 | element->getRect()); |
bsalomon@google.com | 8182fa0 | 2012-12-04 14:06:06 +0000 | [diff] [blame] | 408 | } else { |
bsalomon | 01c8da1 | 2014-08-04 09:21:30 -0700 | [diff] [blame] | 409 | fGpu->drawSimpleRect(element->getRect()); |
bsalomon@google.com | 8182fa0 | 2012-12-04 14:06:06 +0000 | [diff] [blame] | 410 | } |
| 411 | return true; |
commit-bot@chromium.org | e5b2af9 | 2014-02-16 13:25:24 +0000 | [diff] [blame] | 412 | default: { |
| 413 | SkPath path; |
| 414 | element->asPath(&path); |
jvanverth | b3eb687 | 2014-10-24 07:12:51 -0700 | [diff] [blame] | 415 | path.setIsVolatile(true); |
commit-bot@chromium.org | e5b2af9 | 2014-02-16 13:25:24 +0000 | [diff] [blame] | 416 | if (path.isInverseFillType()) { |
| 417 | path.toggleInverseFillType(); |
robertphillips@google.com | e79f320 | 2014-02-11 16:30:21 +0000 | [diff] [blame] | 418 | } |
sugoi@google.com | 5f74cf8 | 2012-12-17 21:16:45 +0000 | [diff] [blame] | 419 | SkStrokeRec stroke(SkStrokeRec::kFill_InitStyle); |
robertphillips@google.com | e79f320 | 2014-02-11 16:30:21 +0000 | [diff] [blame] | 420 | if (NULL == pr) { |
| 421 | GrPathRendererChain::DrawType type; |
| 422 | type = element->isAA() ? GrPathRendererChain::kColorAntiAlias_DrawType : |
| 423 | GrPathRendererChain::kColor_DrawType; |
commit-bot@chromium.org | e5b2af9 | 2014-02-16 13:25:24 +0000 | [diff] [blame] | 424 | pr = this->getContext()->getPathRenderer(path, stroke, fGpu, false, type); |
robertphillips@google.com | e79f320 | 2014-02-11 16:30:21 +0000 | [diff] [blame] | 425 | } |
| 426 | if (NULL == pr) { |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 427 | return false; |
| 428 | } |
commit-bot@chromium.org | e5b2af9 | 2014-02-16 13:25:24 +0000 | [diff] [blame] | 429 | pr->drawPath(path, stroke, fGpu, element->isAA()); |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 430 | break; |
| 431 | } |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 432 | } |
| 433 | return true; |
| 434 | } |
| 435 | |
bsalomon@google.com | b68addd | 2012-12-14 13:36:53 +0000 | [diff] [blame] | 436 | bool GrClipMaskManager::canStencilAndDrawElement(GrTexture* target, |
| 437 | const SkClipStack::Element* element, |
robertphillips@google.com | e79f320 | 2014-02-11 16:30:21 +0000 | [diff] [blame] | 438 | GrPathRenderer** pr) { |
bsalomon@google.com | b68addd | 2012-12-14 13:36:53 +0000 | [diff] [blame] | 439 | GrDrawState* drawState = fGpu->drawState(); |
| 440 | drawState->setRenderTarget(target->asRenderTarget()); |
| 441 | |
commit-bot@chromium.org | e5b2af9 | 2014-02-16 13:25:24 +0000 | [diff] [blame] | 442 | if (Element::kRect_Type == element->getType()) { |
| 443 | return true; |
| 444 | } else { |
| 445 | // We shouldn't get here with an empty clip element. |
| 446 | SkASSERT(Element::kEmpty_Type != element->getType()); |
| 447 | SkPath path; |
| 448 | element->asPath(&path); |
| 449 | if (path.isInverseFillType()) { |
| 450 | path.toggleInverseFillType(); |
bsalomon@google.com | b68addd | 2012-12-14 13:36:53 +0000 | [diff] [blame] | 451 | } |
commit-bot@chromium.org | e5b2af9 | 2014-02-16 13:25:24 +0000 | [diff] [blame] | 452 | SkStrokeRec stroke(SkStrokeRec::kFill_InitStyle); |
| 453 | GrPathRendererChain::DrawType type = element->isAA() ? |
| 454 | GrPathRendererChain::kStencilAndColorAntiAlias_DrawType : |
| 455 | GrPathRendererChain::kStencilAndColor_DrawType; |
| 456 | *pr = this->getContext()->getPathRenderer(path, stroke, fGpu, false, type); |
bsalomon | 49f085d | 2014-09-05 13:34:00 -0700 | [diff] [blame] | 457 | return SkToBool(*pr); |
bsalomon@google.com | b68addd | 2012-12-14 13:36:53 +0000 | [diff] [blame] | 458 | } |
| 459 | } |
| 460 | |
bsalomon@google.com | 7b7cdd1 | 2012-11-07 16:17:24 +0000 | [diff] [blame] | 461 | void GrClipMaskManager::mergeMask(GrTexture* dstMask, |
| 462 | GrTexture* srcMask, |
| 463 | SkRegion::Op op, |
commit-bot@chromium.org | fd03d4a | 2013-07-17 21:39:42 +0000 | [diff] [blame] | 464 | const SkIRect& dstBound, |
| 465 | const SkIRect& srcBound) { |
bsalomon@google.com | 137f134 | 2013-05-29 21:27:53 +0000 | [diff] [blame] | 466 | GrDrawState::AutoViewMatrixRestore avmr; |
bsalomon@google.com | 13b85aa | 2012-06-15 21:09:40 +0000 | [diff] [blame] | 467 | GrDrawState* drawState = fGpu->drawState(); |
bsalomon@google.com | 137f134 | 2013-05-29 21:27:53 +0000 | [diff] [blame] | 468 | SkAssertResult(avmr.setIdentity(drawState)); |
bsalomon@google.com | eb6879f | 2013-06-13 19:34:18 +0000 | [diff] [blame] | 469 | GrDrawState::AutoRestoreEffects are(drawState); |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 470 | |
bsalomon@google.com | 7b7cdd1 | 2012-11-07 16:17:24 +0000 | [diff] [blame] | 471 | drawState->setRenderTarget(dstMask->asRenderTarget()); |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 472 | |
bsalomon@google.com | 7b7cdd1 | 2012-11-07 16:17:24 +0000 | [diff] [blame] | 473 | setup_boolean_blendcoeffs(drawState, op); |
skia.committer@gmail.com | 72b2e6f | 2012-11-08 02:03:56 +0000 | [diff] [blame] | 474 | |
bsalomon@google.com | b9086a0 | 2012-11-01 18:02:54 +0000 | [diff] [blame] | 475 | SkMatrix sampleM; |
bsalomon@google.com | 7b7cdd1 | 2012-11-07 16:17:24 +0000 | [diff] [blame] | 476 | sampleM.setIDiv(srcMask->width(), srcMask->height()); |
skia.committer@gmail.com | 956b310 | 2013-07-26 07:00:58 +0000 | [diff] [blame] | 477 | |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 478 | drawState->addColorProcessor( |
bsalomon@google.com | 7b7cdd1 | 2012-11-07 16:17:24 +0000 | [diff] [blame] | 479 | GrTextureDomainEffect::Create(srcMask, |
| 480 | sampleM, |
commit-bot@chromium.org | 907fbd5 | 2013-12-09 17:03:02 +0000 | [diff] [blame] | 481 | GrTextureDomain::MakeTexelDomain(srcMask, srcBound), |
| 482 | GrTextureDomain::kDecal_Mode, |
humper@google.com | b86add1 | 2013-07-25 18:49:07 +0000 | [diff] [blame] | 483 | GrTextureParams::kNone_FilterMode))->unref(); |
bsalomon | 01c8da1 | 2014-08-04 09:21:30 -0700 | [diff] [blame] | 484 | fGpu->drawSimpleRect(SkRect::Make(dstBound)); |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 485 | } |
| 486 | |
bsalomon | 427cf28 | 2014-10-16 13:41:43 -0700 | [diff] [blame] | 487 | GrTexture* GrClipMaskManager::createTempMask(int width, int height) { |
robertphillips@google.com | 75b3c96 | 2012-06-07 12:08:45 +0000 | [diff] [blame] | 488 | GrTextureDesc desc; |
| 489 | desc.fFlags = kRenderTarget_GrTextureFlagBit|kNoStencil_GrTextureFlagBit; |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 490 | desc.fWidth = width; |
| 491 | desc.fHeight = height; |
robertphillips@google.com | 75b3c96 | 2012-06-07 12:08:45 +0000 | [diff] [blame] | 492 | desc.fConfig = kAlpha_8_GrPixelConfig; |
robertphillips@google.com | 6b70a7b | 2012-05-11 15:32:48 +0000 | [diff] [blame] | 493 | |
bsalomon | 427cf28 | 2014-10-16 13:41:43 -0700 | [diff] [blame] | 494 | return fGpu->getContext()->refScratchTexture(desc, GrContext::kApprox_ScratchTexMatch); |
robertphillips@google.com | 6d62df4 | 2012-05-07 18:07:36 +0000 | [diff] [blame] | 495 | } |
| 496 | |
robertphillips@google.com | 6b70a7b | 2012-05-11 15:32:48 +0000 | [diff] [blame] | 497 | //////////////////////////////////////////////////////////////////////////////// |
krajcevski | ad1dc58 | 2014-06-10 15:06:47 -0700 | [diff] [blame] | 498 | // Return the texture currently in the cache if it exists. Otherwise, return NULL |
| 499 | GrTexture* GrClipMaskManager::getCachedMaskTexture(int32_t elementsGenID, |
| 500 | const SkIRect& clipSpaceIBounds) { |
commit-bot@chromium.org | d3e5842 | 2013-11-05 15:03:08 +0000 | [diff] [blame] | 501 | bool cached = fAACache.canReuse(elementsGenID, clipSpaceIBounds); |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 502 | if (!cached) { |
krajcevski | ad1dc58 | 2014-06-10 15:06:47 -0700 | [diff] [blame] | 503 | return NULL; |
robertphillips@google.com | 8fff356 | 2012-05-11 12:53:50 +0000 | [diff] [blame] | 504 | } |
| 505 | |
krajcevski | ad1dc58 | 2014-06-10 15:06:47 -0700 | [diff] [blame] | 506 | return fAACache.getLastMask(); |
| 507 | } |
| 508 | |
| 509 | //////////////////////////////////////////////////////////////////////////////// |
| 510 | // Allocate a texture in the texture cache. This function returns the texture |
| 511 | // allocated (or NULL on error). |
| 512 | GrTexture* GrClipMaskManager::allocMaskTexture(int32_t elementsGenID, |
| 513 | const SkIRect& clipSpaceIBounds, |
| 514 | bool willUpload) { |
| 515 | // Since we are setting up the cache we should free up the |
| 516 | // currently cached mask so it can be reused. |
| 517 | fAACache.reset(); |
| 518 | |
| 519 | GrTextureDesc desc; |
| 520 | desc.fFlags = willUpload ? kNone_GrTextureFlags : kRenderTarget_GrTextureFlagBit; |
| 521 | desc.fWidth = clipSpaceIBounds.width(); |
| 522 | desc.fHeight = clipSpaceIBounds.height(); |
| 523 | desc.fConfig = kRGBA_8888_GrPixelConfig; |
| 524 | if (willUpload || this->getContext()->isConfigRenderable(kAlpha_8_GrPixelConfig, false)) { |
| 525 | // We would always like A8 but it isn't supported on all platforms |
| 526 | desc.fConfig = kAlpha_8_GrPixelConfig; |
| 527 | } |
| 528 | |
| 529 | fAACache.acquireMask(elementsGenID, desc, clipSpaceIBounds); |
| 530 | return fAACache.getLastMask(); |
robertphillips@google.com | 6b70a7b | 2012-05-11 15:32:48 +0000 | [diff] [blame] | 531 | } |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 532 | |
robertphillips@google.com | 6b70a7b | 2012-05-11 15:32:48 +0000 | [diff] [blame] | 533 | //////////////////////////////////////////////////////////////////////////////// |
| 534 | // Create a 8-bit clip mask in alpha |
commit-bot@chromium.org | d3e5842 | 2013-11-05 15:03:08 +0000 | [diff] [blame] | 535 | GrTexture* GrClipMaskManager::createAlphaClipMask(int32_t elementsGenID, |
tfarina | bf54e49 | 2014-10-23 17:47:18 -0700 | [diff] [blame] | 536 | GrReducedClip::InitialState initialState, |
| 537 | const GrReducedClip::ElementList& elements, |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 538 | const SkIRect& clipSpaceIBounds) { |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 539 | SkASSERT(kNone_ClipMaskType == fCurrClipMaskType); |
bsalomon@google.com | c8f7f47 | 2012-06-18 13:44:51 +0000 | [diff] [blame] | 540 | |
krajcevski | ad1dc58 | 2014-06-10 15:06:47 -0700 | [diff] [blame] | 541 | // First, check for cached texture |
| 542 | GrTexture* result = this->getCachedMaskTexture(elementsGenID, clipSpaceIBounds); |
bsalomon | 49f085d | 2014-09-05 13:34:00 -0700 | [diff] [blame] | 543 | if (result) { |
bsalomon@google.com | c8f7f47 | 2012-06-18 13:44:51 +0000 | [diff] [blame] | 544 | fCurrClipMaskType = kAlpha_ClipMaskType; |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 545 | return result; |
robertphillips@google.com | 6b70a7b | 2012-05-11 15:32:48 +0000 | [diff] [blame] | 546 | } |
| 547 | |
krajcevski | ad1dc58 | 2014-06-10 15:06:47 -0700 | [diff] [blame] | 548 | // There's no texture in the cache. Let's try to allocate it then. |
| 549 | result = this->allocMaskTexture(elementsGenID, clipSpaceIBounds, false); |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 550 | if (NULL == result) { |
robertphillips@google.com | f105b10 | 2012-05-14 12:18:26 +0000 | [diff] [blame] | 551 | fAACache.reset(); |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 552 | return NULL; |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 553 | } |
| 554 | |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 555 | // The top-left of the mask corresponds to the top-left corner of the bounds. |
bsalomon@google.com | 7b7cdd1 | 2012-11-07 16:17:24 +0000 | [diff] [blame] | 556 | SkVector clipToMaskOffset = { |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 557 | SkIntToScalar(-clipSpaceIBounds.fLeft), |
| 558 | SkIntToScalar(-clipSpaceIBounds.fTop) |
bsalomon@google.com | 7b7cdd1 | 2012-11-07 16:17:24 +0000 | [diff] [blame] | 559 | }; |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 560 | // The texture may be larger than necessary, this rect represents the part of the texture |
| 561 | // we populate with a rasterization of the clip. |
| 562 | SkIRect maskSpaceIBounds = SkIRect::MakeWH(clipSpaceIBounds.width(), clipSpaceIBounds.height()); |
| 563 | |
bsalomon@google.com | 137f134 | 2013-05-29 21:27:53 +0000 | [diff] [blame] | 564 | // Set the matrix so that rendered clip elements are transformed to mask space from clip space. |
| 565 | SkMatrix translate; |
| 566 | translate.setTranslate(clipToMaskOffset); |
| 567 | GrDrawTarget::AutoGeometryAndStatePush agasp(fGpu, GrDrawTarget::kReset_ASRInit, &translate); |
| 568 | |
| 569 | GrDrawState* drawState = fGpu->drawState(); |
| 570 | |
bsalomon@google.com | cf939ae | 2012-12-13 19:59:23 +0000 | [diff] [blame] | 571 | // We're drawing a coverage mask and want coverage to be run through the blend function. |
| 572 | drawState->enableState(GrDrawState::kCoverageDrawing_StateBit); |
| 573 | |
bsalomon@google.com | 7b7cdd1 | 2012-11-07 16:17:24 +0000 | [diff] [blame] | 574 | // The scratch texture that we are drawing into can be substantially larger than the mask. Only |
| 575 | // clear the part that we care about. |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 576 | fGpu->clear(&maskSpaceIBounds, |
tfarina | bf54e49 | 2014-10-23 17:47:18 -0700 | [diff] [blame] | 577 | GrReducedClip::kAllIn_InitialState == initialState ? 0xffffffff : 0x00000000, |
robertphillips@google.com | 56ce48a | 2013-10-31 21:44:25 +0000 | [diff] [blame] | 578 | true, |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 579 | result->asRenderTarget()); |
skia.committer@gmail.com | d9f7503 | 2012-11-09 02:01:24 +0000 | [diff] [blame] | 580 | |
bsalomon@google.com | b68addd | 2012-12-14 13:36:53 +0000 | [diff] [blame] | 581 | // When we use the stencil in the below loop it is important to have this clip installed. |
| 582 | // The second pass that zeros the stencil buffer renders the rect maskSpaceIBounds so the first |
| 583 | // pass must not set values outside of this bounds or stencil values outside the rect won't be |
| 584 | // cleared. |
| 585 | GrDrawTarget::AutoClipRestore acr(fGpu, maskSpaceIBounds); |
| 586 | drawState->enableState(GrDrawState::kClip_StateBit); |
| 587 | |
bsalomon | 427cf28 | 2014-10-16 13:41:43 -0700 | [diff] [blame] | 588 | SkAutoTUnref<GrTexture> temp; |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 589 | // walk through each clip element and perform its set op |
tfarina | bf54e49 | 2014-10-23 17:47:18 -0700 | [diff] [blame] | 590 | for (GrReducedClip::ElementList::Iter iter = elements.headIter(); iter.get(); iter.next()) { |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 591 | const Element* element = iter.get(); |
bsalomon@google.com | 8182fa0 | 2012-12-04 14:06:06 +0000 | [diff] [blame] | 592 | SkRegion::Op op = element->getOp(); |
bsalomon@google.com | b68addd | 2012-12-14 13:36:53 +0000 | [diff] [blame] | 593 | bool invert = element->isInverseFilled(); |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 594 | |
bsalomon@google.com | b68addd | 2012-12-14 13:36:53 +0000 | [diff] [blame] | 595 | if (invert || SkRegion::kIntersect_Op == op || SkRegion::kReverseDifference_Op == op) { |
robertphillips@google.com | e79f320 | 2014-02-11 16:30:21 +0000 | [diff] [blame] | 596 | GrPathRenderer* pr = NULL; |
| 597 | bool useTemp = !this->canStencilAndDrawElement(result, element, &pr); |
bsalomon@google.com | b68addd | 2012-12-14 13:36:53 +0000 | [diff] [blame] | 598 | GrTexture* dst; |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 599 | // This is the bounds of the clip element in the space of the alpha-mask. The temporary |
bsalomon@google.com | 7b7cdd1 | 2012-11-07 16:17:24 +0000 | [diff] [blame] | 600 | // mask buffer can be substantially larger than the actually clip stack element. We |
| 601 | // touch the minimum number of pixels necessary and use decal mode to combine it with |
bsalomon@google.com | b68addd | 2012-12-14 13:36:53 +0000 | [diff] [blame] | 602 | // the accumulator. |
commit-bot@chromium.org | fd03d4a | 2013-07-17 21:39:42 +0000 | [diff] [blame] | 603 | SkIRect maskSpaceElementIBounds; |
bsalomon@google.com | b68addd | 2012-12-14 13:36:53 +0000 | [diff] [blame] | 604 | |
| 605 | if (useTemp) { |
| 606 | if (invert) { |
| 607 | maskSpaceElementIBounds = maskSpaceIBounds; |
| 608 | } else { |
commit-bot@chromium.org | fd03d4a | 2013-07-17 21:39:42 +0000 | [diff] [blame] | 609 | SkRect elementBounds = element->getBounds(); |
bsalomon@google.com | b68addd | 2012-12-14 13:36:53 +0000 | [diff] [blame] | 610 | elementBounds.offset(clipToMaskOffset); |
| 611 | elementBounds.roundOut(&maskSpaceElementIBounds); |
| 612 | } |
| 613 | |
bsalomon | 427cf28 | 2014-10-16 13:41:43 -0700 | [diff] [blame] | 614 | if (!temp) { |
| 615 | temp.reset(this->createTempMask(maskSpaceIBounds.fRight, |
| 616 | maskSpaceIBounds.fBottom)); |
| 617 | if (!temp) { |
| 618 | fAACache.reset(); |
| 619 | return NULL; |
| 620 | } |
skia.committer@gmail.com | a7aedfe | 2012-12-15 02:03:10 +0000 | [diff] [blame] | 621 | } |
bsalomon | 427cf28 | 2014-10-16 13:41:43 -0700 | [diff] [blame] | 622 | dst = temp; |
bsalomon@google.com | b68addd | 2012-12-14 13:36:53 +0000 | [diff] [blame] | 623 | // clear the temp target and set blend to replace |
| 624 | fGpu->clear(&maskSpaceElementIBounds, |
| 625 | invert ? 0xffffffff : 0x00000000, |
robertphillips@google.com | 56ce48a | 2013-10-31 21:44:25 +0000 | [diff] [blame] | 626 | true, |
bsalomon@google.com | b68addd | 2012-12-14 13:36:53 +0000 | [diff] [blame] | 627 | dst->asRenderTarget()); |
| 628 | setup_boolean_blendcoeffs(drawState, SkRegion::kReplace_Op); |
skia.committer@gmail.com | a7aedfe | 2012-12-15 02:03:10 +0000 | [diff] [blame] | 629 | |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 630 | } else { |
bsalomon@google.com | b68addd | 2012-12-14 13:36:53 +0000 | [diff] [blame] | 631 | // draw directly into the result with the stencil set to make the pixels affected |
| 632 | // by the clip shape be non-zero. |
| 633 | dst = result; |
| 634 | GR_STATIC_CONST_SAME_STENCIL(kStencilInElement, |
| 635 | kReplace_StencilOp, |
| 636 | kReplace_StencilOp, |
| 637 | kAlways_StencilFunc, |
| 638 | 0xffff, |
| 639 | 0xffff, |
| 640 | 0xffff); |
| 641 | drawState->setStencil(kStencilInElement); |
skia.committer@gmail.com | a7aedfe | 2012-12-15 02:03:10 +0000 | [diff] [blame] | 642 | setup_boolean_blendcoeffs(drawState, op); |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 643 | } |
bsalomon@google.com | 7b7cdd1 | 2012-11-07 16:17:24 +0000 | [diff] [blame] | 644 | |
bsalomon@google.com | c6b3e48 | 2012-12-07 20:43:52 +0000 | [diff] [blame] | 645 | drawState->setAlpha(invert ? 0x00 : 0xff); |
bsalomon@google.com | c6b3e48 | 2012-12-07 20:43:52 +0000 | [diff] [blame] | 646 | |
robertphillips@google.com | e79f320 | 2014-02-11 16:30:21 +0000 | [diff] [blame] | 647 | if (!this->drawElement(dst, element, pr)) { |
| 648 | fAACache.reset(); |
| 649 | return NULL; |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 650 | } |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 651 | |
bsalomon@google.com | b68addd | 2012-12-14 13:36:53 +0000 | [diff] [blame] | 652 | if (useTemp) { |
| 653 | // Now draw into the accumulator using the real operation and the temp buffer as a |
| 654 | // texture |
| 655 | this->mergeMask(result, |
bsalomon | 427cf28 | 2014-10-16 13:41:43 -0700 | [diff] [blame] | 656 | temp, |
bsalomon@google.com | b68addd | 2012-12-14 13:36:53 +0000 | [diff] [blame] | 657 | op, |
| 658 | maskSpaceIBounds, |
| 659 | maskSpaceElementIBounds); |
| 660 | } else { |
| 661 | // Draw to the exterior pixels (those with a zero stencil value). |
| 662 | drawState->setAlpha(invert ? 0xff : 0x00); |
| 663 | GR_STATIC_CONST_SAME_STENCIL(kDrawOutsideElement, |
| 664 | kZero_StencilOp, |
| 665 | kZero_StencilOp, |
| 666 | kEqual_StencilFunc, |
| 667 | 0xffff, |
| 668 | 0x0000, |
| 669 | 0xffff); |
| 670 | drawState->setStencil(kDrawOutsideElement); |
| 671 | fGpu->drawSimpleRect(clipSpaceIBounds); |
| 672 | drawState->disableStencil(); |
| 673 | } |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 674 | } else { |
robertphillips@google.com | e79f320 | 2014-02-11 16:30:21 +0000 | [diff] [blame] | 675 | // all the remaining ops can just be directly draw into the accumulation buffer |
bsalomon@google.com | c6b3e48 | 2012-12-07 20:43:52 +0000 | [diff] [blame] | 676 | drawState->setAlpha(0xff); |
robertphillips@google.com | 6b70a7b | 2012-05-11 15:32:48 +0000 | [diff] [blame] | 677 | setup_boolean_blendcoeffs(drawState, op); |
bsalomon@google.com | b68addd | 2012-12-14 13:36:53 +0000 | [diff] [blame] | 678 | this->drawElement(result, element); |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 679 | } |
| 680 | } |
| 681 | |
bsalomon@google.com | c8f7f47 | 2012-06-18 13:44:51 +0000 | [diff] [blame] | 682 | fCurrClipMaskType = kAlpha_ClipMaskType; |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 683 | return result; |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 684 | } |
| 685 | |
| 686 | //////////////////////////////////////////////////////////////////////////////// |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 687 | // Create a 1-bit clip mask in the stencil buffer. 'devClipBounds' are in device |
robertphillips@google.com | f8d904a | 2012-07-31 12:18:16 +0000 | [diff] [blame] | 688 | // (as opposed to canvas) coordinates |
commit-bot@chromium.org | d3e5842 | 2013-11-05 15:03:08 +0000 | [diff] [blame] | 689 | bool GrClipMaskManager::createStencilClipMask(int32_t elementsGenID, |
tfarina | bf54e49 | 2014-10-23 17:47:18 -0700 | [diff] [blame] | 690 | GrReducedClip::InitialState initialState, |
| 691 | const GrReducedClip::ElementList& elements, |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 692 | const SkIRect& clipSpaceIBounds, |
| 693 | const SkIPoint& clipSpaceToStencilOffset) { |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 694 | |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 695 | SkASSERT(kNone_ClipMaskType == fCurrClipMaskType); |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 696 | |
bsalomon@google.com | 13b85aa | 2012-06-15 21:09:40 +0000 | [diff] [blame] | 697 | GrDrawState* drawState = fGpu->drawState(); |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 698 | SkASSERT(drawState->isClipState()); |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 699 | |
| 700 | GrRenderTarget* rt = drawState->getRenderTarget(); |
bsalomon | 49f085d | 2014-09-05 13:34:00 -0700 | [diff] [blame] | 701 | SkASSERT(rt); |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 702 | |
| 703 | // TODO: dynamically attach a SB when needed. |
| 704 | GrStencilBuffer* stencilBuffer = rt->getStencilBuffer(); |
| 705 | if (NULL == stencilBuffer) { |
| 706 | return false; |
| 707 | } |
| 708 | |
commit-bot@chromium.org | d3e5842 | 2013-11-05 15:03:08 +0000 | [diff] [blame] | 709 | if (stencilBuffer->mustRenderClip(elementsGenID, clipSpaceIBounds, clipSpaceToStencilOffset)) { |
commit-bot@chromium.org | d3e5842 | 2013-11-05 15:03:08 +0000 | [diff] [blame] | 710 | stencilBuffer->setLastClip(elementsGenID, clipSpaceIBounds, clipSpaceToStencilOffset); |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 711 | |
bsalomon@google.com | 137f134 | 2013-05-29 21:27:53 +0000 | [diff] [blame] | 712 | // Set the matrix so that rendered clip elements are transformed from clip to stencil space. |
| 713 | SkVector translate = { |
| 714 | SkIntToScalar(clipSpaceToStencilOffset.fX), |
| 715 | SkIntToScalar(clipSpaceToStencilOffset.fY) |
| 716 | }; |
| 717 | SkMatrix matrix; |
| 718 | matrix.setTranslate(translate); |
| 719 | GrDrawTarget::AutoGeometryAndStatePush agasp(fGpu, GrDrawTarget::kReset_ASRInit, &matrix); |
bsalomon@google.com | 13b85aa | 2012-06-15 21:09:40 +0000 | [diff] [blame] | 720 | drawState = fGpu->drawState(); |
bsalomon@google.com | 137f134 | 2013-05-29 21:27:53 +0000 | [diff] [blame] | 721 | |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 722 | drawState->setRenderTarget(rt); |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 723 | |
bsalomon@google.com | 9f13174 | 2012-12-13 20:43:56 +0000 | [diff] [blame] | 724 | // We set the current clip to the bounds so that our recursive draws are scissored to them. |
| 725 | SkIRect stencilSpaceIBounds(clipSpaceIBounds); |
| 726 | stencilSpaceIBounds.offset(clipSpaceToStencilOffset); |
| 727 | GrDrawTarget::AutoClipRestore acr(fGpu, stencilSpaceIBounds); |
| 728 | drawState->enableState(GrDrawState::kClip_StateBit); |
| 729 | |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 730 | #if !VISUALIZE_COMPLEX_CLIP |
| 731 | drawState->enableState(GrDrawState::kNoColorWrites_StateBit); |
| 732 | #endif |
| 733 | |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 734 | int clipBit = stencilBuffer->bits(); |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 735 | SkASSERT((clipBit <= 16) && "Ganesh only handles 16b or smaller stencil buffers"); |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 736 | clipBit = (1 << (clipBit-1)); |
| 737 | |
tfarina | bf54e49 | 2014-10-23 17:47:18 -0700 | [diff] [blame] | 738 | fGpu->clearStencilClip(rt, stencilSpaceIBounds, |
| 739 | GrReducedClip::kAllIn_InitialState == initialState); |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 740 | |
| 741 | // walk through each clip element and perform its set op |
| 742 | // with the existing clip. |
tfarina | bf54e49 | 2014-10-23 17:47:18 -0700 | [diff] [blame] | 743 | for (GrReducedClip::ElementList::Iter iter(elements.headIter()); iter.get(); iter.next()) { |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 744 | const Element* element = iter.get(); |
tomhudson@google.com | 8afae61 | 2012-08-14 15:03:35 +0000 | [diff] [blame] | 745 | bool fillInverted = false; |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 746 | // enabled at bottom of loop |
| 747 | drawState->disableState(GrGpu::kModifyStencilClip_StateBit); |
bsalomon@google.com | ded4f4b | 2012-06-28 18:48:06 +0000 | [diff] [blame] | 748 | // if the target is MSAA then we want MSAA enabled when the clip is soft |
| 749 | if (rt->isMultisampled()) { |
bsalomon@google.com | 8182fa0 | 2012-12-04 14:06:06 +0000 | [diff] [blame] | 750 | drawState->setState(GrDrawState::kHWAntialias_StateBit, element->isAA()); |
bsalomon@google.com | ded4f4b | 2012-06-28 18:48:06 +0000 | [diff] [blame] | 751 | } |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 752 | |
bsalomon@google.com | 45a15f5 | 2012-12-10 19:10:17 +0000 | [diff] [blame] | 753 | // This will be used to determine whether the clip shape can be rendered into the |
| 754 | // stencil with arbitrary stencil settings. |
| 755 | GrPathRenderer::StencilSupport stencilSupport; |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 756 | |
sugoi@google.com | 5f74cf8 | 2012-12-17 21:16:45 +0000 | [diff] [blame] | 757 | SkStrokeRec stroke(SkStrokeRec::kFill_InitStyle); |
sugoi@google.com | 12b4e27 | 2012-12-06 20:13:11 +0000 | [diff] [blame] | 758 | |
bsalomon@google.com | 8182fa0 | 2012-12-04 14:06:06 +0000 | [diff] [blame] | 759 | SkRegion::Op op = element->getOp(); |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 760 | |
robertphillips@google.com | e79f320 | 2014-02-11 16:30:21 +0000 | [diff] [blame] | 761 | GrPathRenderer* pr = NULL; |
commit-bot@chromium.org | e5b2af9 | 2014-02-16 13:25:24 +0000 | [diff] [blame] | 762 | SkPath clipPath; |
bsalomon@google.com | 8182fa0 | 2012-12-04 14:06:06 +0000 | [diff] [blame] | 763 | if (Element::kRect_Type == element->getType()) { |
bsalomon@google.com | 45a15f5 | 2012-12-10 19:10:17 +0000 | [diff] [blame] | 764 | stencilSupport = GrPathRenderer::kNoRestriction_StencilSupport; |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 765 | fillInverted = false; |
tomhudson@google.com | 8afae61 | 2012-08-14 15:03:35 +0000 | [diff] [blame] | 766 | } else { |
commit-bot@chromium.org | e5b2af9 | 2014-02-16 13:25:24 +0000 | [diff] [blame] | 767 | element->asPath(&clipPath); |
| 768 | fillInverted = clipPath.isInverseFillType(); |
robertphillips@google.com | e79f320 | 2014-02-11 16:30:21 +0000 | [diff] [blame] | 769 | if (fillInverted) { |
commit-bot@chromium.org | e5b2af9 | 2014-02-16 13:25:24 +0000 | [diff] [blame] | 770 | clipPath.toggleInverseFillType(); |
robertphillips@google.com | e79f320 | 2014-02-11 16:30:21 +0000 | [diff] [blame] | 771 | } |
commit-bot@chromium.org | e5b2af9 | 2014-02-16 13:25:24 +0000 | [diff] [blame] | 772 | pr = this->getContext()->getPathRenderer(clipPath, |
bsalomon@google.com | 45a15f5 | 2012-12-10 19:10:17 +0000 | [diff] [blame] | 773 | stroke, |
| 774 | fGpu, |
| 775 | false, |
| 776 | GrPathRendererChain::kStencilOnly_DrawType, |
robertphillips@google.com | e79f320 | 2014-02-11 16:30:21 +0000 | [diff] [blame] | 777 | &stencilSupport); |
| 778 | if (NULL == pr) { |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 779 | return false; |
| 780 | } |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 781 | } |
| 782 | |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 783 | int passes; |
| 784 | GrStencilSettings stencilSettings[GrStencilSettings::kMaxStencilClipPasses]; |
| 785 | |
bsalomon@google.com | 45a15f5 | 2012-12-10 19:10:17 +0000 | [diff] [blame] | 786 | bool canRenderDirectToStencil = |
| 787 | GrPathRenderer::kNoRestriction_StencilSupport == stencilSupport; |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 788 | bool canDrawDirectToClip; // Given the renderer, the element, |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 789 | // fill rule, and set operation can |
| 790 | // we render the element directly to |
| 791 | // stencil bit used for clipping. |
| 792 | canDrawDirectToClip = GrStencilSettings::GetClipPasses(op, |
| 793 | canRenderDirectToStencil, |
| 794 | clipBit, |
| 795 | fillInverted, |
| 796 | &passes, |
| 797 | stencilSettings); |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 798 | |
| 799 | // draw the element to the client stencil bits if necessary |
| 800 | if (!canDrawDirectToClip) { |
| 801 | GR_STATIC_CONST_SAME_STENCIL(gDrawToStencil, |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 802 | kIncClamp_StencilOp, |
| 803 | kIncClamp_StencilOp, |
| 804 | kAlways_StencilFunc, |
| 805 | 0xffff, |
| 806 | 0x0000, |
| 807 | 0xffff); |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 808 | SET_RANDOM_COLOR |
bsalomon@google.com | 8182fa0 | 2012-12-04 14:06:06 +0000 | [diff] [blame] | 809 | if (Element::kRect_Type == element->getType()) { |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 810 | *drawState->stencil() = gDrawToStencil; |
bsalomon | 01c8da1 | 2014-08-04 09:21:30 -0700 | [diff] [blame] | 811 | fGpu->drawSimpleRect(element->getRect()); |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 812 | } else { |
commit-bot@chromium.org | e5b2af9 | 2014-02-16 13:25:24 +0000 | [diff] [blame] | 813 | if (!clipPath.isEmpty()) { |
commit-bot@chromium.org | 19dd017 | 2013-08-05 13:28:55 +0000 | [diff] [blame] | 814 | if (canRenderDirectToStencil) { |
| 815 | *drawState->stencil() = gDrawToStencil; |
commit-bot@chromium.org | e5b2af9 | 2014-02-16 13:25:24 +0000 | [diff] [blame] | 816 | pr->drawPath(clipPath, stroke, fGpu, false); |
commit-bot@chromium.org | 19dd017 | 2013-08-05 13:28:55 +0000 | [diff] [blame] | 817 | } else { |
commit-bot@chromium.org | e5b2af9 | 2014-02-16 13:25:24 +0000 | [diff] [blame] | 818 | pr->stencilPath(clipPath, stroke, fGpu); |
commit-bot@chromium.org | 19dd017 | 2013-08-05 13:28:55 +0000 | [diff] [blame] | 819 | } |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 820 | } |
| 821 | } |
| 822 | } |
| 823 | |
| 824 | // now we modify the clip bit by rendering either the clip |
| 825 | // element directly or a bounding rect of the entire clip. |
| 826 | drawState->enableState(GrGpu::kModifyStencilClip_StateBit); |
| 827 | for (int p = 0; p < passes; ++p) { |
| 828 | *drawState->stencil() = stencilSettings[p]; |
| 829 | if (canDrawDirectToClip) { |
bsalomon@google.com | 8182fa0 | 2012-12-04 14:06:06 +0000 | [diff] [blame] | 830 | if (Element::kRect_Type == element->getType()) { |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 831 | SET_RANDOM_COLOR |
bsalomon | 01c8da1 | 2014-08-04 09:21:30 -0700 | [diff] [blame] | 832 | fGpu->drawSimpleRect(element->getRect()); |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 833 | } else { |
| 834 | SET_RANDOM_COLOR |
commit-bot@chromium.org | e5b2af9 | 2014-02-16 13:25:24 +0000 | [diff] [blame] | 835 | pr->drawPath(clipPath, stroke, fGpu, false); |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 836 | } |
| 837 | } else { |
| 838 | SET_RANDOM_COLOR |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 839 | // The view matrix is setup to do clip space -> stencil space translation, so |
| 840 | // draw rect in clip space. |
bsalomon | 01c8da1 | 2014-08-04 09:21:30 -0700 | [diff] [blame] | 841 | fGpu->drawSimpleRect(SkRect::Make(clipSpaceIBounds)); |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 842 | } |
| 843 | } |
| 844 | } |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 845 | } |
bsalomon@google.com | c8f7f47 | 2012-06-18 13:44:51 +0000 | [diff] [blame] | 846 | // set this last because recursive draws may overwrite it back to kNone. |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 847 | SkASSERT(kNone_ClipMaskType == fCurrClipMaskType); |
bsalomon@google.com | c8f7f47 | 2012-06-18 13:44:51 +0000 | [diff] [blame] | 848 | fCurrClipMaskType = kStencil_ClipMaskType; |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 849 | return true; |
| 850 | } |
| 851 | |
robertphillips@google.com | f8d904a | 2012-07-31 12:18:16 +0000 | [diff] [blame] | 852 | |
bsalomon@google.com | 411dad0 | 2012-06-05 20:24:20 +0000 | [diff] [blame] | 853 | // mapping of clip-respecting stencil funcs to normal stencil funcs |
| 854 | // mapping depends on whether stencil-clipping is in effect. |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 855 | static const GrStencilFunc |
bsalomon@google.com | 411dad0 | 2012-06-05 20:24:20 +0000 | [diff] [blame] | 856 | gSpecialToBasicStencilFunc[2][kClipStencilFuncCount] = { |
| 857 | {// Stencil-Clipping is DISABLED, we are effectively always inside the clip |
| 858 | // In the Clip Funcs |
| 859 | kAlways_StencilFunc, // kAlwaysIfInClip_StencilFunc |
| 860 | kEqual_StencilFunc, // kEqualIfInClip_StencilFunc |
| 861 | kLess_StencilFunc, // kLessIfInClip_StencilFunc |
| 862 | kLEqual_StencilFunc, // kLEqualIfInClip_StencilFunc |
| 863 | // Special in the clip func that forces user's ref to be 0. |
| 864 | kNotEqual_StencilFunc, // kNonZeroIfInClip_StencilFunc |
| 865 | // make ref 0 and do normal nequal. |
| 866 | }, |
| 867 | {// Stencil-Clipping is ENABLED |
| 868 | // In the Clip Funcs |
| 869 | kEqual_StencilFunc, // kAlwaysIfInClip_StencilFunc |
| 870 | // eq stencil clip bit, mask |
| 871 | // out user bits. |
| 872 | |
| 873 | kEqual_StencilFunc, // kEqualIfInClip_StencilFunc |
| 874 | // add stencil bit to mask and ref |
| 875 | |
| 876 | kLess_StencilFunc, // kLessIfInClip_StencilFunc |
| 877 | kLEqual_StencilFunc, // kLEqualIfInClip_StencilFunc |
| 878 | // for both of these we can add |
| 879 | // the clip bit to the mask and |
| 880 | // ref and compare as normal |
| 881 | // Special in the clip func that forces user's ref to be 0. |
| 882 | kLess_StencilFunc, // kNonZeroIfInClip_StencilFunc |
| 883 | // make ref have only the clip bit set |
| 884 | // and make comparison be less |
| 885 | // 10..0 < 1..user_bits.. |
| 886 | } |
| 887 | }; |
| 888 | |
bsalomon@google.com | a320194 | 2012-06-21 19:58:20 +0000 | [diff] [blame] | 889 | namespace { |
| 890 | // Sets the settings to clip against the stencil buffer clip while ignoring the |
| 891 | // client bits. |
| 892 | const GrStencilSettings& basic_apply_stencil_clip_settings() { |
| 893 | // stencil settings to use when clip is in stencil |
| 894 | GR_STATIC_CONST_SAME_STENCIL_STRUCT(gSettings, |
| 895 | kKeep_StencilOp, |
| 896 | kKeep_StencilOp, |
| 897 | kAlwaysIfInClip_StencilFunc, |
| 898 | 0x0000, |
| 899 | 0x0000, |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 900 | 0x0000); |
bsalomon@google.com | a320194 | 2012-06-21 19:58:20 +0000 | [diff] [blame] | 901 | return *GR_CONST_STENCIL_SETTINGS_PTR_FROM_STRUCT_PTR(&gSettings); |
| 902 | } |
| 903 | } |
| 904 | |
joshualitt | 7afb5aa | 2014-10-27 07:17:17 -0700 | [diff] [blame] | 905 | void GrClipMaskManager::setDrawStateStencil(GrDrawState::AutoRestoreStencil* ars) { |
bsalomon@google.com | a320194 | 2012-06-21 19:58:20 +0000 | [diff] [blame] | 906 | // We make two copies of the StencilSettings here (except in the early |
| 907 | // exit scenario. One copy from draw state to the stack var. Then another |
| 908 | // from the stack var to the gpu. We could make this class hold a ptr to |
| 909 | // GrGpu's fStencilSettings and eliminate the stack copy here. |
| 910 | |
| 911 | const GrDrawState& drawState = fGpu->getDrawState(); |
| 912 | |
| 913 | // use stencil for clipping if clipping is enabled and the clip |
| 914 | // has been written into the stencil. |
| 915 | GrClipMaskManager::StencilClipMode clipMode; |
| 916 | if (this->isClipInStencil() && drawState.isClipState()) { |
| 917 | clipMode = GrClipMaskManager::kRespectClip_StencilClipMode; |
| 918 | // We can't be modifying the clip and respecting it at the same time. |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 919 | SkASSERT(!drawState.isStateFlagEnabled( |
bsalomon@google.com | a320194 | 2012-06-21 19:58:20 +0000 | [diff] [blame] | 920 | GrGpu::kModifyStencilClip_StateBit)); |
| 921 | } else if (drawState.isStateFlagEnabled( |
| 922 | GrGpu::kModifyStencilClip_StateBit)) { |
| 923 | clipMode = GrClipMaskManager::kModifyClip_StencilClipMode; |
| 924 | } else { |
| 925 | clipMode = GrClipMaskManager::kIgnoreClip_StencilClipMode; |
| 926 | } |
| 927 | |
| 928 | GrStencilSettings settings; |
| 929 | // The GrGpu client may not be using the stencil buffer but we may need to |
| 930 | // enable it in order to respect a stencil clip. |
| 931 | if (drawState.getStencil().isDisabled()) { |
| 932 | if (GrClipMaskManager::kRespectClip_StencilClipMode == clipMode) { |
| 933 | settings = basic_apply_stencil_clip_settings(); |
| 934 | } else { |
bsalomon@google.com | a320194 | 2012-06-21 19:58:20 +0000 | [diff] [blame] | 935 | return; |
| 936 | } |
| 937 | } else { |
| 938 | settings = drawState.getStencil(); |
| 939 | } |
| 940 | |
| 941 | // TODO: dynamically attach a stencil buffer |
| 942 | int stencilBits = 0; |
joshualitt | 7afb5aa | 2014-10-27 07:17:17 -0700 | [diff] [blame] | 943 | GrStencilBuffer* stencilBuffer = drawState.getRenderTarget()->getStencilBuffer(); |
bsalomon | 49f085d | 2014-09-05 13:34:00 -0700 | [diff] [blame] | 944 | if (stencilBuffer) { |
bsalomon@google.com | a320194 | 2012-06-21 19:58:20 +0000 | [diff] [blame] | 945 | stencilBits = stencilBuffer->bits(); |
| 946 | } |
| 947 | |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 948 | SkASSERT(fGpu->caps()->stencilWrapOpsSupport() || !settings.usesWrapOp()); |
| 949 | SkASSERT(fGpu->caps()->twoSidedStencilSupport() || !settings.isTwoSided()); |
bsalomon@google.com | a320194 | 2012-06-21 19:58:20 +0000 | [diff] [blame] | 950 | this->adjustStencilParams(&settings, clipMode, stencilBits); |
joshualitt | 7afb5aa | 2014-10-27 07:17:17 -0700 | [diff] [blame] | 951 | ars->set(fGpu->drawState()); |
| 952 | fGpu->drawState()->setStencil(settings); |
bsalomon@google.com | a320194 | 2012-06-21 19:58:20 +0000 | [diff] [blame] | 953 | } |
| 954 | |
| 955 | void GrClipMaskManager::adjustStencilParams(GrStencilSettings* settings, |
| 956 | StencilClipMode mode, |
| 957 | int stencilBitCnt) { |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 958 | SkASSERT(stencilBitCnt > 0); |
bsalomon@google.com | 411dad0 | 2012-06-05 20:24:20 +0000 | [diff] [blame] | 959 | |
| 960 | if (kModifyClip_StencilClipMode == mode) { |
bsalomon@google.com | a320194 | 2012-06-21 19:58:20 +0000 | [diff] [blame] | 961 | // We assume that this clip manager itself is drawing to the GrGpu and |
| 962 | // has already setup the correct values. |
| 963 | return; |
bsalomon@google.com | 411dad0 | 2012-06-05 20:24:20 +0000 | [diff] [blame] | 964 | } |
bsalomon@google.com | a320194 | 2012-06-21 19:58:20 +0000 | [diff] [blame] | 965 | |
bsalomon@google.com | 411dad0 | 2012-06-05 20:24:20 +0000 | [diff] [blame] | 966 | unsigned int clipBit = (1 << (stencilBitCnt - 1)); |
| 967 | unsigned int userBits = clipBit - 1; |
| 968 | |
bsalomon@google.com | a320194 | 2012-06-21 19:58:20 +0000 | [diff] [blame] | 969 | GrStencilSettings::Face face = GrStencilSettings::kFront_Face; |
bsalomon@google.com | bcce892 | 2013-03-25 15:38:39 +0000 | [diff] [blame] | 970 | bool twoSided = fGpu->caps()->twoSidedStencilSupport(); |
bsalomon@google.com | 411dad0 | 2012-06-05 20:24:20 +0000 | [diff] [blame] | 971 | |
bsalomon@google.com | a320194 | 2012-06-21 19:58:20 +0000 | [diff] [blame] | 972 | bool finished = false; |
| 973 | while (!finished) { |
| 974 | GrStencilFunc func = settings->func(face); |
| 975 | uint16_t writeMask = settings->writeMask(face); |
| 976 | uint16_t funcMask = settings->funcMask(face); |
| 977 | uint16_t funcRef = settings->funcRef(face); |
| 978 | |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 979 | SkASSERT((unsigned) func < kStencilFuncCount); |
bsalomon@google.com | a320194 | 2012-06-21 19:58:20 +0000 | [diff] [blame] | 980 | |
| 981 | writeMask &= userBits; |
| 982 | |
| 983 | if (func >= kBasicStencilFuncCount) { |
| 984 | int respectClip = kRespectClip_StencilClipMode == mode; |
| 985 | if (respectClip) { |
| 986 | // The GrGpu class should have checked this |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 987 | SkASSERT(this->isClipInStencil()); |
bsalomon@google.com | a320194 | 2012-06-21 19:58:20 +0000 | [diff] [blame] | 988 | switch (func) { |
| 989 | case kAlwaysIfInClip_StencilFunc: |
| 990 | funcMask = clipBit; |
| 991 | funcRef = clipBit; |
| 992 | break; |
| 993 | case kEqualIfInClip_StencilFunc: |
| 994 | case kLessIfInClip_StencilFunc: |
| 995 | case kLEqualIfInClip_StencilFunc: |
| 996 | funcMask = (funcMask & userBits) | clipBit; |
| 997 | funcRef = (funcRef & userBits) | clipBit; |
| 998 | break; |
| 999 | case kNonZeroIfInClip_StencilFunc: |
| 1000 | funcMask = (funcMask & userBits) | clipBit; |
| 1001 | funcRef = clipBit; |
| 1002 | break; |
| 1003 | default: |
commit-bot@chromium.org | 88cb22b | 2014-04-30 14:17:00 +0000 | [diff] [blame] | 1004 | SkFAIL("Unknown stencil func"); |
bsalomon@google.com | a320194 | 2012-06-21 19:58:20 +0000 | [diff] [blame] | 1005 | } |
| 1006 | } else { |
| 1007 | funcMask &= userBits; |
| 1008 | funcRef &= userBits; |
bsalomon@google.com | 411dad0 | 2012-06-05 20:24:20 +0000 | [diff] [blame] | 1009 | } |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 1010 | const GrStencilFunc* table = |
bsalomon@google.com | a320194 | 2012-06-21 19:58:20 +0000 | [diff] [blame] | 1011 | gSpecialToBasicStencilFunc[respectClip]; |
| 1012 | func = table[func - kBasicStencilFuncCount]; |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 1013 | SkASSERT(func >= 0 && func < kBasicStencilFuncCount); |
bsalomon@google.com | 411dad0 | 2012-06-05 20:24:20 +0000 | [diff] [blame] | 1014 | } else { |
bsalomon@google.com | a320194 | 2012-06-21 19:58:20 +0000 | [diff] [blame] | 1015 | funcMask &= userBits; |
| 1016 | funcRef &= userBits; |
bsalomon@google.com | 411dad0 | 2012-06-05 20:24:20 +0000 | [diff] [blame] | 1017 | } |
bsalomon@google.com | a320194 | 2012-06-21 19:58:20 +0000 | [diff] [blame] | 1018 | |
| 1019 | settings->setFunc(face, func); |
| 1020 | settings->setWriteMask(face, writeMask); |
| 1021 | settings->setFuncMask(face, funcMask); |
| 1022 | settings->setFuncRef(face, funcRef); |
| 1023 | |
| 1024 | if (GrStencilSettings::kFront_Face == face) { |
| 1025 | face = GrStencilSettings::kBack_Face; |
| 1026 | finished = !twoSided; |
| 1027 | } else { |
| 1028 | finished = true; |
| 1029 | } |
bsalomon@google.com | 411dad0 | 2012-06-05 20:24:20 +0000 | [diff] [blame] | 1030 | } |
bsalomon@google.com | a320194 | 2012-06-21 19:58:20 +0000 | [diff] [blame] | 1031 | if (!twoSided) { |
| 1032 | settings->copyFrontSettingsToBack(); |
| 1033 | } |
bsalomon@google.com | 411dad0 | 2012-06-05 20:24:20 +0000 | [diff] [blame] | 1034 | } |
| 1035 | |
| 1036 | //////////////////////////////////////////////////////////////////////////////// |
commit-bot@chromium.org | d3e5842 | 2013-11-05 15:03:08 +0000 | [diff] [blame] | 1037 | GrTexture* GrClipMaskManager::createSoftwareClipMask(int32_t elementsGenID, |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 1038 | GrReducedClip::InitialState initialState, |
| 1039 | const GrReducedClip::ElementList& elements, |
| 1040 | const SkIRect& clipSpaceIBounds) { |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 1041 | SkASSERT(kNone_ClipMaskType == fCurrClipMaskType); |
robertphillips@google.com | 6b70a7b | 2012-05-11 15:32:48 +0000 | [diff] [blame] | 1042 | |
krajcevski | ad1dc58 | 2014-06-10 15:06:47 -0700 | [diff] [blame] | 1043 | GrTexture* result = this->getCachedMaskTexture(elementsGenID, clipSpaceIBounds); |
bsalomon | 49f085d | 2014-09-05 13:34:00 -0700 | [diff] [blame] | 1044 | if (result) { |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 1045 | return result; |
robertphillips@google.com | 6b70a7b | 2012-05-11 15:32:48 +0000 | [diff] [blame] | 1046 | } |
| 1047 | |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 1048 | // The mask texture may be larger than necessary. We round out the clip space bounds and pin |
| 1049 | // the top left corner of the resulting rect to the top left of the texture. |
| 1050 | SkIRect maskSpaceIBounds = SkIRect::MakeWH(clipSpaceIBounds.width(), clipSpaceIBounds.height()); |
| 1051 | |
robertphillips@google.com | 2c75681 | 2012-05-22 20:28:23 +0000 | [diff] [blame] | 1052 | GrSWMaskHelper helper(this->getContext()); |
robertphillips@google.com | 6b70a7b | 2012-05-11 15:32:48 +0000 | [diff] [blame] | 1053 | |
bsalomon@google.com | b9086a0 | 2012-11-01 18:02:54 +0000 | [diff] [blame] | 1054 | SkMatrix matrix; |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 1055 | matrix.setTranslate(SkIntToScalar(-clipSpaceIBounds.fLeft), |
| 1056 | SkIntToScalar(-clipSpaceIBounds.fTop)); |
krajcevski | 71614ac | 2014-08-13 10:36:18 -0700 | [diff] [blame] | 1057 | helper.init(maskSpaceIBounds, &matrix, false); |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 1058 | |
tfarina | bf54e49 | 2014-10-23 17:47:18 -0700 | [diff] [blame] | 1059 | helper.clear(GrReducedClip::kAllIn_InitialState == initialState ? 0xFF : 0x00); |
robertphillips@google.com | fa66294 | 2012-05-17 12:20:22 +0000 | [diff] [blame] | 1060 | |
sugoi@google.com | 5f74cf8 | 2012-12-17 21:16:45 +0000 | [diff] [blame] | 1061 | SkStrokeRec stroke(SkStrokeRec::kFill_InitStyle); |
sugoi@google.com | 12b4e27 | 2012-12-06 20:13:11 +0000 | [diff] [blame] | 1062 | |
tfarina | bf54e49 | 2014-10-23 17:47:18 -0700 | [diff] [blame] | 1063 | for (GrReducedClip::ElementList::Iter iter(elements.headIter()) ; iter.get(); iter.next()) { |
robertphillips@google.com | a6f11c4 | 2012-07-23 17:39:44 +0000 | [diff] [blame] | 1064 | |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 1065 | const Element* element = iter.get(); |
bsalomon@google.com | 8182fa0 | 2012-12-04 14:06:06 +0000 | [diff] [blame] | 1066 | SkRegion::Op op = element->getOp(); |
robertphillips@google.com | fa66294 | 2012-05-17 12:20:22 +0000 | [diff] [blame] | 1067 | |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 1068 | if (SkRegion::kIntersect_Op == op || SkRegion::kReverseDifference_Op == op) { |
| 1069 | // Intersect and reverse difference require modifying pixels outside of the geometry |
| 1070 | // that is being "drawn". In both cases we erase all the pixels outside of the geometry |
| 1071 | // but leave the pixels inside the geometry alone. For reverse difference we invert all |
| 1072 | // the pixels before clearing the ones outside the geometry. |
robertphillips@google.com | fa66294 | 2012-05-17 12:20:22 +0000 | [diff] [blame] | 1073 | if (SkRegion::kReverseDifference_Op == op) { |
reed@google.com | 4469938 | 2013-10-31 17:28:30 +0000 | [diff] [blame] | 1074 | SkRect temp = SkRect::Make(clipSpaceIBounds); |
robertphillips@google.com | fa66294 | 2012-05-17 12:20:22 +0000 | [diff] [blame] | 1075 | // invert the entire scene |
robertphillips@google.com | 366f1c6 | 2012-06-29 21:38:47 +0000 | [diff] [blame] | 1076 | helper.draw(temp, SkRegion::kXOR_Op, false, 0xFF); |
robertphillips@google.com | fa66294 | 2012-05-17 12:20:22 +0000 | [diff] [blame] | 1077 | } |
| 1078 | |
commit-bot@chromium.org | 5c05639 | 2014-02-17 19:50:02 +0000 | [diff] [blame] | 1079 | SkPath clipPath; |
| 1080 | element->asPath(&clipPath); |
| 1081 | clipPath.toggleInverseFillType(); |
| 1082 | helper.draw(clipPath, stroke, SkRegion::kReplace_Op, element->isAA(), 0x00); |
robertphillips@google.com | fa66294 | 2012-05-17 12:20:22 +0000 | [diff] [blame] | 1083 | |
| 1084 | continue; |
| 1085 | } |
| 1086 | |
| 1087 | // The other ops (union, xor, diff) only affect pixels inside |
| 1088 | // the geometry so they can just be drawn normally |
bsalomon@google.com | 8182fa0 | 2012-12-04 14:06:06 +0000 | [diff] [blame] | 1089 | if (Element::kRect_Type == element->getType()) { |
| 1090 | helper.draw(element->getRect(), op, element->isAA(), 0xFF); |
| 1091 | } else { |
commit-bot@chromium.org | 5c05639 | 2014-02-17 19:50:02 +0000 | [diff] [blame] | 1092 | SkPath path; |
| 1093 | element->asPath(&path); |
| 1094 | helper.draw(path, stroke, op, element->isAA(), 0xFF); |
robertphillips@google.com | 6b70a7b | 2012-05-11 15:32:48 +0000 | [diff] [blame] | 1095 | } |
| 1096 | } |
| 1097 | |
krajcevski | ad1dc58 | 2014-06-10 15:06:47 -0700 | [diff] [blame] | 1098 | // Allocate clip mask texture |
| 1099 | result = this->allocMaskTexture(elementsGenID, clipSpaceIBounds, true); |
| 1100 | if (NULL == result) { |
| 1101 | fAACache.reset(); |
| 1102 | return NULL; |
| 1103 | } |
robertphillips@google.com | d92cf2e | 2013-07-19 18:13:02 +0000 | [diff] [blame] | 1104 | helper.toTexture(result); |
robertphillips@google.com | 6b70a7b | 2012-05-11 15:32:48 +0000 | [diff] [blame] | 1105 | |
bsalomon@google.com | c8f7f47 | 2012-06-18 13:44:51 +0000 | [diff] [blame] | 1106 | fCurrClipMaskType = kAlpha_ClipMaskType; |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 1107 | return result; |
robertphillips@google.com | 6b70a7b | 2012-05-11 15:32:48 +0000 | [diff] [blame] | 1108 | } |
| 1109 | |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 1110 | //////////////////////////////////////////////////////////////////////////////// |
bsalomon | c8dc1f7 | 2014-08-21 13:02:13 -0700 | [diff] [blame] | 1111 | void GrClipMaskManager::purgeResources() { |
| 1112 | fAACache.purgeResources(); |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 1113 | } |
bsalomon@google.com | 6e4e650 | 2013-02-25 20:12:45 +0000 | [diff] [blame] | 1114 | |
| 1115 | void GrClipMaskManager::setGpu(GrGpu* gpu) { |
| 1116 | fGpu = gpu; |
| 1117 | fAACache.setContext(gpu->getContext()); |
| 1118 | } |
commit-bot@chromium.org | c4dc0ad | 2013-10-09 14:11:33 +0000 | [diff] [blame] | 1119 | |
| 1120 | void GrClipMaskManager::adjustPathStencilParams(GrStencilSettings* settings) { |
| 1121 | const GrDrawState& drawState = fGpu->getDrawState(); |
| 1122 | GrClipMaskManager::StencilClipMode clipMode; |
| 1123 | if (this->isClipInStencil() && drawState.isClipState()) { |
| 1124 | clipMode = GrClipMaskManager::kRespectClip_StencilClipMode; |
| 1125 | // We can't be modifying the clip and respecting it at the same time. |
| 1126 | SkASSERT(!drawState.isStateFlagEnabled( |
| 1127 | GrGpu::kModifyStencilClip_StateBit)); |
| 1128 | } else if (drawState.isStateFlagEnabled( |
| 1129 | GrGpu::kModifyStencilClip_StateBit)) { |
| 1130 | clipMode = GrClipMaskManager::kModifyClip_StencilClipMode; |
| 1131 | } else { |
| 1132 | clipMode = GrClipMaskManager::kIgnoreClip_StencilClipMode; |
| 1133 | } |
| 1134 | |
| 1135 | // TODO: dynamically attach a stencil buffer |
| 1136 | int stencilBits = 0; |
| 1137 | GrStencilBuffer* stencilBuffer = |
| 1138 | drawState.getRenderTarget()->getStencilBuffer(); |
bsalomon | 49f085d | 2014-09-05 13:34:00 -0700 | [diff] [blame] | 1139 | if (stencilBuffer) { |
commit-bot@chromium.org | c4dc0ad | 2013-10-09 14:11:33 +0000 | [diff] [blame] | 1140 | stencilBits = stencilBuffer->bits(); |
| 1141 | this->adjustStencilParams(settings, clipMode, stencilBits); |
| 1142 | } |
| 1143 | } |