| robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 1 | /* |
| csmartdalton | c6f411e | 2016-08-05 22:32:12 -0700 | [diff] [blame] | 2 | * Copyright 2016 Google Inc. |
| robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 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 | |
| csmartdalton | c6f411e | 2016-08-05 22:32:12 -0700 | [diff] [blame] | 8 | #include "GrClipStackClip.h" |
| 9 | |
| csmartdalton | 28341fa | 2016-08-17 10:00:21 -0700 | [diff] [blame] | 10 | #include "GrAppliedClip.h" |
| csmartdalton | bde96c6 | 2016-08-31 12:54:46 -0700 | [diff] [blame] | 11 | #include "GrContextPriv.h" |
| robertphillips | 6873782 | 2015-10-29 12:12:21 -0700 | [diff] [blame] | 12 | #include "GrDrawingManager.h" |
| Brian Osman | 1105224 | 2016-10-27 14:47:55 -0400 | [diff] [blame] | 13 | #include "GrRenderTargetContextPriv.h" |
| csmartdalton | 02fa32c | 2016-08-19 13:29:27 -0700 | [diff] [blame] | 14 | #include "GrFixedClip.h" |
| bsalomon | 473addf | 2015-10-02 07:49:05 -0700 | [diff] [blame] | 15 | #include "GrGpuResourcePriv.h" |
| csmartdalton | 28341fa | 2016-08-17 10:00:21 -0700 | [diff] [blame] | 16 | #include "GrRenderTargetPriv.h" |
| egdaniel | 8dc7c3a | 2015-04-16 11:22:42 -0700 | [diff] [blame] | 17 | #include "GrStencilAttachment.h" |
| robertphillips@google.com | 58b2021 | 2012-06-27 20:44:52 +0000 | [diff] [blame] | 18 | #include "GrSWMaskHelper.h" |
| egdaniel | 8d95ffa | 2014-12-08 13:26:43 -0800 | [diff] [blame] | 19 | #include "effects/GrConvexPolyEffect.h" |
| 20 | #include "effects/GrRRectEffect.h" |
| egdaniel | 9513143 | 2014-12-09 11:15:43 -0800 | [diff] [blame] | 21 | #include "effects/GrTextureDomain.h" |
| bsalomon@google.com | c6b3e48 | 2012-12-07 20:43:52 +0000 | [diff] [blame] | 22 | |
| bsalomon@google.com | 8182fa0 | 2012-12-04 14:06:06 +0000 | [diff] [blame] | 23 | typedef SkClipStack::Element Element; |
| csmartdalton | cbecb08 | 2016-07-22 08:59:08 -0700 | [diff] [blame] | 24 | typedef GrReducedClip::InitialState InitialState; |
| csmartdalton | 77f2fae | 2016-08-08 09:55:06 -0700 | [diff] [blame] | 25 | typedef GrReducedClip::ElementList ElementList; |
| bsalomon@google.com | 51a6286 | 2012-11-26 21:19:43 +0000 | [diff] [blame] | 26 | |
| robertphillips | 976f5f0 | 2016-06-03 10:59:20 -0700 | [diff] [blame] | 27 | static const int kMaxAnalyticElements = 4; |
| 28 | |
| csmartdalton | c6f411e | 2016-08-05 22:32:12 -0700 | [diff] [blame] | 29 | bool GrClipStackClip::quickContains(const SkRect& rect) const { |
| reed | 4d2cce4 | 2016-08-22 13:03:47 -0700 | [diff] [blame] | 30 | if (!fStack || fStack->isWideOpen()) { |
| csmartdalton | c6f411e | 2016-08-05 22:32:12 -0700 | [diff] [blame] | 31 | return true; |
| 32 | } |
| 33 | return fStack->quickContains(rect.makeOffset(SkIntToScalar(fOrigin.x()), |
| 34 | SkIntToScalar(fOrigin.y()))); |
| 35 | } |
| 36 | |
| bsalomon | 7f0d9f3 | 2016-08-15 14:49:10 -0700 | [diff] [blame] | 37 | bool GrClipStackClip::quickContains(const SkRRect& rrect) const { |
| reed | 4d2cce4 | 2016-08-22 13:03:47 -0700 | [diff] [blame] | 38 | if (!fStack || fStack->isWideOpen()) { |
| bsalomon | 7f0d9f3 | 2016-08-15 14:49:10 -0700 | [diff] [blame] | 39 | return true; |
| 40 | } |
| 41 | return fStack->quickContains(rrect.makeOffset(SkIntToScalar(fOrigin.fX), |
| 42 | SkIntToScalar(fOrigin.fY))); |
| 43 | } |
| 44 | |
| Brian Salomon | 0e8fc8b | 2016-12-09 15:10:07 -0500 | [diff] [blame^] | 45 | bool GrClipStackClip::isRRect(const SkRect& origRTBounds, SkRRect* rr, GrAA* aa) const { |
| bsalomon | cb31e51 | 2016-08-26 10:48:19 -0700 | [diff] [blame] | 46 | if (!fStack) { |
| 47 | return false; |
| 48 | } |
| 49 | const SkRect* rtBounds = &origRTBounds; |
| 50 | SkRect tempRTBounds; |
| 51 | bool origin = fOrigin.fX || fOrigin.fY; |
| 52 | if (origin) { |
| 53 | tempRTBounds = origRTBounds; |
| 54 | tempRTBounds.offset(SkIntToScalar(fOrigin.fX), SkIntToScalar(fOrigin.fY)); |
| 55 | rtBounds = &tempRTBounds; |
| 56 | } |
| Brian Salomon | 0e8fc8b | 2016-12-09 15:10:07 -0500 | [diff] [blame^] | 57 | bool isAA; |
| 58 | if (fStack->isRRect(*rtBounds, rr, &isAA)) { |
| 59 | *aa = GrBoolToAA(isAA); |
| bsalomon | cb31e51 | 2016-08-26 10:48:19 -0700 | [diff] [blame] | 60 | if (origin) { |
| 61 | rr->offset(-SkIntToScalar(fOrigin.fX), -SkIntToScalar(fOrigin.fY)); |
| 62 | } |
| 63 | return true; |
| 64 | } |
| 65 | return false; |
| 66 | } |
| 67 | |
| csmartdalton | c6f411e | 2016-08-05 22:32:12 -0700 | [diff] [blame] | 68 | void GrClipStackClip::getConservativeBounds(int width, int height, SkIRect* devResult, |
| 69 | bool* isIntersectionOfRects) const { |
| 70 | if (!fStack) { |
| 71 | devResult->setXYWH(0, 0, width, height); |
| 72 | if (isIntersectionOfRects) { |
| 73 | *isIntersectionOfRects = true; |
| 74 | } |
| 75 | return; |
| 76 | } |
| 77 | SkRect devBounds; |
| 78 | fStack->getConservativeBounds(-fOrigin.x(), -fOrigin.y(), width, height, &devBounds, |
| 79 | isIntersectionOfRects); |
| 80 | devBounds.roundOut(devResult); |
| 81 | } |
| 82 | |
| bsalomon@google.com | 51a6286 | 2012-11-26 21:19:43 +0000 | [diff] [blame] | 83 | //////////////////////////////////////////////////////////////////////////////// |
| Brian Salomon | 2ebd0c8 | 2016-10-03 17:15:28 -0400 | [diff] [blame] | 84 | // set up the draw state to enable the aa clipping mask. |
| bungeman | 06ca8ec | 2016-06-09 08:01:03 -0700 | [diff] [blame] | 85 | static sk_sp<GrFragmentProcessor> create_fp_for_mask(GrTexture* result, |
| 86 | const SkIRect &devBound) { |
| bsalomon@google.com | 7b7cdd1 | 2012-11-07 16:17:24 +0000 | [diff] [blame] | 87 | SkIRect domainTexels = SkIRect::MakeWH(devBound.width(), devBound.height()); |
| Brian Salomon | 2ebd0c8 | 2016-10-03 17:15:28 -0400 | [diff] [blame] | 88 | return GrDeviceSpaceTextureDecalFragmentProcessor::Make(result, domainTexels, |
| 89 | {devBound.fLeft, devBound.fTop}); |
| robertphillips@google.com | a72eef3 | 2012-05-01 17:22:59 +0000 | [diff] [blame] | 90 | } |
| 91 | |
| robertphillips | 3f7357f | 2015-10-27 07:17:33 -0700 | [diff] [blame] | 92 | // Does the path in 'element' require SW rendering? If so, return true (and, |
| 93 | // optionally, set 'prOut' to NULL. If not, return false (and, optionally, set |
| 94 | // 'prOut' to the non-SW path renderer that will do the job). |
| csmartdalton | c6f411e | 2016-08-05 22:32:12 -0700 | [diff] [blame] | 95 | bool GrClipStackClip::PathNeedsSWRenderer(GrContext* context, |
| 96 | bool hasUserStencilSettings, |
| Brian Osman | 1105224 | 2016-10-27 14:47:55 -0400 | [diff] [blame] | 97 | const GrRenderTargetContext* renderTargetContext, |
| csmartdalton | c6f411e | 2016-08-05 22:32:12 -0700 | [diff] [blame] | 98 | const SkMatrix& viewMatrix, |
| 99 | const Element* element, |
| 100 | GrPathRenderer** prOut, |
| 101 | bool needsStencil) { |
| robertphillips | 3f7357f | 2015-10-27 07:17:33 -0700 | [diff] [blame] | 102 | if (Element::kRect_Type == element->getType()) { |
| 103 | // rects can always be drawn directly w/o using the software path |
| 104 | // TODO: skip rrects once we're drawing them directly. |
| 105 | if (prOut) { |
| 106 | *prOut = nullptr; |
| 107 | } |
| 108 | return false; |
| 109 | } else { |
| 110 | // We shouldn't get here with an empty clip element. |
| 111 | SkASSERT(Element::kEmpty_Type != element->getType()); |
| robertphillips | 5c3ea4c | 2015-10-26 08:33:10 -0700 | [diff] [blame] | 112 | |
| robertphillips | 3f7357f | 2015-10-27 07:17:33 -0700 | [diff] [blame] | 113 | // the gpu alpha mask will draw the inverse paths as non-inverse to a temp buffer |
| 114 | SkPath path; |
| 115 | element->asPath(&path); |
| 116 | if (path.isInverseFillType()) { |
| 117 | path.toggleInverseFillType(); |
| 118 | } |
| halcanary | 9d524f2 | 2016-03-29 09:03:52 -0700 | [diff] [blame] | 119 | |
| robertphillips | 3f7357f | 2015-10-27 07:17:33 -0700 | [diff] [blame] | 120 | GrPathRendererChain::DrawType type; |
| halcanary | 9d524f2 | 2016-03-29 09:03:52 -0700 | [diff] [blame] | 121 | |
| robertphillips | 423e337 | 2015-10-27 09:23:38 -0700 | [diff] [blame] | 122 | if (needsStencil) { |
| robertphillips | 3f7357f | 2015-10-27 07:17:33 -0700 | [diff] [blame] | 123 | type = element->isAA() |
| 124 | ? GrPathRendererChain::kStencilAndColorAntiAlias_DrawType |
| 125 | : GrPathRendererChain::kStencilAndColor_DrawType; |
| 126 | } else { |
| 127 | type = element->isAA() |
| 128 | ? GrPathRendererChain::kColorAntiAlias_DrawType |
| halcanary | 9d524f2 | 2016-03-29 09:03:52 -0700 | [diff] [blame] | 129 | : GrPathRendererChain::kColor_DrawType; |
| robertphillips | 3f7357f | 2015-10-27 07:17:33 -0700 | [diff] [blame] | 130 | } |
| halcanary | 9d524f2 | 2016-03-29 09:03:52 -0700 | [diff] [blame] | 131 | |
| bsalomon | 8acedde | 2016-06-24 10:42:16 -0700 | [diff] [blame] | 132 | GrShape shape(path, GrStyle::SimpleFill()); |
| robertphillips | 6873782 | 2015-10-29 12:12:21 -0700 | [diff] [blame] | 133 | GrPathRenderer::CanDrawPathArgs canDrawArgs; |
| 134 | canDrawArgs.fShaderCaps = context->caps()->shaderCaps(); |
| 135 | canDrawArgs.fViewMatrix = &viewMatrix; |
| bsalomon | 8acedde | 2016-06-24 10:42:16 -0700 | [diff] [blame] | 136 | canDrawArgs.fShape = &shape; |
| Brian Salomon | 0e8fc8b | 2016-12-09 15:10:07 -0500 | [diff] [blame^] | 137 | if (!element->isAA()) { |
| 138 | canDrawArgs.fAAType = GrAAType::kNone; |
| 139 | } else if (renderTargetContext->isUnifiedMultisampled()) { |
| 140 | canDrawArgs.fAAType = GrAAType::kMSAA; |
| 141 | } else if (renderTargetContext->isStencilBufferMultisampled()){ |
| 142 | canDrawArgs.fAAType = GrAAType::kMixedSamples; |
| 143 | } else { |
| 144 | canDrawArgs.fAAType = GrAAType::kCoverage; |
| 145 | } |
| cdalton | 93a379b | 2016-05-11 13:58:08 -0700 | [diff] [blame] | 146 | canDrawArgs.fHasUserStencilSettings = hasUserStencilSettings; |
| robertphillips | 6873782 | 2015-10-29 12:12:21 -0700 | [diff] [blame] | 147 | |
| robertphillips | 3f7357f | 2015-10-27 07:17:33 -0700 | [diff] [blame] | 148 | // the 'false' parameter disallows use of the SW path renderer |
| csmartdalton | bde96c6 | 2016-08-31 12:54:46 -0700 | [diff] [blame] | 149 | GrPathRenderer* pr = |
| 150 | context->contextPriv().drawingManager()->getPathRenderer(canDrawArgs, false, type); |
| robertphillips | 3f7357f | 2015-10-27 07:17:33 -0700 | [diff] [blame] | 151 | if (prOut) { |
| 152 | *prOut = pr; |
| 153 | } |
| 154 | return SkToBool(!pr); |
| 155 | } |
| robertphillips@google.com | e79f320 | 2014-02-11 16:30:21 +0000 | [diff] [blame] | 156 | } |
| robertphillips@google.com | 6b70a7b | 2012-05-11 15:32:48 +0000 | [diff] [blame] | 157 | |
| robertphillips@google.com | fa66294 | 2012-05-17 12:20:22 +0000 | [diff] [blame] | 158 | /* |
| 159 | * This method traverses the clip stack to see if the GrSoftwarePathRenderer |
| 160 | * will be used on any element. If so, it returns true to indicate that the |
| 161 | * entire clip should be rendered in SW and then uploaded en masse to the gpu. |
| 162 | */ |
| csmartdalton | c6f411e | 2016-08-05 22:32:12 -0700 | [diff] [blame] | 163 | bool GrClipStackClip::UseSWOnlyPath(GrContext* context, |
| 164 | bool hasUserStencilSettings, |
| Brian Osman | 1105224 | 2016-10-27 14:47:55 -0400 | [diff] [blame] | 165 | const GrRenderTargetContext* renderTargetContext, |
| csmartdalton | bde96c6 | 2016-08-31 12:54:46 -0700 | [diff] [blame] | 166 | const GrReducedClip& reducedClip) { |
| robertphillips@google.com | 8a4fc40 | 2012-05-24 12:42:24 +0000 | [diff] [blame] | 167 | // TODO: generalize this function so that when |
| robertphillips@google.com | fa66294 | 2012-05-17 12:20:22 +0000 | [diff] [blame] | 168 | // a clip gets complex enough it can just be done in SW regardless |
| 169 | // of whether it would invoke the GrSoftwarePathRenderer. |
| skia.committer@gmail.com | d21444a | 2012-12-07 02:01:25 +0000 | [diff] [blame] | 170 | |
| joshualitt | 8059eb9 | 2014-12-29 15:10:07 -0800 | [diff] [blame] | 171 | // Set the matrix so that rendered clip elements are transformed to mask space from clip |
| 172 | // space. |
| csmartdalton | bde96c6 | 2016-08-31 12:54:46 -0700 | [diff] [blame] | 173 | SkMatrix translate; |
| 174 | translate.setTranslate(SkIntToScalar(-reducedClip.left()), SkIntToScalar(-reducedClip.top())); |
| joshualitt | 8059eb9 | 2014-12-29 15:10:07 -0800 | [diff] [blame] | 175 | |
| csmartdalton | bde96c6 | 2016-08-31 12:54:46 -0700 | [diff] [blame] | 176 | for (ElementList::Iter iter(reducedClip.elements()); iter.get(); iter.next()) { |
| bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 177 | const Element* element = iter.get(); |
| robertphillips | 3f7357f | 2015-10-27 07:17:33 -0700 | [diff] [blame] | 178 | |
| Mike Reed | c1f7774 | 2016-12-09 09:00:50 -0500 | [diff] [blame] | 179 | SkClipOp op = element->getOp(); |
| robertphillips | 3f7357f | 2015-10-27 07:17:33 -0700 | [diff] [blame] | 180 | bool invert = element->isInverseFilled(); |
| halcanary | 9d524f2 | 2016-03-29 09:03:52 -0700 | [diff] [blame] | 181 | bool needsStencil = invert || |
| Mike Reed | c1f7774 | 2016-12-09 09:00:50 -0500 | [diff] [blame] | 182 | kIntersect_SkClipOp == op || kReverseDifference_SkClipOp == op; |
| robertphillips | 3f7357f | 2015-10-27 07:17:33 -0700 | [diff] [blame] | 183 | |
| robertphillips | 59cf61a | 2016-07-13 09:18:21 -0700 | [diff] [blame] | 184 | if (PathNeedsSWRenderer(context, hasUserStencilSettings, |
| Brian Osman | 1105224 | 2016-10-27 14:47:55 -0400 | [diff] [blame] | 185 | renderTargetContext, translate, element, nullptr, needsStencil)) { |
| robertphillips | 3f7357f | 2015-10-27 07:17:33 -0700 | [diff] [blame] | 186 | return true; |
| robertphillips@google.com | fa66294 | 2012-05-17 12:20:22 +0000 | [diff] [blame] | 187 | } |
| robertphillips@google.com | fa66294 | 2012-05-17 12:20:22 +0000 | [diff] [blame] | 188 | } |
| bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 189 | return false; |
| robertphillips@google.com | a72eef3 | 2012-05-01 17:22:59 +0000 | [diff] [blame] | 190 | } |
| 191 | |
| csmartdalton | 77f2fae | 2016-08-08 09:55:06 -0700 | [diff] [blame] | 192 | static bool get_analytic_clip_processor(const ElementList& elements, |
| robertphillips | 976f5f0 | 2016-06-03 10:59:20 -0700 | [diff] [blame] | 193 | bool abortIfAA, |
| csmartdalton | cbecb08 | 2016-07-22 08:59:08 -0700 | [diff] [blame] | 194 | const SkVector& clipToRTOffset, |
| bsalomon | bd2bbe4 | 2016-07-08 07:36:42 -0700 | [diff] [blame] | 195 | const SkRect& drawBounds, |
| bungeman | 06ca8ec | 2016-06-09 08:01:03 -0700 | [diff] [blame] | 196 | sk_sp<GrFragmentProcessor>* resultFP) { |
| commit-bot@chromium.org | e5a041c | 2014-03-07 19:43:43 +0000 | [diff] [blame] | 197 | SkRect boundsInClipSpace; |
| bsalomon | bd2bbe4 | 2016-07-08 07:36:42 -0700 | [diff] [blame] | 198 | boundsInClipSpace = drawBounds.makeOffset(-clipToRTOffset.fX, -clipToRTOffset.fY); |
| bsalomon | 0ba8c24 | 2015-10-07 09:20:28 -0700 | [diff] [blame] | 199 | SkASSERT(elements.count() <= kMaxAnalyticElements); |
| bungeman | 06ca8ec | 2016-06-09 08:01:03 -0700 | [diff] [blame] | 200 | SkSTArray<kMaxAnalyticElements, sk_sp<GrFragmentProcessor>> fps; |
| csmartdalton | 77f2fae | 2016-08-08 09:55:06 -0700 | [diff] [blame] | 201 | ElementList::Iter iter(elements); |
| bsalomon | 49f085d | 2014-09-05 13:34:00 -0700 | [diff] [blame] | 202 | while (iter.get()) { |
| Mike Reed | c1f7774 | 2016-12-09 09:00:50 -0500 | [diff] [blame] | 203 | SkClipOp op = iter.get()->getOp(); |
| commit-bot@chromium.org | e5a041c | 2014-03-07 19:43:43 +0000 | [diff] [blame] | 204 | bool invert; |
| 205 | bool skip = false; |
| 206 | switch (op) { |
| 207 | case SkRegion::kReplace_Op: |
| 208 | SkASSERT(iter.get() == elements.head()); |
| 209 | // Fallthrough, handled same as intersect. |
| 210 | case SkRegion::kIntersect_Op: |
| 211 | invert = false; |
| bsalomon | bd2bbe4 | 2016-07-08 07:36:42 -0700 | [diff] [blame] | 212 | if (iter.get()->contains(boundsInClipSpace)) { |
| commit-bot@chromium.org | e5a041c | 2014-03-07 19:43:43 +0000 | [diff] [blame] | 213 | skip = true; |
| 214 | } |
| 215 | break; |
| 216 | case SkRegion::kDifference_Op: |
| 217 | invert = true; |
| 218 | // We don't currently have a cheap test for whether a rect is fully outside an |
| 219 | // element's primitive, so don't attempt to set skip. |
| 220 | break; |
| 221 | default: |
| bungeman | 06ca8ec | 2016-06-09 08:01:03 -0700 | [diff] [blame] | 222 | return false; |
| commit-bot@chromium.org | e5a041c | 2014-03-07 19:43:43 +0000 | [diff] [blame] | 223 | } |
| commit-bot@chromium.org | e5a041c | 2014-03-07 19:43:43 +0000 | [diff] [blame] | 224 | if (!skip) { |
| joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 225 | GrPrimitiveEdgeType edgeType; |
| robertphillips | e85a32d | 2015-02-10 08:16:55 -0800 | [diff] [blame] | 226 | if (iter.get()->isAA()) { |
| bsalomon | a912dde | 2015-10-14 15:01:50 -0700 | [diff] [blame] | 227 | if (abortIfAA) { |
| bungeman | 06ca8ec | 2016-06-09 08:01:03 -0700 | [diff] [blame] | 228 | return false; |
| bsalomon | a912dde | 2015-10-14 15:01:50 -0700 | [diff] [blame] | 229 | } |
| joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 230 | edgeType = |
| bsalomon | 0ba8c24 | 2015-10-07 09:20:28 -0700 | [diff] [blame] | 231 | invert ? kInverseFillAA_GrProcessorEdgeType : kFillAA_GrProcessorEdgeType; |
| commit-bot@chromium.org | e5a041c | 2014-03-07 19:43:43 +0000 | [diff] [blame] | 232 | } else { |
| bsalomon | 0ba8c24 | 2015-10-07 09:20:28 -0700 | [diff] [blame] | 233 | edgeType = |
| 234 | invert ? kInverseFillBW_GrProcessorEdgeType : kFillBW_GrProcessorEdgeType; |
| commit-bot@chromium.org | e5a041c | 2014-03-07 19:43:43 +0000 | [diff] [blame] | 235 | } |
| bsalomon | a912dde | 2015-10-14 15:01:50 -0700 | [diff] [blame] | 236 | |
| commit-bot@chromium.org | e5a041c | 2014-03-07 19:43:43 +0000 | [diff] [blame] | 237 | switch (iter.get()->getType()) { |
| 238 | case SkClipStack::Element::kPath_Type: |
| bungeman | 06ca8ec | 2016-06-09 08:01:03 -0700 | [diff] [blame] | 239 | fps.emplace_back(GrConvexPolyEffect::Make(edgeType, iter.get()->getPath(), |
| 240 | &clipToRTOffset)); |
| commit-bot@chromium.org | e5a041c | 2014-03-07 19:43:43 +0000 | [diff] [blame] | 241 | break; |
| 242 | case SkClipStack::Element::kRRect_Type: { |
| 243 | SkRRect rrect = iter.get()->getRRect(); |
| 244 | rrect.offset(clipToRTOffset.fX, clipToRTOffset.fY); |
| bungeman | 06ca8ec | 2016-06-09 08:01:03 -0700 | [diff] [blame] | 245 | fps.emplace_back(GrRRectEffect::Make(edgeType, rrect)); |
| commit-bot@chromium.org | e5a041c | 2014-03-07 19:43:43 +0000 | [diff] [blame] | 246 | break; |
| 247 | } |
| 248 | case SkClipStack::Element::kRect_Type: { |
| 249 | SkRect rect = iter.get()->getRect(); |
| 250 | rect.offset(clipToRTOffset.fX, clipToRTOffset.fY); |
| bungeman | 06ca8ec | 2016-06-09 08:01:03 -0700 | [diff] [blame] | 251 | fps.emplace_back(GrConvexPolyEffect::Make(edgeType, rect)); |
| commit-bot@chromium.org | e5a041c | 2014-03-07 19:43:43 +0000 | [diff] [blame] | 252 | break; |
| 253 | } |
| 254 | default: |
| 255 | break; |
| 256 | } |
| bungeman | 06ca8ec | 2016-06-09 08:01:03 -0700 | [diff] [blame] | 257 | if (!fps.back()) { |
| 258 | return false; |
| commit-bot@chromium.org | e5a041c | 2014-03-07 19:43:43 +0000 | [diff] [blame] | 259 | } |
| 260 | } |
| mtklein | 217daa7 | 2014-07-02 12:55:21 -0700 | [diff] [blame] | 261 | iter.next(); |
| commit-bot@chromium.org | e5a041c | 2014-03-07 19:43:43 +0000 | [diff] [blame] | 262 | } |
| 263 | |
| bsalomon | 0b5b6b2 | 2015-10-14 08:31:34 -0700 | [diff] [blame] | 264 | *resultFP = nullptr; |
| bungeman | 06ca8ec | 2016-06-09 08:01:03 -0700 | [diff] [blame] | 265 | if (fps.count()) { |
| 266 | *resultFP = GrFragmentProcessor::RunInSeries(fps.begin(), fps.count()); |
| commit-bot@chromium.org | e5a041c | 2014-03-07 19:43:43 +0000 | [diff] [blame] | 267 | } |
| bungeman | 06ca8ec | 2016-06-09 08:01:03 -0700 | [diff] [blame] | 268 | return true; |
| commit-bot@chromium.org | e5a041c | 2014-03-07 19:43:43 +0000 | [diff] [blame] | 269 | } |
| 270 | |
| robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 271 | //////////////////////////////////////////////////////////////////////////////// |
| robertphillips@google.com | 6b70a7b | 2012-05-11 15:32:48 +0000 | [diff] [blame] | 272 | // sort out what kind of clip mask needs to be created: alpha, stencil, |
| 273 | // scissor, or entirely software |
| Brian Osman | 1105224 | 2016-10-27 14:47:55 -0400 | [diff] [blame] | 274 | bool GrClipStackClip::apply(GrContext* context, GrRenderTargetContext* renderTargetContext, |
| 275 | bool useHWAA, bool hasUserStencilSettings, GrAppliedClip* out) const { |
| csmartdalton | c6f411e | 2016-08-05 22:32:12 -0700 | [diff] [blame] | 276 | if (!fStack || fStack->isWideOpen()) { |
| cdalton | 846c051 | 2016-05-13 10:25:00 -0700 | [diff] [blame] | 277 | return true; |
| joshualitt | 7a6184f | 2014-10-29 18:29:27 -0700 | [diff] [blame] | 278 | } |
| bsalomon@google.com | a320194 | 2012-06-21 19:58:20 +0000 | [diff] [blame] | 279 | |
| Robert Phillips | 784b7bf | 2016-12-09 13:35:02 -0500 | [diff] [blame] | 280 | SkRect devBounds = SkRect::MakeIWH(renderTargetContext->width(), |
| 281 | renderTargetContext->height()); |
| csmartdalton | d211e78 | 2016-08-15 11:17:19 -0700 | [diff] [blame] | 282 | if (!devBounds.intersect(out->clippedDrawBounds())) { |
| csmartdalton | cbecb08 | 2016-07-22 08:59:08 -0700 | [diff] [blame] | 283 | return false; |
| 284 | } |
| 285 | |
| csmartdalton | c6f411e | 2016-08-05 22:32:12 -0700 | [diff] [blame] | 286 | const SkScalar clipX = SkIntToScalar(fOrigin.x()), |
| 287 | clipY = SkIntToScalar(fOrigin.y()); |
| csmartdalton | cbecb08 | 2016-07-22 08:59:08 -0700 | [diff] [blame] | 288 | |
| csmartdalton | 77f2fae | 2016-08-08 09:55:06 -0700 | [diff] [blame] | 289 | SkRect clipSpaceDevBounds = devBounds.makeOffset(clipX, clipY); |
| csmartdalton | bf4a8f9 | 2016-09-06 10:01:06 -0700 | [diff] [blame] | 290 | const GrReducedClip reducedClip(*fStack, clipSpaceDevBounds, |
| Robert Phillips | ec2249f | 2016-11-09 08:54:35 -0500 | [diff] [blame] | 291 | renderTargetContext->priv().maxWindowRectangles()); |
| bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 292 | |
| csmartdalton | d211e78 | 2016-08-15 11:17:19 -0700 | [diff] [blame] | 293 | if (reducedClip.hasIBounds() && |
| 294 | !GrClip::IsInsideClip(reducedClip.ibounds(), clipSpaceDevBounds)) { |
| 295 | SkIRect scissorSpaceIBounds(reducedClip.ibounds()); |
| 296 | scissorSpaceIBounds.offset(-fOrigin); |
| 297 | out->addScissor(scissorSpaceIBounds); |
| cdalton | 846c051 | 2016-05-13 10:25:00 -0700 | [diff] [blame] | 298 | } |
| cdalton | 93a379b | 2016-05-11 13:58:08 -0700 | [diff] [blame] | 299 | |
| csmartdalton | bf4a8f9 | 2016-09-06 10:01:06 -0700 | [diff] [blame] | 300 | if (!reducedClip.windowRectangles().empty()) { |
| 301 | out->addWindowRectangles(reducedClip.windowRectangles(), fOrigin, |
| 302 | GrWindowRectsState::Mode::kExclusive); |
| 303 | } |
| 304 | |
| csmartdalton | d211e78 | 2016-08-15 11:17:19 -0700 | [diff] [blame] | 305 | if (reducedClip.elements().isEmpty()) { |
| 306 | return InitialState::kAllIn == reducedClip.initialState(); |
| 307 | } |
| 308 | |
| csmartdalton | 3affdc1 | 2016-10-28 12:01:10 -0700 | [diff] [blame] | 309 | #ifdef SK_DEBUG |
| csmartdalton | d211e78 | 2016-08-15 11:17:19 -0700 | [diff] [blame] | 310 | SkASSERT(reducedClip.hasIBounds()); |
| Robert Phillips | 784b7bf | 2016-12-09 13:35:02 -0500 | [diff] [blame] | 311 | SkIRect rtIBounds = SkIRect::MakeWH(renderTargetContext->width(), |
| 312 | renderTargetContext->height()); |
| csmartdalton | 3affdc1 | 2016-10-28 12:01:10 -0700 | [diff] [blame] | 313 | SkIRect clipIBounds = reducedClip.ibounds().makeOffset(-fOrigin.x(), -fOrigin.y()); |
| 314 | SkASSERT(rtIBounds.contains(clipIBounds)); // Mask shouldn't be larger than the RT. |
| 315 | #endif |
| csmartdalton | d211e78 | 2016-08-15 11:17:19 -0700 | [diff] [blame] | 316 | |
| commit-bot@chromium.org | e5a041c | 2014-03-07 19:43:43 +0000 | [diff] [blame] | 317 | // An element count of 4 was chosen because of the common pattern in Blink of: |
| 318 | // isect RR |
| 319 | // diff RR |
| 320 | // isect convex_poly |
| 321 | // isect convex_poly |
| 322 | // when drawing rounded div borders. This could probably be tuned based on a |
| 323 | // configuration's relative costs of switching RTs to generate a mask vs |
| 324 | // longer shaders. |
| csmartdalton | 77f2fae | 2016-08-08 09:55:06 -0700 | [diff] [blame] | 325 | if (reducedClip.elements().count() <= kMaxAnalyticElements) { |
| cdalton | ede7574 | 2015-11-11 15:27:57 -0800 | [diff] [blame] | 326 | // When there are multiple samples we want to do per-sample clipping, not compute a |
| 327 | // fractional pixel coverage. |
| Brian Osman | 1105224 | 2016-10-27 14:47:55 -0400 | [diff] [blame] | 328 | bool disallowAnalyticAA = renderTargetContext->isStencilBufferMultisampled(); |
| 329 | if (disallowAnalyticAA && !renderTargetContext->numColorSamples()) { |
| cdalton | 3ccf2e7 | 2016-05-06 09:41:16 -0700 | [diff] [blame] | 330 | // With a single color sample, any coverage info is lost from color once it hits the |
| 331 | // color buffer anyway, so we may as well use coverage AA if nothing else in the pipe |
| 332 | // is multisampled. |
| robertphillips | 59cf61a | 2016-07-13 09:18:21 -0700 | [diff] [blame] | 333 | disallowAnalyticAA = useHWAA || hasUserStencilSettings; |
| cdalton | 3ccf2e7 | 2016-05-06 09:41:16 -0700 | [diff] [blame] | 334 | } |
| bungeman | 06ca8ec | 2016-06-09 08:01:03 -0700 | [diff] [blame] | 335 | sk_sp<GrFragmentProcessor> clipFP; |
| csmartdalton | 77f2fae | 2016-08-08 09:55:06 -0700 | [diff] [blame] | 336 | if (reducedClip.requiresAA() && |
| 337 | get_analytic_clip_processor(reducedClip.elements(), disallowAnalyticAA, |
| 338 | {-clipX, -clipY}, devBounds, &clipFP)) { |
| csmartdalton | d211e78 | 2016-08-15 11:17:19 -0700 | [diff] [blame] | 339 | out->addCoverageFP(std::move(clipFP)); |
| commit-bot@chromium.org | 65ee5f4 | 2014-02-04 17:49:48 +0000 | [diff] [blame] | 340 | return true; |
| 341 | } |
| 342 | } |
| bsalomon@google.com | d3066bd | 2014-02-03 20:09:56 +0000 | [diff] [blame] | 343 | |
| cdalton | ede7574 | 2015-11-11 15:27:57 -0800 | [diff] [blame] | 344 | // If the stencil buffer is multisampled we can use it to do everything. |
| Brian Osman | 1105224 | 2016-10-27 14:47:55 -0400 | [diff] [blame] | 345 | if (!renderTargetContext->isStencilBufferMultisampled() && reducedClip.requiresAA()) { |
| robertphillips | c99b8f0 | 2016-05-15 07:53:35 -0700 | [diff] [blame] | 346 | sk_sp<GrTexture> result; |
| Brian Osman | 1105224 | 2016-10-27 14:47:55 -0400 | [diff] [blame] | 347 | if (UseSWOnlyPath(context, hasUserStencilSettings, renderTargetContext, reducedClip)) { |
| bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 348 | // The clip geometry is complex enough that it will be more efficient to create it |
| 349 | // entirely in software |
| csmartdalton | bde96c6 | 2016-08-31 12:54:46 -0700 | [diff] [blame] | 350 | result = CreateSoftwareClipMask(context->textureProvider(), reducedClip); |
| bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 351 | } else { |
| csmartdalton | bde96c6 | 2016-08-31 12:54:46 -0700 | [diff] [blame] | 352 | result = CreateAlphaClipMask(context, reducedClip); |
| bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 353 | } |
| 354 | |
| bsalomon | 49f085d | 2014-09-05 13:34:00 -0700 | [diff] [blame] | 355 | if (result) { |
| bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 356 | // The mask's top left coord should be pinned to the rounded-out top left corner of |
| 357 | // clipSpace bounds. We determine the mask's position WRT to the render target here. |
| csmartdalton | d211e78 | 2016-08-15 11:17:19 -0700 | [diff] [blame] | 358 | SkIRect rtSpaceMaskBounds = reducedClip.ibounds(); |
| csmartdalton | c6f411e | 2016-08-05 22:32:12 -0700 | [diff] [blame] | 359 | rtSpaceMaskBounds.offset(-fOrigin); |
| csmartdalton | d211e78 | 2016-08-15 11:17:19 -0700 | [diff] [blame] | 360 | out->addCoverageFP(create_fp_for_mask(result.get(), rtSpaceMaskBounds)); |
| robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 361 | return true; |
| 362 | } |
| bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 363 | // 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] | 364 | } |
| robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 365 | |
| Robert Phillips | ec2249f | 2016-11-09 08:54:35 -0500 | [diff] [blame] | 366 | GrRenderTarget* rt = renderTargetContext->accessRenderTarget(); |
| Robert Phillips | e60ad62 | 2016-11-17 10:22:48 -0500 | [diff] [blame] | 367 | if (!rt) { |
| 368 | return true; |
| 369 | } |
| Robert Phillips | ec2249f | 2016-11-09 08:54:35 -0500 | [diff] [blame] | 370 | |
| robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 371 | // use the stencil clip if we can't represent the clip as a rectangle. |
| csmartdalton | 7cdda99 | 2016-11-01 07:03:03 -0700 | [diff] [blame] | 372 | if (!context->resourceProvider()->attachStencilAttachment(rt)) { |
| csmartdalton | bde96c6 | 2016-08-31 12:54:46 -0700 | [diff] [blame] | 373 | SkDebugf("WARNING: failed to attach stencil buffer for clip mask. Clip will be ignored.\n"); |
| 374 | return true; |
| 375 | } |
| 376 | |
| csmartdalton | bf4a8f9 | 2016-09-06 10:01:06 -0700 | [diff] [blame] | 377 | // This relies on the property that a reduced sub-rect of the last clip will contain all the |
| 378 | // relevant window rectangles that were in the last clip. This subtle requirement will go away |
| 379 | // after clipping is overhauled. |
| csmartdalton | 7cdda99 | 2016-11-01 07:03:03 -0700 | [diff] [blame] | 380 | if (renderTargetContext->priv().mustRenderClip(reducedClip.elementsGenID(), |
| 381 | reducedClip.ibounds(), fOrigin)) { |
| Brian Osman | 1105224 | 2016-10-27 14:47:55 -0400 | [diff] [blame] | 382 | reducedClip.drawStencilClipMask(context, renderTargetContext, fOrigin); |
| csmartdalton | 7cdda99 | 2016-11-01 07:03:03 -0700 | [diff] [blame] | 383 | renderTargetContext->priv().setLastClip(reducedClip.elementsGenID(), reducedClip.ibounds(), |
| 384 | fOrigin); |
| csmartdalton | bde96c6 | 2016-08-31 12:54:46 -0700 | [diff] [blame] | 385 | } |
| csmartdalton | d211e78 | 2016-08-15 11:17:19 -0700 | [diff] [blame] | 386 | out->addStencilClip(); |
| robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 387 | return true; |
| 388 | } |
| 389 | |
| robertphillips@google.com | 6b70a7b | 2012-05-11 15:32:48 +0000 | [diff] [blame] | 390 | //////////////////////////////////////////////////////////////////////////////// |
| bsalomon | 473addf | 2015-10-02 07:49:05 -0700 | [diff] [blame] | 391 | // Create a 8-bit clip mask in alpha |
| 392 | |
| 393 | static void GetClipMaskKey(int32_t clipGenID, const SkIRect& bounds, GrUniqueKey* key) { |
| 394 | static const GrUniqueKey::Domain kDomain = GrUniqueKey::GenerateDomain(); |
| 395 | GrUniqueKey::Builder builder(key, kDomain, 3); |
| 396 | builder[0] = clipGenID; |
| csmartdalton | 3affdc1 | 2016-10-28 12:01:10 -0700 | [diff] [blame] | 397 | // SkToS16 because image filters outset layers to a size indicated by the filter, which can |
| 398 | // sometimes result in negative coordinates from clip space. |
| 399 | builder[1] = SkToS16(bounds.fLeft) | (SkToS16(bounds.fRight) << 16); |
| 400 | builder[2] = SkToS16(bounds.fTop) | (SkToS16(bounds.fBottom) << 16); |
| bsalomon | 473addf | 2015-10-02 07:49:05 -0700 | [diff] [blame] | 401 | } |
| 402 | |
| csmartdalton | c6f411e | 2016-08-05 22:32:12 -0700 | [diff] [blame] | 403 | sk_sp<GrTexture> GrClipStackClip::CreateAlphaClipMask(GrContext* context, |
| csmartdalton | bde96c6 | 2016-08-31 12:54:46 -0700 | [diff] [blame] | 404 | const GrReducedClip& reducedClip) { |
| robertphillips | 391395d | 2016-03-02 09:26:36 -0800 | [diff] [blame] | 405 | GrResourceProvider* resourceProvider = context->resourceProvider(); |
| bsalomon | 473addf | 2015-10-02 07:49:05 -0700 | [diff] [blame] | 406 | GrUniqueKey key; |
| csmartdalton | 8d3f92a | 2016-08-17 09:39:38 -0700 | [diff] [blame] | 407 | GetClipMaskKey(reducedClip.elementsGenID(), reducedClip.ibounds(), &key); |
| bsalomon | 473addf | 2015-10-02 07:49:05 -0700 | [diff] [blame] | 408 | if (GrTexture* texture = resourceProvider->findAndRefTextureByUniqueKey(key)) { |
| robertphillips | c99b8f0 | 2016-05-15 07:53:35 -0700 | [diff] [blame] | 409 | return sk_sp<GrTexture>(texture); |
| robertphillips@google.com | 6b70a7b | 2012-05-11 15:32:48 +0000 | [diff] [blame] | 410 | } |
| 411 | |
| Brian Osman | 1105224 | 2016-10-27 14:47:55 -0400 | [diff] [blame] | 412 | sk_sp<GrRenderTargetContext> rtc(context->makeRenderTargetContextWithFallback( |
| 413 | SkBackingFit::kApprox, |
| 414 | reducedClip.width(), |
| 415 | reducedClip.height(), |
| 416 | kAlpha_8_GrPixelConfig, |
| 417 | nullptr)); |
| 418 | if (!rtc) { |
| robertphillips | 391395d | 2016-03-02 09:26:36 -0800 | [diff] [blame] | 419 | return nullptr; |
| 420 | } |
| bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 421 | |
| Brian Osman | 1105224 | 2016-10-27 14:47:55 -0400 | [diff] [blame] | 422 | if (!reducedClip.drawAlphaClipMask(rtc.get())) { |
| csmartdalton | bde96c6 | 2016-08-31 12:54:46 -0700 | [diff] [blame] | 423 | return nullptr; |
| robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 424 | } |
| 425 | |
| Brian Osman | 1105224 | 2016-10-27 14:47:55 -0400 | [diff] [blame] | 426 | sk_sp<GrTexture> texture(rtc->asTexture()); |
| Robert Phillips | e60ad62 | 2016-11-17 10:22:48 -0500 | [diff] [blame] | 427 | if (!texture) { |
| 428 | return nullptr; |
| 429 | } |
| 430 | |
| robertphillips | c99b8f0 | 2016-05-15 07:53:35 -0700 | [diff] [blame] | 431 | texture->resourcePriv().setUniqueKey(key); |
| 432 | return texture; |
| robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 433 | } |
| 434 | |
| csmartdalton | c6f411e | 2016-08-05 22:32:12 -0700 | [diff] [blame] | 435 | sk_sp<GrTexture> GrClipStackClip::CreateSoftwareClipMask(GrTextureProvider* texProvider, |
| csmartdalton | bde96c6 | 2016-08-31 12:54:46 -0700 | [diff] [blame] | 436 | const GrReducedClip& reducedClip) { |
| bsalomon | 473addf | 2015-10-02 07:49:05 -0700 | [diff] [blame] | 437 | GrUniqueKey key; |
| csmartdalton | 8d3f92a | 2016-08-17 09:39:38 -0700 | [diff] [blame] | 438 | GetClipMaskKey(reducedClip.elementsGenID(), reducedClip.ibounds(), &key); |
| robertphillips | 0152d73 | 2016-05-20 06:38:43 -0700 | [diff] [blame] | 439 | if (GrTexture* texture = texProvider->findAndRefTextureByUniqueKey(key)) { |
| robertphillips | c99b8f0 | 2016-05-15 07:53:35 -0700 | [diff] [blame] | 440 | return sk_sp<GrTexture>(texture); |
| robertphillips@google.com | 6b70a7b | 2012-05-11 15:32:48 +0000 | [diff] [blame] | 441 | } |
| 442 | |
| bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 443 | // The mask texture may be larger than necessary. We round out the clip space bounds and pin |
| 444 | // the top left corner of the resulting rect to the top left of the texture. |
| csmartdalton | 77f2fae | 2016-08-08 09:55:06 -0700 | [diff] [blame] | 445 | SkIRect maskSpaceIBounds = SkIRect::MakeWH(reducedClip.width(), reducedClip.height()); |
| bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 446 | |
| robertphillips | 0152d73 | 2016-05-20 06:38:43 -0700 | [diff] [blame] | 447 | GrSWMaskHelper helper(texProvider); |
| robertphillips@google.com | 6b70a7b | 2012-05-11 15:32:48 +0000 | [diff] [blame] | 448 | |
| joshualitt | 8059eb9 | 2014-12-29 15:10:07 -0800 | [diff] [blame] | 449 | // Set the matrix so that rendered clip elements are transformed to mask space from clip |
| 450 | // space. |
| 451 | SkMatrix translate; |
| csmartdalton | bde96c6 | 2016-08-31 12:54:46 -0700 | [diff] [blame] | 452 | translate.setTranslate(SkIntToScalar(-reducedClip.left()), SkIntToScalar(-reducedClip.top())); |
| joshualitt | 9853cce | 2014-11-17 14:22:48 -0800 | [diff] [blame] | 453 | |
| csmartdalton | 3affdc1 | 2016-10-28 12:01:10 -0700 | [diff] [blame] | 454 | if (!helper.init(maskSpaceIBounds, &translate)) { |
| 455 | return nullptr; |
| 456 | } |
| csmartdalton | d211e78 | 2016-08-15 11:17:19 -0700 | [diff] [blame] | 457 | helper.clear(InitialState::kAllIn == reducedClip.initialState() ? 0xFF : 0x00); |
| sugoi@google.com | 12b4e27 | 2012-12-06 20:13:11 +0000 | [diff] [blame] | 458 | |
| csmartdalton | 77f2fae | 2016-08-08 09:55:06 -0700 | [diff] [blame] | 459 | for (ElementList::Iter iter(reducedClip.elements()); iter.get(); iter.next()) { |
| bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 460 | const Element* element = iter.get(); |
| Mike Reed | c1f7774 | 2016-12-09 09:00:50 -0500 | [diff] [blame] | 461 | SkClipOp op = element->getOp(); |
| Brian Salomon | 0e8fc8b | 2016-12-09 15:10:07 -0500 | [diff] [blame^] | 462 | GrAA aa = GrBoolToAA(element->isAA()); |
| robertphillips@google.com | fa66294 | 2012-05-17 12:20:22 +0000 | [diff] [blame] | 463 | |
| Mike Reed | c1f7774 | 2016-12-09 09:00:50 -0500 | [diff] [blame] | 464 | if (kIntersect_SkClipOp == op || kReverseDifference_SkClipOp == op) { |
| bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 465 | // Intersect and reverse difference require modifying pixels outside of the geometry |
| 466 | // that is being "drawn". In both cases we erase all the pixels outside of the geometry |
| 467 | // but leave the pixels inside the geometry alone. For reverse difference we invert all |
| 468 | // the pixels before clearing the ones outside the geometry. |
| Mike Reed | c1f7774 | 2016-12-09 09:00:50 -0500 | [diff] [blame] | 469 | if (kReverseDifference_SkClipOp == op) { |
| csmartdalton | d211e78 | 2016-08-15 11:17:19 -0700 | [diff] [blame] | 470 | SkRect temp = SkRect::Make(reducedClip.ibounds()); |
| robertphillips@google.com | fa66294 | 2012-05-17 12:20:22 +0000 | [diff] [blame] | 471 | // invert the entire scene |
| Brian Salomon | 0e8fc8b | 2016-12-09 15:10:07 -0500 | [diff] [blame^] | 472 | helper.drawRect(temp, SkRegion::kXOR_Op, GrAA::kNo, 0xFF); |
| robertphillips@google.com | fa66294 | 2012-05-17 12:20:22 +0000 | [diff] [blame] | 473 | } |
| commit-bot@chromium.org | 5c05639 | 2014-02-17 19:50:02 +0000 | [diff] [blame] | 474 | SkPath clipPath; |
| 475 | element->asPath(&clipPath); |
| 476 | clipPath.toggleInverseFillType(); |
| bsalomon | 8acedde | 2016-06-24 10:42:16 -0700 | [diff] [blame] | 477 | GrShape shape(clipPath, GrStyle::SimpleFill()); |
| Brian Salomon | 0e8fc8b | 2016-12-09 15:10:07 -0500 | [diff] [blame^] | 478 | helper.drawShape(shape, SkRegion::kReplace_Op, aa, 0x00); |
| robertphillips@google.com | fa66294 | 2012-05-17 12:20:22 +0000 | [diff] [blame] | 479 | continue; |
| 480 | } |
| 481 | |
| 482 | // The other ops (union, xor, diff) only affect pixels inside |
| 483 | // the geometry so they can just be drawn normally |
| bsalomon@google.com | 8182fa0 | 2012-12-04 14:06:06 +0000 | [diff] [blame] | 484 | if (Element::kRect_Type == element->getType()) { |
| Brian Salomon | 0e8fc8b | 2016-12-09 15:10:07 -0500 | [diff] [blame^] | 485 | helper.drawRect(element->getRect(), (SkRegion::Op)op, aa, 0xFF); |
| bsalomon@google.com | 8182fa0 | 2012-12-04 14:06:06 +0000 | [diff] [blame] | 486 | } else { |
| commit-bot@chromium.org | 5c05639 | 2014-02-17 19:50:02 +0000 | [diff] [blame] | 487 | SkPath path; |
| 488 | element->asPath(&path); |
| bsalomon | 8acedde | 2016-06-24 10:42:16 -0700 | [diff] [blame] | 489 | GrShape shape(path, GrStyle::SimpleFill()); |
| Brian Salomon | 0e8fc8b | 2016-12-09 15:10:07 -0500 | [diff] [blame^] | 490 | helper.drawShape(shape, (SkRegion::Op)op, aa, 0xFF); |
| robertphillips@google.com | 6b70a7b | 2012-05-11 15:32:48 +0000 | [diff] [blame] | 491 | } |
| 492 | } |
| 493 | |
| krajcevski | ad1dc58 | 2014-06-10 15:06:47 -0700 | [diff] [blame] | 494 | // Allocate clip mask texture |
| robertphillips | 391395d | 2016-03-02 09:26:36 -0800 | [diff] [blame] | 495 | GrSurfaceDesc desc; |
| csmartdalton | 77f2fae | 2016-08-08 09:55:06 -0700 | [diff] [blame] | 496 | desc.fWidth = reducedClip.width(); |
| 497 | desc.fHeight = reducedClip.height(); |
| robertphillips | 391395d | 2016-03-02 09:26:36 -0800 | [diff] [blame] | 498 | desc.fConfig = kAlpha_8_GrPixelConfig; |
| 499 | |
| robertphillips | 0152d73 | 2016-05-20 06:38:43 -0700 | [diff] [blame] | 500 | sk_sp<GrTexture> result(texProvider->createApproxTexture(desc)); |
| robertphillips | 391395d | 2016-03-02 09:26:36 -0800 | [diff] [blame] | 501 | if (!result) { |
| halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 502 | return nullptr; |
| krajcevski | ad1dc58 | 2014-06-10 15:06:47 -0700 | [diff] [blame] | 503 | } |
| robertphillips | 391395d | 2016-03-02 09:26:36 -0800 | [diff] [blame] | 504 | result->resourcePriv().setUniqueKey(key); |
| 505 | |
| robertphillips | c99b8f0 | 2016-05-15 07:53:35 -0700 | [diff] [blame] | 506 | helper.toTexture(result.get()); |
| robertphillips@google.com | 6b70a7b | 2012-05-11 15:32:48 +0000 | [diff] [blame] | 507 | |
| bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 508 | return result; |
| robertphillips@google.com | 6b70a7b | 2012-05-11 15:32:48 +0000 | [diff] [blame] | 509 | } |