robertphillips | ccb1b57 | 2015-05-27 11:02:55 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2015 Google Inc. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
| 6 | */ |
| 7 | |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 8 | #include "src/gpu/GrBlurUtils.h" |
Robert Phillips | c7c2baf | 2018-03-08 09:51:04 -0500 | [diff] [blame] | 9 | |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 10 | #include "include/private/GrRecordingContext.h" |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 11 | #include "src/gpu/GrCaps.h" |
| 12 | #include "src/gpu/GrFixedClip.h" |
| 13 | #include "src/gpu/GrProxyProvider.h" |
| 14 | #include "src/gpu/GrRecordingContextPriv.h" |
| 15 | #include "src/gpu/GrRenderTargetContext.h" |
| 16 | #include "src/gpu/GrRenderTargetContextPriv.h" |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 17 | #include "src/gpu/GrSoftwarePathRenderer.h" |
| 18 | #include "src/gpu/GrStyle.h" |
Greg Daniel | f91aeb2 | 2019-06-18 09:58:02 -0400 | [diff] [blame] | 19 | #include "src/gpu/GrTextureProxy.h" |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 20 | #include "src/gpu/effects/generated/GrSimpleTextureEffect.h" |
Michael Ludwig | 663afe5 | 2019-06-03 16:46:19 -0400 | [diff] [blame] | 21 | #include "src/gpu/geometry/GrShape.h" |
Robert Phillips | c7c2baf | 2018-03-08 09:51:04 -0500 | [diff] [blame] | 22 | |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 23 | #include "include/core/SkPaint.h" |
| 24 | #include "src/core/SkDraw.h" |
| 25 | #include "src/core/SkMaskFilterBase.h" |
| 26 | #include "src/core/SkTLazy.h" |
| 27 | #include "src/gpu/SkGr.h" |
robertphillips | ccb1b57 | 2015-05-27 11:02:55 -0700 | [diff] [blame] | 28 | |
| 29 | static bool clip_bounds_quick_reject(const SkIRect& clipBounds, const SkIRect& rect) { |
| 30 | return clipBounds.isEmpty() || rect.isEmpty() || !SkIRect::Intersects(clipBounds, rect); |
| 31 | } |
| 32 | |
| 33 | // Draw a mask using the supplied paint. Since the coverage/geometry |
| 34 | // is already burnt into the mask this boils down to a rect draw. |
| 35 | // Return true if the mask was successfully drawn. |
Robert Phillips | 296b1cc | 2017-03-15 10:42:12 -0400 | [diff] [blame] | 36 | static bool draw_mask(GrRenderTargetContext* renderTargetContext, |
robertphillips | ccb1b57 | 2015-05-27 11:02:55 -0700 | [diff] [blame] | 37 | const GrClip& clip, |
| 38 | const SkMatrix& viewMatrix, |
robertphillips | f054b17 | 2016-05-13 05:06:19 -0700 | [diff] [blame] | 39 | const SkIRect& maskRect, |
Brian Salomon | 82f4431 | 2017-01-11 13:42:54 -0500 | [diff] [blame] | 40 | GrPaint&& paint, |
Robert Phillips | 4a24da5 | 2016-12-14 09:00:07 -0500 | [diff] [blame] | 41 | sk_sp<GrTextureProxy> mask) { |
Brian Salomon | 82f4431 | 2017-01-11 13:42:54 -0500 | [diff] [blame] | 42 | SkMatrix inverse; |
| 43 | if (!viewMatrix.invert(&inverse)) { |
| 44 | return false; |
| 45 | } |
Robert Phillips | 4a24da5 | 2016-12-14 09:00:07 -0500 | [diff] [blame] | 46 | |
Robert Phillips | 67c18d6 | 2017-01-20 12:44:06 -0500 | [diff] [blame] | 47 | SkMatrix matrix = SkMatrix::MakeTrans(-SkIntToScalar(maskRect.fLeft), |
| 48 | -SkIntToScalar(maskRect.fTop)); |
Brian Salomon | 2ebd0c8 | 2016-10-03 17:15:28 -0400 | [diff] [blame] | 49 | matrix.preConcat(viewMatrix); |
Brian Osman | 2240be9 | 2017-10-18 13:15:13 -0400 | [diff] [blame] | 50 | paint.addCoverageFragmentProcessor(GrSimpleTextureEffect::Make(std::move(mask), matrix)); |
robertphillips | ccb1b57 | 2015-05-27 11:02:55 -0700 | [diff] [blame] | 51 | |
Brian Salomon | 82f4431 | 2017-01-11 13:42:54 -0500 | [diff] [blame] | 52 | renderTargetContext->fillRectWithLocalMatrix(clip, std::move(paint), GrAA::kNo, SkMatrix::I(), |
Brian Salomon | 0e8fc8b | 2016-12-09 15:10:07 -0500 | [diff] [blame] | 53 | SkRect::Make(maskRect), inverse); |
robertphillips | ccb1b57 | 2015-05-27 11:02:55 -0700 | [diff] [blame] | 54 | return true; |
| 55 | } |
| 56 | |
Robert Phillips | c7c2baf | 2018-03-08 09:51:04 -0500 | [diff] [blame] | 57 | static void mask_release_proc(void* addr, void* /*context*/) { |
| 58 | SkMask::FreeImage(addr); |
| 59 | } |
| 60 | |
Robert Phillips | 7af8fe5 | 2019-02-14 17:27:00 -0500 | [diff] [blame] | 61 | static bool sw_draw_with_mask_filter(GrRecordingContext* context, |
Robert Phillips | 4a24da5 | 2016-12-14 09:00:07 -0500 | [diff] [blame] | 62 | GrRenderTargetContext* renderTargetContext, |
robertphillips | 0e7029e | 2015-11-30 05:45:06 -0800 | [diff] [blame] | 63 | const GrClip& clipData, |
| 64 | const SkMatrix& viewMatrix, |
Robert Phillips | 27927a5 | 2018-08-20 13:18:12 -0400 | [diff] [blame] | 65 | const GrShape& shape, |
robertphillips | 0e7029e | 2015-11-30 05:45:06 -0800 | [diff] [blame] | 66 | const SkMaskFilter* filter, |
| 67 | const SkIRect& clipBounds, |
Robert Phillips | 31c080b | 2018-08-23 10:45:32 -0400 | [diff] [blame] | 68 | GrPaint&& paint, |
| 69 | const GrUniqueKey& key) { |
Robert Phillips | 27927a5 | 2018-08-20 13:18:12 -0400 | [diff] [blame] | 70 | SkASSERT(filter); |
| 71 | SkASSERT(!shape.style().applies()); |
| 72 | |
Robert Phillips | 9da87e0 | 2019-02-04 13:26:26 -0500 | [diff] [blame] | 73 | auto proxyProvider = context->priv().proxyProvider(); |
Robert Phillips | 27927a5 | 2018-08-20 13:18:12 -0400 | [diff] [blame] | 74 | |
Robert Phillips | 31c080b | 2018-08-23 10:45:32 -0400 | [diff] [blame] | 75 | sk_sp<GrTextureProxy> filteredMask; |
Robert Phillips | 27927a5 | 2018-08-20 13:18:12 -0400 | [diff] [blame] | 76 | |
| 77 | SkStrokeRec::InitStyle fillOrHairline = shape.style().isSimpleHairline() |
| 78 | ? SkStrokeRec::kHairline_InitStyle |
| 79 | : SkStrokeRec::kFill_InitStyle; |
| 80 | |
Robert Phillips | 31c080b | 2018-08-23 10:45:32 -0400 | [diff] [blame] | 81 | if (key.isValid()) { |
| 82 | // TODO: this cache look up is duplicated in draw_shape_with_mask_filter for gpu |
Brian Salomon | 2af3e70 | 2019-08-11 19:10:31 -0400 | [diff] [blame] | 83 | filteredMask = proxyProvider->findOrCreateProxyByUniqueKey(key, GrColorType::kAlpha_8, |
| 84 | kTopLeft_GrSurfaceOrigin); |
robertphillips | ccb1b57 | 2015-05-27 11:02:55 -0700 | [diff] [blame] | 85 | } |
| 86 | |
Robert Phillips | 31c080b | 2018-08-23 10:45:32 -0400 | [diff] [blame] | 87 | SkIRect drawRect; |
| 88 | if (filteredMask) { |
| 89 | SkRect devBounds = shape.bounds(); |
| 90 | viewMatrix.mapRect(&devBounds); |
Robert Phillips | 4a24da5 | 2016-12-14 09:00:07 -0500 | [diff] [blame] | 91 | |
Robert Phillips | 31c080b | 2018-08-23 10:45:32 -0400 | [diff] [blame] | 92 | // Here we need to recompute the destination bounds in order to draw the mask correctly |
| 93 | SkMask srcM, dstM; |
| 94 | if (!SkDraw::ComputeMaskBounds(devBounds, &clipBounds, filter, &viewMatrix, |
| 95 | &srcM.fBounds)) { |
| 96 | return false; |
| 97 | } |
| 98 | |
| 99 | srcM.fFormat = SkMask::kA8_Format; |
| 100 | |
| 101 | if (!as_MFB(filter)->filterMask(&dstM, srcM, viewMatrix, nullptr)) { |
| 102 | return false; |
| 103 | } |
| 104 | |
| 105 | // Unfortunately, we cannot double check that the computed bounds (i.e., dstM.fBounds) |
| 106 | // match the stored bounds of the mask bc the proxy may have been recreated and, |
| 107 | // when it is recreated, it just gets the bounds of the underlying GrTexture (which |
| 108 | // might be a loose fit). |
| 109 | drawRect = dstM.fBounds; |
| 110 | } else { |
| 111 | // TODO: it seems like we could create an SkDraw here and set its fMatrix field rather |
| 112 | // than explicitly transforming the path to device space. |
| 113 | SkPath devPath; |
| 114 | |
| 115 | shape.asPath(&devPath); |
| 116 | |
| 117 | devPath.transform(viewMatrix); |
| 118 | |
| 119 | SkMask srcM, dstM; |
| 120 | if (!SkDraw::DrawToMask(devPath, &clipBounds, filter, &viewMatrix, &srcM, |
| 121 | SkMask::kComputeBoundsAndRenderImage_CreateMode, fillOrHairline)) { |
| 122 | return false; |
| 123 | } |
| 124 | SkAutoMaskFreeImage autoSrc(srcM.fImage); |
| 125 | |
| 126 | SkASSERT(SkMask::kA8_Format == srcM.fFormat); |
| 127 | |
| 128 | if (!as_MFB(filter)->filterMask(&dstM, srcM, viewMatrix, nullptr)) { |
| 129 | return false; |
| 130 | } |
| 131 | // this will free-up dstM when we're done (allocated in filterMask()) |
| 132 | SkAutoMaskFreeImage autoDst(dstM.fImage); |
| 133 | |
| 134 | if (clip_bounds_quick_reject(clipBounds, dstM.fBounds)) { |
| 135 | return false; |
| 136 | } |
| 137 | |
| 138 | // we now have a device-aligned 8bit mask in dstM, ready to be drawn using |
| 139 | // the current clip (and identity matrix) and GrPaint settings |
| 140 | SkBitmap bm; |
| 141 | if (!bm.installPixels(SkImageInfo::MakeA8(dstM.fBounds.width(), dstM.fBounds.height()), |
| 142 | autoDst.release(), dstM.fRowBytes, mask_release_proc, nullptr)) { |
| 143 | return false; |
| 144 | } |
| 145 | bm.setImmutable(); |
| 146 | |
| 147 | sk_sp<SkImage> image = SkImage::MakeFromBitmap(bm); |
| 148 | if (!image) { |
| 149 | return false; |
| 150 | } |
| 151 | |
Brian Salomon | 96b383a | 2019-08-13 16:55:41 -0400 | [diff] [blame] | 152 | filteredMask = proxyProvider->createTextureProxy(std::move(image), 1, SkBudgeted::kYes, |
| 153 | SkBackingFit::kApprox); |
Robert Phillips | 31c080b | 2018-08-23 10:45:32 -0400 | [diff] [blame] | 154 | if (!filteredMask) { |
| 155 | return false; |
| 156 | } |
| 157 | |
Robert Phillips | 59b39e7 | 2018-08-30 11:51:25 -0400 | [diff] [blame] | 158 | SkASSERT(kTopLeft_GrSurfaceOrigin == filteredMask->origin()); |
| 159 | |
Robert Phillips | 31c080b | 2018-08-23 10:45:32 -0400 | [diff] [blame] | 160 | drawRect = dstM.fBounds; |
| 161 | |
| 162 | if (key.isValid()) { |
| 163 | proxyProvider->assignUniqueKeyToProxy(key, filteredMask.get()); |
| 164 | } |
Robert Phillips | 48ce22b | 2018-03-23 10:33:12 -0400 | [diff] [blame] | 165 | } |
Robert Phillips | c7c2baf | 2018-03-08 09:51:04 -0500 | [diff] [blame] | 166 | |
Robert Phillips | 31c080b | 2018-08-23 10:45:32 -0400 | [diff] [blame] | 167 | return draw_mask(renderTargetContext, clipData, viewMatrix, drawRect, |
| 168 | std::move(paint), std::move(filteredMask)); |
robertphillips | ccb1b57 | 2015-05-27 11:02:55 -0700 | [diff] [blame] | 169 | } |
| 170 | |
Robert Phillips | 40b05c3 | 2019-09-20 12:40:55 -0400 | [diff] [blame^] | 171 | // Create a mask of 'shape' and return the resulting renderTargetContext |
| 172 | static std::unique_ptr<GrRenderTargetContext> create_mask_GPU(GrRecordingContext* context, |
| 173 | const SkIRect& maskRect, |
| 174 | const SkMatrix& origViewMatrix, |
| 175 | const GrShape& shape, |
| 176 | int sampleCnt) { |
Chris Dalton | 0493fbd | 2019-09-18 15:49:46 -0600 | [diff] [blame] | 177 | // Use GrResourceProvider::MakeApprox to implement our own approximate size matching, but demand |
| 178 | // a "SkBackingFit::kExact" size match on the actual render target. We do this because the |
| 179 | // filter will reach outside the src bounds, so we need to pre-clear these values to ensure a |
| 180 | // "decal" sampling effect (i.e., ensure reads outside the src bounds return alpha=0). |
| 181 | // |
| 182 | // FIXME: Reads outside the left and top edges will actually clamp to the edge pixel. And in the |
| 183 | // event that MakeApprox does not change the size, reads outside the right and/or bottom will do |
| 184 | // the same. We should offset our filter within the render target and expand the size as needed |
| 185 | // to guarantee at least 1px of padding on all sides. |
Brian Salomon | bf6b979 | 2019-08-21 09:38:10 -0400 | [diff] [blame] | 186 | auto rtContext = context->priv().makeDeferredRenderTargetContextWithFallback( |
Chris Dalton | 0493fbd | 2019-09-18 15:49:46 -0600 | [diff] [blame] | 187 | SkBackingFit::kExact, GrResourceProvider::MakeApprox(maskRect.width()), |
| 188 | GrResourceProvider::MakeApprox(maskRect.height()), GrColorType::kAlpha_8, nullptr, |
| 189 | sampleCnt, GrMipMapped::kNo, kTopLeft_GrSurfaceOrigin); |
robertphillips | d728f0c | 2016-11-21 11:05:03 -0800 | [diff] [blame] | 190 | if (!rtContext) { |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 191 | return nullptr; |
robertphillips | ccb1b57 | 2015-05-27 11:02:55 -0700 | [diff] [blame] | 192 | } |
| 193 | |
Chris Dalton | 0493fbd | 2019-09-18 15:49:46 -0600 | [diff] [blame] | 194 | rtContext->clear(SK_PMColor4fTRANSPARENT); |
robertphillips | ccb1b57 | 2015-05-27 11:02:55 -0700 | [diff] [blame] | 195 | |
Brian Salomon | 82f4431 | 2017-01-11 13:42:54 -0500 | [diff] [blame] | 196 | GrPaint maskPaint; |
| 197 | maskPaint.setCoverageSetOpXPFactory(SkRegion::kReplace_Op); |
robertphillips | ccb1b57 | 2015-05-27 11:02:55 -0700 | [diff] [blame] | 198 | |
| 199 | // setup new clip |
cdalton | 846c051 | 2016-05-13 10:25:00 -0700 | [diff] [blame] | 200 | const SkIRect clipRect = SkIRect::MakeWH(maskRect.width(), maskRect.height()); |
| 201 | GrFixedClip clip(clipRect); |
robertphillips | ccb1b57 | 2015-05-27 11:02:55 -0700 | [diff] [blame] | 202 | |
robertphillips | 3833daa | 2015-09-14 11:18:13 -0700 | [diff] [blame] | 203 | // Draw the mask into maskTexture with the path's integerized top-left at |
Brian Salomon | 82f4431 | 2017-01-11 13:42:54 -0500 | [diff] [blame] | 204 | // the origin using maskPaint. |
Robert Phillips | 27927a5 | 2018-08-20 13:18:12 -0400 | [diff] [blame] | 205 | SkMatrix viewMatrix = origViewMatrix; |
| 206 | viewMatrix.postTranslate(-SkIntToScalar(maskRect.fLeft), -SkIntToScalar(maskRect.fTop)); |
Robert Phillips | 793324c | 2018-08-24 13:53:56 -0400 | [diff] [blame] | 207 | rtContext->drawShape(clip, std::move(maskPaint), GrAA::kYes, viewMatrix, shape); |
Robert Phillips | 40b05c3 | 2019-09-20 12:40:55 -0400 | [diff] [blame^] | 208 | return rtContext; |
robertphillips | ccb1b57 | 2015-05-27 11:02:55 -0700 | [diff] [blame] | 209 | } |
| 210 | |
Robert Phillips | 27927a5 | 2018-08-20 13:18:12 -0400 | [diff] [blame] | 211 | static bool get_unclipped_shape_dev_bounds(const GrShape& shape, const SkMatrix& matrix, |
| 212 | SkIRect* devBounds) { |
| 213 | SkRect shapeBounds = shape.styledBounds(); |
| 214 | if (shapeBounds.isEmpty()) { |
| 215 | return false; |
| 216 | } |
| 217 | SkRect shapeDevBounds; |
| 218 | matrix.mapRect(&shapeDevBounds, shapeBounds); |
| 219 | // Even though these are "unclipped" bounds we still clip to the int32_t range. |
| 220 | // This is the largest int32_t that is representable exactly as a float. The next 63 larger ints |
| 221 | // would round down to this value when cast to a float, but who really cares. |
| 222 | // INT32_MIN is exactly representable. |
| 223 | static constexpr int32_t kMaxInt = 2147483520; |
| 224 | if (!shapeDevBounds.intersect(SkRect::MakeLTRB(INT32_MIN, INT32_MIN, kMaxInt, kMaxInt))) { |
| 225 | return false; |
| 226 | } |
| 227 | // Make sure that the resulting SkIRect can have representable width and height |
| 228 | if (SkScalarRoundToInt(shapeDevBounds.width()) > kMaxInt || |
| 229 | SkScalarRoundToInt(shapeDevBounds.height()) > kMaxInt) { |
| 230 | return false; |
| 231 | } |
| 232 | shapeDevBounds.roundOut(devBounds); |
| 233 | return true; |
| 234 | } |
bsalomon | c55271f | 2015-11-09 11:55:57 -0800 | [diff] [blame] | 235 | |
Robert Phillips | 27927a5 | 2018-08-20 13:18:12 -0400 | [diff] [blame] | 236 | // Gets the shape bounds, the clip bounds, and the intersection (if any). Returns false if there |
| 237 | // is no intersection. |
| 238 | static bool get_shape_and_clip_bounds(GrRenderTargetContext* renderTargetContext, |
| 239 | const GrClip& clip, |
| 240 | const GrShape& shape, |
| 241 | const SkMatrix& matrix, |
| 242 | SkIRect* unclippedDevShapeBounds, |
| 243 | SkIRect* devClipBounds) { |
| 244 | // compute bounds as intersection of rt size, clip, and path |
Robert Phillips | 784b7bf | 2016-12-09 13:35:02 -0500 | [diff] [blame] | 245 | clip.getConservativeBounds(renderTargetContext->width(), |
| 246 | renderTargetContext->height(), |
Robert Phillips | 27927a5 | 2018-08-20 13:18:12 -0400 | [diff] [blame] | 247 | devClipBounds); |
bsalomon | c55271f | 2015-11-09 11:55:57 -0800 | [diff] [blame] | 248 | |
Robert Phillips | 27927a5 | 2018-08-20 13:18:12 -0400 | [diff] [blame] | 249 | if (!get_unclipped_shape_dev_bounds(shape, matrix, unclippedDevShapeBounds)) { |
| 250 | *unclippedDevShapeBounds = SkIRect::EmptyIRect(); |
| 251 | return false; |
bsalomon | c55271f | 2015-11-09 11:55:57 -0800 | [diff] [blame] | 252 | } |
| 253 | |
Robert Phillips | 27927a5 | 2018-08-20 13:18:12 -0400 | [diff] [blame] | 254 | return true; |
| 255 | } |
| 256 | |
Robert Phillips | 7af8fe5 | 2019-02-14 17:27:00 -0500 | [diff] [blame] | 257 | static void draw_shape_with_mask_filter(GrRecordingContext* context, |
Robert Phillips | 27927a5 | 2018-08-20 13:18:12 -0400 | [diff] [blame] | 258 | GrRenderTargetContext* renderTargetContext, |
| 259 | const GrClip& clip, |
| 260 | GrPaint&& paint, |
Robert Phillips | 27927a5 | 2018-08-20 13:18:12 -0400 | [diff] [blame] | 261 | const SkMatrix& viewMatrix, |
| 262 | const SkMaskFilterBase* maskFilter, |
| 263 | const GrShape& origShape) { |
| 264 | SkASSERT(maskFilter); |
| 265 | |
| 266 | const GrShape* shape = &origShape; |
| 267 | SkTLazy<GrShape> tmpShape; |
| 268 | |
| 269 | if (origShape.style().applies()) { |
| 270 | SkScalar styleScale = GrStyle::MatrixToScaleFactor(viewMatrix); |
| 271 | if (0 == styleScale) { |
| 272 | return; |
bsalomon | 6663acf | 2016-05-10 09:14:17 -0700 | [diff] [blame] | 273 | } |
Robert Phillips | 27927a5 | 2018-08-20 13:18:12 -0400 | [diff] [blame] | 274 | |
| 275 | tmpShape.init(origShape.applyStyle(GrStyle::Apply::kPathEffectAndStrokeRec, styleScale)); |
| 276 | if (tmpShape.get()->isEmpty()) { |
| 277 | return; |
| 278 | } |
| 279 | |
| 280 | shape = tmpShape.get(); |
bsalomon | 6663acf | 2016-05-10 09:14:17 -0700 | [diff] [blame] | 281 | } |
bsalomon | c55271f | 2015-11-09 11:55:57 -0800 | [diff] [blame] | 282 | |
Robert Phillips | b889f20 | 2018-08-17 19:55:59 +0000 | [diff] [blame] | 283 | if (maskFilter->directFilterMaskGPU(context, |
| 284 | renderTargetContext, |
| 285 | std::move(paint), |
| 286 | clip, |
| 287 | viewMatrix, |
Robert Phillips | 27927a5 | 2018-08-20 13:18:12 -0400 | [diff] [blame] | 288 | *shape)) { |
Robert Phillips | b889f20 | 2018-08-17 19:55:59 +0000 | [diff] [blame] | 289 | // the mask filter was able to draw itself directly, so there's nothing |
| 290 | // left to do. |
| 291 | return; |
| 292 | } |
Mike Klein | 1688507 | 2018-12-11 09:54:31 -0500 | [diff] [blame] | 293 | assert_alive(paint); |
Robert Phillips | b889f20 | 2018-08-17 19:55:59 +0000 | [diff] [blame] | 294 | |
Robert Phillips | 27927a5 | 2018-08-20 13:18:12 -0400 | [diff] [blame] | 295 | // If the path is hairline, ignore inverse fill. |
| 296 | bool inverseFilled = shape->inverseFilled() && |
| 297 | !GrPathRenderer::IsStrokeHairlineOrEquivalent(shape->style(), |
| 298 | viewMatrix, nullptr); |
| 299 | |
| 300 | SkIRect unclippedDevShapeBounds, devClipBounds; |
Robert Phillips | 31c080b | 2018-08-23 10:45:32 -0400 | [diff] [blame] | 301 | if (!get_shape_and_clip_bounds(renderTargetContext, clip, *shape, viewMatrix, |
Robert Phillips | 27927a5 | 2018-08-20 13:18:12 -0400 | [diff] [blame] | 302 | &unclippedDevShapeBounds, |
| 303 | &devClipBounds)) { |
| 304 | // TODO: just cons up an opaque mask here |
| 305 | if (!inverseFilled) { |
| 306 | return; |
| 307 | } |
| 308 | } |
| 309 | |
Robert Phillips | 31c080b | 2018-08-23 10:45:32 -0400 | [diff] [blame] | 310 | // To prevent overloading the cache with entries during animations we limit the cache of masks |
| 311 | // to cases where the matrix preserves axis alignment. |
Robert Phillips | de47928 | 2018-08-28 11:20:08 -0400 | [diff] [blame] | 312 | #ifdef SK_DISABLE_MASKFILTERED_MASK_CACHING |
| 313 | bool useCache = false; |
| 314 | #else |
Robert Phillips | 31c080b | 2018-08-23 10:45:32 -0400 | [diff] [blame] | 315 | bool useCache = !inverseFilled && viewMatrix.preservesAxisAlignment() && |
| 316 | shape->hasUnstyledKey() && as_MFB(maskFilter)->asABlur(nullptr); |
Robert Phillips | de47928 | 2018-08-28 11:20:08 -0400 | [diff] [blame] | 317 | #endif |
Robert Phillips | 31c080b | 2018-08-23 10:45:32 -0400 | [diff] [blame] | 318 | |
| 319 | const SkIRect* boundsForClip = &devClipBounds; |
| 320 | if (useCache) { |
| 321 | SkIRect clippedMaskRect, unClippedMaskRect; |
| 322 | maskFilter->canFilterMaskGPU(*shape, unclippedDevShapeBounds, devClipBounds, |
| 323 | viewMatrix, &clippedMaskRect); |
| 324 | maskFilter->canFilterMaskGPU(*shape, unclippedDevShapeBounds, unclippedDevShapeBounds, |
| 325 | viewMatrix, &unClippedMaskRect); |
| 326 | if (clippedMaskRect.isEmpty()) { |
| 327 | return; |
| 328 | } |
| 329 | |
| 330 | // Use the cache only if >50% of the filtered mask is visible. |
| 331 | int unclippedWidth = unClippedMaskRect.width(); |
| 332 | int unclippedHeight = unClippedMaskRect.height(); |
| 333 | int64_t unclippedArea = sk_64_mul(unclippedWidth, unclippedHeight); |
| 334 | int64_t clippedArea = sk_64_mul(clippedMaskRect.width(), clippedMaskRect.height()); |
| 335 | int maxTextureSize = renderTargetContext->caps()->maxTextureSize(); |
| 336 | if (unclippedArea > 2 * clippedArea || unclippedWidth > maxTextureSize || |
| 337 | unclippedHeight > maxTextureSize) { |
| 338 | useCache = false; |
| 339 | } else { |
| 340 | // Make the clip not affect the mask |
| 341 | boundsForClip = &unclippedDevShapeBounds; |
| 342 | } |
| 343 | } |
| 344 | |
| 345 | GrUniqueKey maskKey; |
| 346 | if (useCache) { |
| 347 | static const GrUniqueKey::Domain kDomain = GrUniqueKey::GenerateDomain(); |
| 348 | GrUniqueKey::Builder builder(&maskKey, kDomain, 5 + 2 + shape->unstyledKeySize(), |
| 349 | "Mask Filtered Masks"); |
| 350 | |
| 351 | // We require the upper left 2x2 of the matrix to match exactly for a cache hit. |
| 352 | SkScalar sx = viewMatrix.get(SkMatrix::kMScaleX); |
| 353 | SkScalar sy = viewMatrix.get(SkMatrix::kMScaleY); |
| 354 | SkScalar kx = viewMatrix.get(SkMatrix::kMSkewX); |
| 355 | SkScalar ky = viewMatrix.get(SkMatrix::kMSkewY); |
| 356 | SkScalar tx = viewMatrix.get(SkMatrix::kMTransX); |
| 357 | SkScalar ty = viewMatrix.get(SkMatrix::kMTransY); |
| 358 | // Allow 8 bits each in x and y of subpixel positioning. |
| 359 | SkFixed fracX = SkScalarToFixed(SkScalarFraction(tx)) & 0x0000FF00; |
| 360 | SkFixed fracY = SkScalarToFixed(SkScalarFraction(ty)) & 0x0000FF00; |
| 361 | |
| 362 | builder[0] = SkFloat2Bits(sx); |
| 363 | builder[1] = SkFloat2Bits(sy); |
| 364 | builder[2] = SkFloat2Bits(kx); |
| 365 | builder[3] = SkFloat2Bits(ky); |
| 366 | // Distinguish between hairline and filled paths. For hairlines, we also need to include |
| 367 | // the cap. (SW grows hairlines by 0.5 pixel with round and square caps). Note that |
| 368 | // stroke-and-fill of hairlines is turned into pure fill by SkStrokeRec, so this covers |
| 369 | // all cases we might see. |
| 370 | uint32_t styleBits = shape->style().isSimpleHairline() |
| 371 | ? ((shape->style().strokeRec().getCap() << 1) | 1) |
| 372 | : 0; |
| 373 | builder[4] = fracX | (fracY >> 8) | (styleBits << 16); |
| 374 | |
| 375 | SkMaskFilterBase::BlurRec rec; |
| 376 | SkAssertResult(as_MFB(maskFilter)->asABlur(&rec)); |
| 377 | |
| 378 | builder[5] = rec.fStyle; // TODO: we could put this with the other style bits |
Robert Phillips | 55ff5d3 | 2019-01-07 16:11:36 -0500 | [diff] [blame] | 379 | builder[6] = SkFloat2Bits(rec.fSigma); |
Robert Phillips | 31c080b | 2018-08-23 10:45:32 -0400 | [diff] [blame] | 380 | shape->writeUnstyledKey(&builder[7]); |
| 381 | } |
| 382 | |
| 383 | SkIRect maskRect; |
Robert Phillips | 27927a5 | 2018-08-20 13:18:12 -0400 | [diff] [blame] | 384 | if (maskFilter->canFilterMaskGPU(*shape, |
Robert Phillips | 31c080b | 2018-08-23 10:45:32 -0400 | [diff] [blame] | 385 | unclippedDevShapeBounds, |
| 386 | *boundsForClip, |
bsalomon | c55271f | 2015-11-09 11:55:57 -0800 | [diff] [blame] | 387 | viewMatrix, |
| 388 | &maskRect)) { |
Robert Phillips | 31c080b | 2018-08-23 10:45:32 -0400 | [diff] [blame] | 389 | if (clip_bounds_quick_reject(*boundsForClip, maskRect)) { |
bsalomon | c55271f | 2015-11-09 11:55:57 -0800 | [diff] [blame] | 390 | // clipped out |
| 391 | return; |
| 392 | } |
| 393 | |
Robert Phillips | 20390c3 | 2018-08-17 11:01:03 -0400 | [diff] [blame] | 394 | sk_sp<GrTextureProxy> filteredMask; |
| 395 | |
Robert Phillips | 9da87e0 | 2019-02-04 13:26:26 -0500 | [diff] [blame] | 396 | GrProxyProvider* proxyProvider = context->priv().proxyProvider(); |
Robert Phillips | 31c080b | 2018-08-23 10:45:32 -0400 | [diff] [blame] | 397 | |
| 398 | if (maskKey.isValid()) { |
| 399 | // TODO: this cache look up is duplicated in sw_draw_with_mask_filter for raster |
| 400 | filteredMask = proxyProvider->findOrCreateProxyByUniqueKey( |
Brian Salomon | 2af3e70 | 2019-08-11 19:10:31 -0400 | [diff] [blame] | 401 | maskKey, GrColorType::kAlpha_8, kTopLeft_GrSurfaceOrigin); |
Robert Phillips | 31c080b | 2018-08-23 10:45:32 -0400 | [diff] [blame] | 402 | } |
| 403 | |
Robert Phillips | 20390c3 | 2018-08-17 11:01:03 -0400 | [diff] [blame] | 404 | if (!filteredMask) { |
Robert Phillips | 40b05c3 | 2019-09-20 12:40:55 -0400 | [diff] [blame^] | 405 | std::unique_ptr<GrRenderTargetContext> maskRTC(create_mask_GPU( |
Robert Phillips | 20390c3 | 2018-08-17 11:01:03 -0400 | [diff] [blame] | 406 | context, |
Robert Phillips | 31c080b | 2018-08-23 10:45:32 -0400 | [diff] [blame] | 407 | maskRect, |
Robert Phillips | 27927a5 | 2018-08-20 13:18:12 -0400 | [diff] [blame] | 408 | viewMatrix, |
| 409 | *shape, |
Chris Dalton | 6ce447a | 2019-06-23 18:07:38 -0600 | [diff] [blame] | 410 | renderTargetContext->numSamples())); |
Robert Phillips | 40b05c3 | 2019-09-20 12:40:55 -0400 | [diff] [blame^] | 411 | if (maskRTC) { |
Robert Phillips | 20390c3 | 2018-08-17 11:01:03 -0400 | [diff] [blame] | 412 | filteredMask = maskFilter->filterMaskGPU(context, |
Robert Phillips | 40b05c3 | 2019-09-20 12:40:55 -0400 | [diff] [blame^] | 413 | maskRTC->asTextureProxyRef(), |
| 414 | maskRTC->colorSpaceInfo().colorType(), |
| 415 | maskRTC->colorSpaceInfo().alphaType(), |
Robert Phillips | 20390c3 | 2018-08-17 11:01:03 -0400 | [diff] [blame] | 416 | viewMatrix, |
Robert Phillips | 31c080b | 2018-08-23 10:45:32 -0400 | [diff] [blame] | 417 | maskRect); |
Robert Phillips | 59b39e7 | 2018-08-30 11:51:25 -0400 | [diff] [blame] | 418 | SkASSERT(kTopLeft_GrSurfaceOrigin == filteredMask->origin()); |
| 419 | |
Robert Phillips | 31c080b | 2018-08-23 10:45:32 -0400 | [diff] [blame] | 420 | if (filteredMask && maskKey.isValid()) { |
| 421 | proxyProvider->assignUniqueKeyToProxy(maskKey, filteredMask.get()); |
| 422 | } |
bsalomon | c55271f | 2015-11-09 11:55:57 -0800 | [diff] [blame] | 423 | } |
| 424 | } |
Robert Phillips | 20390c3 | 2018-08-17 11:01:03 -0400 | [diff] [blame] | 425 | |
| 426 | if (filteredMask) { |
| 427 | if (draw_mask(renderTargetContext, clip, viewMatrix, |
Robert Phillips | 31c080b | 2018-08-23 10:45:32 -0400 | [diff] [blame] | 428 | maskRect, std::move(paint), std::move(filteredMask))) { |
Robert Phillips | 20390c3 | 2018-08-17 11:01:03 -0400 | [diff] [blame] | 429 | // This path is completely drawn |
| 430 | return; |
| 431 | } |
Mike Klein | 1688507 | 2018-12-11 09:54:31 -0500 | [diff] [blame] | 432 | assert_alive(paint); |
Robert Phillips | 20390c3 | 2018-08-17 11:01:03 -0400 | [diff] [blame] | 433 | } |
bsalomon | c55271f | 2015-11-09 11:55:57 -0800 | [diff] [blame] | 434 | } |
| 435 | |
Robert Phillips | 27927a5 | 2018-08-20 13:18:12 -0400 | [diff] [blame] | 436 | sw_draw_with_mask_filter(context, renderTargetContext, clip, viewMatrix, *shape, |
Robert Phillips | 31c080b | 2018-08-23 10:45:32 -0400 | [diff] [blame] | 437 | maskFilter, *boundsForClip, std::move(paint), maskKey); |
bsalomon | 6663acf | 2016-05-10 09:14:17 -0700 | [diff] [blame] | 438 | } |
| 439 | |
Robert Phillips | 7af8fe5 | 2019-02-14 17:27:00 -0500 | [diff] [blame] | 440 | void GrBlurUtils::drawShapeWithMaskFilter(GrRecordingContext* context, |
Robert Phillips | 27927a5 | 2018-08-20 13:18:12 -0400 | [diff] [blame] | 441 | GrRenderTargetContext* renderTargetContext, |
| 442 | const GrClip& clip, |
| 443 | const GrShape& shape, |
| 444 | GrPaint&& paint, |
Robert Phillips | 27927a5 | 2018-08-20 13:18:12 -0400 | [diff] [blame] | 445 | const SkMatrix& viewMatrix, |
| 446 | const SkMaskFilter* mf) { |
Robert Phillips | 793324c | 2018-08-24 13:53:56 -0400 | [diff] [blame] | 447 | draw_shape_with_mask_filter(context, renderTargetContext, clip, std::move(paint), |
Robert Phillips | 27927a5 | 2018-08-20 13:18:12 -0400 | [diff] [blame] | 448 | viewMatrix, as_MFB(mf), shape); |
bsalomon | c55271f | 2015-11-09 11:55:57 -0800 | [diff] [blame] | 449 | } |
| 450 | |
Robert Phillips | 6989370 | 2019-02-22 11:16:30 -0500 | [diff] [blame] | 451 | void GrBlurUtils::drawShapeWithMaskFilter(GrRecordingContext* context, |
Robert Phillips | 27927a5 | 2018-08-20 13:18:12 -0400 | [diff] [blame] | 452 | GrRenderTargetContext* renderTargetContext, |
| 453 | const GrClip& clip, |
| 454 | const SkPaint& paint, |
| 455 | const SkMatrix& viewMatrix, |
| 456 | const GrShape& shape) { |
Robert Phillips | 6a6de56 | 2019-02-15 15:19:15 -0500 | [diff] [blame] | 457 | if (context->priv().abandoned()) { |
Robert Phillips | bebfd41 | 2018-03-08 11:07:23 -0500 | [diff] [blame] | 458 | return; |
| 459 | } |
| 460 | |
robertphillips | ccb1b57 | 2015-05-27 11:02:55 -0700 | [diff] [blame] | 461 | GrPaint grPaint; |
Brian Salomon | f3569f0 | 2017-10-24 12:52:33 -0400 | [diff] [blame] | 462 | if (!SkPaintToGrPaint(context, renderTargetContext->colorSpaceInfo(), paint, viewMatrix, |
| 463 | &grPaint)) { |
robertphillips | ccb1b57 | 2015-05-27 11:02:55 -0700 | [diff] [blame] | 464 | return; |
| 465 | } |
Robert Phillips | 27927a5 | 2018-08-20 13:18:12 -0400 | [diff] [blame] | 466 | |
Mike Reed | 80747ef | 2018-01-23 15:29:32 -0500 | [diff] [blame] | 467 | SkMaskFilterBase* mf = as_MFB(paint.getMaskFilter()); |
Mike Reed | bfadcf0 | 2018-01-20 22:24:21 +0000 | [diff] [blame] | 468 | if (mf && !mf->hasFragmentProcessor()) { |
Robert Phillips | a29a956 | 2016-10-20 09:40:55 -0400 | [diff] [blame] | 469 | // The MaskFilter wasn't already handled in SkPaintToGrPaint |
Robert Phillips | 793324c | 2018-08-24 13:53:56 -0400 | [diff] [blame] | 470 | draw_shape_with_mask_filter(context, renderTargetContext, clip, std::move(grPaint), |
Robert Phillips | 27927a5 | 2018-08-20 13:18:12 -0400 | [diff] [blame] | 471 | viewMatrix, mf, shape); |
bsalomon | c55271f | 2015-11-09 11:55:57 -0800 | [diff] [blame] | 472 | } else { |
Robert Phillips | 793324c | 2018-08-24 13:53:56 -0400 | [diff] [blame] | 473 | GrAA aa = GrAA(paint.isAntiAlias()); |
Robert Phillips | 27927a5 | 2018-08-20 13:18:12 -0400 | [diff] [blame] | 474 | renderTargetContext->drawShape(clip, std::move(grPaint), aa, viewMatrix, shape); |
robertphillips | ccb1b57 | 2015-05-27 11:02:55 -0700 | [diff] [blame] | 475 | } |
robertphillips | ccb1b57 | 2015-05-27 11:02:55 -0700 | [diff] [blame] | 476 | } |