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