blob: cd84aec668bf2b8d21cb260a03b78689225d18e2 [file] [log] [blame]
jvanverthfa38a302014-10-06 05:59:05 -07001/*
2 * Copyright 2014 Google Inc.
joel.liang8cbb4242017-01-09 18:39:43 -08003 * Copyright 2017 ARM Ltd.
jvanverthfa38a302014-10-06 05:59:05 -07004 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
7 */
8
Mike Kleinc0bd9f92019-04-23 12:05:21 -05009#include "src/gpu/ops/GrSmallPathRenderer.h"
Robert Phillipsbe9aff22019-02-15 11:33:22 -050010
Mike Kleinc0bd9f92019-04-23 12:05:21 -050011#include "include/core/SkPaint.h"
12#include "src/core/SkAutoMalloc.h"
13#include "src/core/SkAutoPixmapStorage.h"
14#include "src/core/SkDistanceFieldGen.h"
15#include "src/core/SkDraw.h"
16#include "src/core/SkPointPriv.h"
17#include "src/core/SkRasterClip.h"
Greg Danielf91aeb22019-06-18 09:58:02 -040018#include "src/gpu/GrAuditTrail.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050019#include "src/gpu/GrBuffer.h"
20#include "src/gpu/GrCaps.h"
21#include "src/gpu/GrDistanceFieldGenFromVector.h"
22#include "src/gpu/GrDrawOpTest.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050023#include "src/gpu/GrRenderTargetContext.h"
24#include "src/gpu/GrResourceProvider.h"
25#include "src/gpu/GrVertexWriter.h"
26#include "src/gpu/effects/GrBitmapTextGeoProc.h"
27#include "src/gpu/effects/GrDistanceFieldGeoProc.h"
Michael Ludwigfd4f4df2019-05-29 09:51:09 -040028#include "src/gpu/geometry/GrQuad.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050029#include "src/gpu/ops/GrMeshDrawOp.h"
Robert Phillips55f681f2020-02-28 08:58:15 -050030#include "src/gpu/ops/GrSimpleMeshDrawOpHelperWithStencil.h"
jvanverthfa38a302014-10-06 05:59:05 -070031
Sergey Ulanovf1b2b422020-01-24 15:39:32 -080032static constexpr size_t kMaxAtlasTextureBytes = 2048 * 2048;
33static constexpr size_t kPlotWidth = 512;
34static constexpr size_t kPlotHeight = 256;
jvanverthfa38a302014-10-06 05:59:05 -070035
jvanverthb3eb6872014-10-24 07:12:51 -070036#ifdef DF_PATH_TRACKING
bsalomonee432412016-06-27 07:18:18 -070037static int g_NumCachedShapes = 0;
38static int g_NumFreedShapes = 0;
jvanverthb3eb6872014-10-24 07:12:51 -070039#endif
40
jvanverthb61283f2014-10-30 05:57:21 -070041// mip levels
Sergey Ulanovf1b2b422020-01-24 15:39:32 -080042static constexpr SkScalar kIdealMinMIP = 12;
43static constexpr SkScalar kMaxMIP = 162;
Jim Van Verthf9e678d2017-02-15 15:46:52 -050044
Sergey Ulanovf1b2b422020-01-24 15:39:32 -080045static constexpr SkScalar kMaxDim = 73;
46static constexpr SkScalar kMinSize = SK_ScalarHalf;
47static constexpr SkScalar kMaxSize = 2*kMaxMIP;
jvanverthb61283f2014-10-30 05:57:21 -070048
Robert Phillipsd2e9f762018-03-07 11:54:37 -050049class ShapeDataKey {
50public:
51 ShapeDataKey() {}
52 ShapeDataKey(const ShapeDataKey& that) { *this = that; }
53 ShapeDataKey(const GrShape& shape, uint32_t dim) { this->set(shape, dim); }
54 ShapeDataKey(const GrShape& shape, const SkMatrix& ctm) { this->set(shape, ctm); }
55
56 ShapeDataKey& operator=(const ShapeDataKey& that) {
57 fKey.reset(that.fKey.count());
58 memcpy(fKey.get(), that.fKey.get(), fKey.count() * sizeof(uint32_t));
59 return *this;
60 }
61
62 // for SDF paths
63 void set(const GrShape& shape, uint32_t dim) {
64 // Shapes' keys are for their pre-style geometry, but by now we shouldn't have any
65 // relevant styling information.
66 SkASSERT(shape.style().isSimpleFill());
67 SkASSERT(shape.hasUnstyledKey());
68 int shapeKeySize = shape.unstyledKeySize();
69 fKey.reset(1 + shapeKeySize);
70 fKey[0] = dim;
71 shape.writeUnstyledKey(&fKey[1]);
72 }
73
74 // for bitmap paths
75 void set(const GrShape& shape, const SkMatrix& ctm) {
76 // Shapes' keys are for their pre-style geometry, but by now we shouldn't have any
77 // relevant styling information.
78 SkASSERT(shape.style().isSimpleFill());
79 SkASSERT(shape.hasUnstyledKey());
80 // We require the upper left 2x2 of the matrix to match exactly for a cache hit.
81 SkScalar sx = ctm.get(SkMatrix::kMScaleX);
82 SkScalar sy = ctm.get(SkMatrix::kMScaleY);
83 SkScalar kx = ctm.get(SkMatrix::kMSkewX);
84 SkScalar ky = ctm.get(SkMatrix::kMSkewY);
85 SkScalar tx = ctm.get(SkMatrix::kMTransX);
86 SkScalar ty = ctm.get(SkMatrix::kMTransY);
87 // Allow 8 bits each in x and y of subpixel positioning.
Jim Van Vertha64a5852018-03-09 14:16:31 -050088 tx -= SkScalarFloorToScalar(tx);
89 ty -= SkScalarFloorToScalar(ty);
90 SkFixed fracX = SkScalarToFixed(tx) & 0x0000FF00;
91 SkFixed fracY = SkScalarToFixed(ty) & 0x0000FF00;
Robert Phillipsd2e9f762018-03-07 11:54:37 -050092 int shapeKeySize = shape.unstyledKeySize();
93 fKey.reset(5 + shapeKeySize);
94 fKey[0] = SkFloat2Bits(sx);
95 fKey[1] = SkFloat2Bits(sy);
96 fKey[2] = SkFloat2Bits(kx);
97 fKey[3] = SkFloat2Bits(ky);
98 fKey[4] = fracX | (fracY >> 8);
99 shape.writeUnstyledKey(&fKey[5]);
100 }
101
102 bool operator==(const ShapeDataKey& that) const {
103 return fKey.count() == that.fKey.count() &&
104 0 == memcmp(fKey.get(), that.fKey.get(), sizeof(uint32_t) * fKey.count());
105 }
106
107 int count32() const { return fKey.count(); }
108 const uint32_t* data() const { return fKey.get(); }
109
110private:
111 // The key is composed of the GrShape's key, and either the dimensions of the DF
112 // generated for the path (32x32 max, 64x64 max, 128x128 max) if an SDF image or
113 // the matrix for the path with only fractional translation.
114 SkAutoSTArray<24, uint32_t> fKey;
115};
116
117class ShapeData {
118public:
Herb Derby4d721712020-01-24 14:31:16 -0500119 ShapeDataKey fKey;
120 GrDrawOpAtlas::PlotLocator fPlotLocator;
121 SkRect fBounds;
122 GrIRect16 fTextureCoords;
Robert Phillipsd2e9f762018-03-07 11:54:37 -0500123 SK_DECLARE_INTERNAL_LLIST_INTERFACE(ShapeData);
124
125 static inline const ShapeDataKey& GetKey(const ShapeData& data) {
126 return data.fKey;
127 }
128
Kevin Lubickb5502b22018-03-12 10:17:06 -0400129 static inline uint32_t Hash(const ShapeDataKey& key) {
Robert Phillipsd2e9f762018-03-07 11:54:37 -0500130 return SkOpts::hash(key.data(), sizeof(uint32_t) * key.count32());
131 }
132};
133
134
135
joshualitt5bf99f12015-03-13 11:47:42 -0700136// Callback to clear out internal path cache when eviction occurs
Herb Derby4d721712020-01-24 14:31:16 -0500137void GrSmallPathRenderer::evict(GrDrawOpAtlas::PlotLocator plotLocator) {
joshualitt5bf99f12015-03-13 11:47:42 -0700138 // remove any paths that use this plot
bsalomonee432412016-06-27 07:18:18 -0700139 ShapeDataList::Iter iter;
Herb Derby1a496c52020-01-22 17:26:56 -0500140 iter.init(fShapeList, ShapeDataList::Iter::kHead_IterStart);
bsalomonee432412016-06-27 07:18:18 -0700141 ShapeData* shapeData;
142 while ((shapeData = iter.get())) {
joshualitt5bf99f12015-03-13 11:47:42 -0700143 iter.next();
Herb Derby4d721712020-01-24 14:31:16 -0500144 if (plotLocator == shapeData->fPlotLocator) {
Herb Derby1a496c52020-01-22 17:26:56 -0500145 fShapeCache.remove(shapeData->fKey);
146 fShapeList.remove(shapeData);
bsalomonee432412016-06-27 07:18:18 -0700147 delete shapeData;
joshualitt5bf99f12015-03-13 11:47:42 -0700148#ifdef DF_PATH_TRACKING
149 ++g_NumFreedPaths;
150#endif
151 }
152 }
153}
154
jvanverthfa38a302014-10-06 05:59:05 -0700155////////////////////////////////////////////////////////////////////////////////
Jim Van Verth83010462017-03-16 08:45:39 -0400156GrSmallPathRenderer::GrSmallPathRenderer() : fAtlas(nullptr) {}
jvanverth6d22eca2014-10-28 11:10:48 -0700157
Jim Van Verth83010462017-03-16 08:45:39 -0400158GrSmallPathRenderer::~GrSmallPathRenderer() {
bsalomonee432412016-06-27 07:18:18 -0700159 ShapeDataList::Iter iter;
160 iter.init(fShapeList, ShapeDataList::Iter::kHead_IterStart);
161 ShapeData* shapeData;
162 while ((shapeData = iter.get())) {
jvanverthfa38a302014-10-06 05:59:05 -0700163 iter.next();
bsalomonee432412016-06-27 07:18:18 -0700164 delete shapeData;
jvanverthfa38a302014-10-06 05:59:05 -0700165 }
jvanverthb3eb6872014-10-24 07:12:51 -0700166
167#ifdef DF_PATH_TRACKING
bsalomonee432412016-06-27 07:18:18 -0700168 SkDebugf("Cached shapes: %d, freed shapes: %d\n", g_NumCachedShapes, g_NumFreedShapes);
jvanverthb3eb6872014-10-24 07:12:51 -0700169#endif
jvanverthfa38a302014-10-06 05:59:05 -0700170}
171
172////////////////////////////////////////////////////////////////////////////////
Chris Dalton5ed44232017-09-07 13:22:46 -0600173GrPathRenderer::CanDrawPath GrSmallPathRenderer::onCanDrawPath(const CanDrawPathArgs& args) const {
Eric Karl5c779752017-05-08 12:02:07 -0700174 if (!args.fCaps->shaderCaps()->shaderDerivativeSupport()) {
Chris Dalton5ed44232017-09-07 13:22:46 -0600175 return CanDrawPath::kNo;
bsalomonee432412016-06-27 07:18:18 -0700176 }
177 // If the shape has no key then we won't get any reuse.
178 if (!args.fShape->hasUnstyledKey()) {
Chris Dalton5ed44232017-09-07 13:22:46 -0600179 return CanDrawPath::kNo;
bsalomonee432412016-06-27 07:18:18 -0700180 }
181 // This only supports filled paths, however, the caller may apply the style to make a filled
182 // path and try again.
183 if (!args.fShape->style().isSimpleFill()) {
Chris Dalton5ed44232017-09-07 13:22:46 -0600184 return CanDrawPath::kNo;
bsalomonee432412016-06-27 07:18:18 -0700185 }
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500186 // This does non-inverse coverage-based antialiased fills.
Chris Dalton6ce447a2019-06-23 18:07:38 -0600187 if (GrAAType::kCoverage != args.fAAType) {
Chris Dalton5ed44232017-09-07 13:22:46 -0600188 return CanDrawPath::kNo;
bsalomon6663acf2016-05-10 09:14:17 -0700189 }
jvanverthfa38a302014-10-06 05:59:05 -0700190 // TODO: Support inverse fill
bsalomondb7979a2016-06-27 11:08:43 -0700191 if (args.fShape->inverseFilled()) {
Chris Dalton5ed44232017-09-07 13:22:46 -0600192 return CanDrawPath::kNo;
jvanverthfa38a302014-10-06 05:59:05 -0700193 }
halcanary9d524f22016-03-29 09:03:52 -0700194
Jim Van Verthf9e678d2017-02-15 15:46:52 -0500195 // Only support paths with bounds within kMaxDim by kMaxDim,
196 // scaled to have bounds within kMaxSize by kMaxSize.
Jim Van Verth77047542017-01-11 14:17:00 -0500197 // The goal is to accelerate rendering of lots of small paths that may be scaling.
Jim Van Verth5698c8a2017-10-12 10:18:44 -0400198 SkScalar scaleFactors[2] = { 1, 1 };
199 if (!args.fViewMatrix->hasPerspective() && !args.fViewMatrix->getMinMaxScales(scaleFactors)) {
Chris Dalton5ed44232017-09-07 13:22:46 -0600200 return CanDrawPath::kNo;
Jim Van Verthf9e678d2017-02-15 15:46:52 -0500201 }
bsalomon0a0f67e2016-06-28 11:56:42 -0700202 SkRect bounds = args.fShape->styledBounds();
Brian Osman116b33e2020-02-05 13:34:09 -0500203 SkScalar minDim = std::min(bounds.width(), bounds.height());
204 SkScalar maxDim = std::max(bounds.width(), bounds.height());
Jim Van Verthd25cc9b2017-02-16 10:01:46 -0500205 SkScalar minSize = minDim * SkScalarAbs(scaleFactors[0]);
206 SkScalar maxSize = maxDim * SkScalarAbs(scaleFactors[1]);
Chris Dalton5ed44232017-09-07 13:22:46 -0600207 if (maxDim > kMaxDim || kMinSize > minSize || maxSize > kMaxSize) {
208 return CanDrawPath::kNo;
209 }
bsalomon6266dca2016-03-11 06:22:00 -0800210
Chris Dalton5ed44232017-09-07 13:22:46 -0600211 return CanDrawPath::kYes;
jvanverthfa38a302014-10-06 05:59:05 -0700212}
213
jvanverthfa38a302014-10-06 05:59:05 -0700214////////////////////////////////////////////////////////////////////////////////
215
joshualitt5bf99f12015-03-13 11:47:42 -0700216// padding around path bounds to allow for antialiased pixels
217static const SkScalar kAntiAliasPad = 1.0f;
218
Brian Salomonfebbd232017-07-11 15:52:02 -0400219class GrSmallPathRenderer::SmallPathOp final : public GrMeshDrawOp {
220private:
221 using Helper = GrSimpleMeshDrawOpHelperWithStencil;
222
joshualitt5bf99f12015-03-13 11:47:42 -0700223public:
Brian Salomon25a88092016-12-01 09:36:50 -0500224 DEFINE_OP_CLASS_ID
reed1b55a962015-09-17 20:16:13 -0700225
Robert Phillipsd2e9f762018-03-07 11:54:37 -0500226 using ShapeCache = SkTDynamicHash<ShapeData, ShapeDataKey>;
Jim Van Verth83010462017-03-16 08:45:39 -0400227 using ShapeDataList = GrSmallPathRenderer::ShapeDataList;
joshualitt5bf99f12015-03-13 11:47:42 -0700228
Robert Phillipsb97da532019-02-12 15:24:12 -0500229 static std::unique_ptr<GrDrawOp> Make(GrRecordingContext* context,
Robert Phillips7c525e62018-06-12 10:11:12 -0400230 GrPaint&& paint,
231 const GrShape& shape,
232 const SkMatrix& viewMatrix,
233 GrDrawOpAtlas* atlas,
234 ShapeCache* shapeCache,
235 ShapeDataList* shapeList,
Brian Salomonfebbd232017-07-11 15:52:02 -0400236 bool gammaCorrect,
237 const GrUserStencilSettings* stencilSettings) {
Robert Phillips7c525e62018-06-12 10:11:12 -0400238 return Helper::FactoryHelper<SmallPathOp>(context, std::move(paint), shape, viewMatrix,
239 atlas, shapeCache, shapeList, gammaCorrect,
Brian Salomonfebbd232017-07-11 15:52:02 -0400240 stencilSettings);
joshualitt5bf99f12015-03-13 11:47:42 -0700241 }
Brian Salomond0a0a652016-12-15 15:25:22 -0500242
Brian Osmancf860852018-10-31 14:04:39 -0400243 SmallPathOp(Helper::MakeArgs helperArgs, const SkPMColor4f& color, const GrShape& shape,
Brian Salomonfebbd232017-07-11 15:52:02 -0400244 const SkMatrix& viewMatrix, GrDrawOpAtlas* atlas, ShapeCache* shapeCache,
245 ShapeDataList* shapeList, bool gammaCorrect,
246 const GrUserStencilSettings* stencilSettings)
Robert Phillips4133dc42020-03-11 15:55:55 -0400247 : INHERITED(ClassID())
248 , fHelper(helperArgs, GrAAType::kCoverage, stencilSettings) {
Brian Salomond0a0a652016-12-15 15:25:22 -0500249 SkASSERT(shape.hasUnstyledKey());
Jim Van Verth33632d82017-02-28 10:24:39 -0500250 // Compute bounds
Greg Daniel5faf4742019-10-01 15:14:44 -0400251 this->setTransformedBounds(shape.bounds(), viewMatrix, HasAABloat::kYes, IsHairline::kNo);
Jim Van Verth33632d82017-02-28 10:24:39 -0500252
Jim Van Verth83010462017-03-16 08:45:39 -0400253#if defined(SK_BUILD_FOR_ANDROID) && !defined(SK_BUILD_FOR_ANDROID_FRAMEWORK)
Jim Van Verth33632d82017-02-28 10:24:39 -0500254 fUsesDistanceField = true;
255#else
Jim Van Verth83010462017-03-16 08:45:39 -0400256 // only use distance fields on desktop and Android framework to save space in the atlas
Jim Van Verth33632d82017-02-28 10:24:39 -0500257 fUsesDistanceField = this->bounds().width() > kMaxMIP || this->bounds().height() > kMaxMIP;
258#endif
Jim Van Verth5698c8a2017-10-12 10:18:44 -0400259 // always use distance fields if in perspective
260 fUsesDistanceField = fUsesDistanceField || viewMatrix.hasPerspective();
Jim Van Verth33632d82017-02-28 10:24:39 -0500261
Jim Van Verth5698c8a2017-10-12 10:18:44 -0400262 fShapes.emplace_back(Entry{color, shape, viewMatrix});
Brian Salomond0a0a652016-12-15 15:25:22 -0500263
264 fAtlas = atlas;
265 fShapeCache = shapeCache;
266 fShapeList = shapeList;
267 fGammaCorrect = gammaCorrect;
Brian Salomond0a0a652016-12-15 15:25:22 -0500268 }
269
Brian Salomonfebbd232017-07-11 15:52:02 -0400270 const char* name() const override { return "SmallPathOp"; }
271
Chris Dalton1706cbf2019-05-21 19:35:29 -0600272 void visitProxies(const VisitProxyFunc& func) const override {
Robert Phillipsb493eeb2017-09-13 13:10:52 -0400273 fHelper.visitProxies(func);
274
Greg Daniel9715b6c2019-12-10 15:03:10 -0500275 const GrSurfaceProxyView* views = fAtlas->getViews();
Robert Phillips4bc70112018-03-01 10:24:02 -0500276 for (uint32_t i = 0; i < fAtlas->numActivePages(); ++i) {
Greg Daniel9715b6c2019-12-10 15:03:10 -0500277 SkASSERT(views[i].proxy());
278 func(views[i].proxy(), GrMipMapped::kNo);
Robert Phillipsb493eeb2017-09-13 13:10:52 -0400279 }
280 }
281
Brian Osman9a390ac2018-11-12 09:47:48 -0500282#ifdef SK_DEBUG
Brian Salomonfebbd232017-07-11 15:52:02 -0400283 SkString dumpInfo() const override {
284 SkString string;
285 for (const auto& geo : fShapes) {
Brian Osmancf860852018-10-31 14:04:39 -0400286 string.appendf("Color: 0x%08x\n", geo.fColor.toBytes_RGBA());
Brian Salomonfebbd232017-07-11 15:52:02 -0400287 }
288 string += fHelper.dumpInfo();
289 string += INHERITED::dumpInfo();
290 return string;
Brian Salomon92aee3d2016-12-21 09:20:25 -0500291 }
Brian Osman9a390ac2018-11-12 09:47:48 -0500292#endif
Brian Salomon92aee3d2016-12-21 09:20:25 -0500293
Brian Salomonfebbd232017-07-11 15:52:02 -0400294 FixedFunctionFlags fixedFunctionFlags() const override { return fHelper.fixedFunctionFlags(); }
295
Chris Dalton6ce447a2019-06-23 18:07:38 -0600296 GrProcessorSet::Analysis finalize(
297 const GrCaps& caps, const GrAppliedClip* clip, bool hasMixedSampledCoverage,
298 GrClampType clampType) override {
Chris Daltonb8fff0d2019-03-05 10:11:58 -0700299 return fHelper.finalizeProcessors(
Chris Dalton6ce447a2019-06-23 18:07:38 -0600300 caps, clip, hasMixedSampledCoverage, clampType,
301 GrProcessorAnalysisCoverage::kSingleChannel, &fShapes.front().fColor, &fWideColor);
joshualitt5bf99f12015-03-13 11:47:42 -0700302 }
303
Brian Salomonfebbd232017-07-11 15:52:02 -0400304private:
bsalomonb5238a72015-05-05 07:49:49 -0700305 struct FlushInfo {
Hal Canary144caf52016-11-07 17:57:18 -0500306 sk_sp<const GrBuffer> fVertexBuffer;
307 sk_sp<const GrBuffer> fIndexBuffer;
Robert Phillips7cd0bfe2019-11-20 16:08:10 -0500308 GrGeometryProcessor* fGeometryProcessor;
Chris Dalton304e14d2020-03-17 14:29:06 -0600309 const GrSurfaceProxy** fPrimProcProxies;
bsalomonb5238a72015-05-05 07:49:49 -0700310 int fVertexOffset;
311 int fInstancesToFlush;
312 };
313
Robert Phillips2669a7b2020-03-12 12:07:19 -0400314 GrProgramInfo* programInfo() override {
315 // TODO [PI]: implement
316 return nullptr;
317 }
318
Robert Phillips4133dc42020-03-11 15:55:55 -0400319 void onCreateProgramInfo(const GrCaps*,
320 SkArenaAlloc*,
Brian Salomon8afde5f2020-04-01 16:22:00 -0400321 const GrSurfaceProxyView* writeView,
Robert Phillips4133dc42020-03-11 15:55:55 -0400322 GrAppliedClip&&,
323 const GrXferProcessor::DstProxyView&) override {
324 // TODO [PI]: implement
325 }
326
Robert Phillips2669a7b2020-03-12 12:07:19 -0400327 void onPrePrepareDraws(GrRecordingContext*,
Brian Salomon8afde5f2020-04-01 16:22:00 -0400328 const GrSurfaceProxyView* writeView,
Robert Phillips2669a7b2020-03-12 12:07:19 -0400329 GrAppliedClip*,
330 const GrXferProcessor::DstProxyView&) override {
331 // TODO [PI]: implement
332 }
333
Brian Salomon91326c32017-08-09 16:02:19 -0400334 void onPrepareDraws(Target* target) override {
Brian Salomond0a0a652016-12-15 15:25:22 -0500335 int instanceCount = fShapes.count();
joshualitt5bf99f12015-03-13 11:47:42 -0700336
Brian Salomon7eae3e02018-08-07 14:02:38 +0000337 static constexpr int kMaxTextures = GrDistanceFieldPathGeoProc::kMaxTextures;
Brian Salomon4dea72a2019-12-18 10:43:10 -0500338 static_assert(GrBitmapTextGeoProc::kMaxTextures == kMaxTextures);
Brian Salomon7eae3e02018-08-07 14:02:38 +0000339
Chris Dalton07cdcfc92019-02-26 11:13:22 -0700340 FlushInfo flushInfo;
Chris Dalton304e14d2020-03-17 14:29:06 -0600341 flushInfo.fPrimProcProxies = target->allocPrimProcProxyPtrs(kMaxTextures);
Brian Salomon7eae3e02018-08-07 14:02:38 +0000342 int numActiveProxies = fAtlas->numActivePages();
Greg Daniel9715b6c2019-12-10 15:03:10 -0500343 const auto views = fAtlas->getViews();
Brian Salomon7eae3e02018-08-07 14:02:38 +0000344 for (int i = 0; i < numActiveProxies; ++i) {
Greg Danielb20d7e52019-09-03 13:54:39 -0400345 // This op does not know its atlas proxies when it is added to a GrOpsTasks, so the
346 // proxies don't get added during the visitProxies call. Thus we add them here.
Chris Dalton304e14d2020-03-17 14:29:06 -0600347 flushInfo.fPrimProcProxies[i] = views[i].proxy();
Greg Daniel9715b6c2019-12-10 15:03:10 -0500348 target->sampledProxyArray()->push_back(views[i].proxy());
Brian Salomon7eae3e02018-08-07 14:02:38 +0000349 }
Brian Salomon49348902018-06-26 09:12:38 -0400350
joshualitt5bf99f12015-03-13 11:47:42 -0700351 // Setup GrGeometryProcessor
Jim Van Verth5698c8a2017-10-12 10:18:44 -0400352 const SkMatrix& ctm = fShapes[0].fViewMatrix;
Jim Van Verth33632d82017-02-28 10:24:39 -0500353 if (fUsesDistanceField) {
Jim Van Verth33632d82017-02-28 10:24:39 -0500354 uint32_t flags = 0;
Jim Van Verth5698c8a2017-10-12 10:18:44 -0400355 // Still need to key off of ctm to pick the right shader for the transformed quad
Jim Van Verth33632d82017-02-28 10:24:39 -0500356 flags |= ctm.isScaleTranslate() ? kScaleOnly_DistanceFieldEffectFlag : 0;
357 flags |= ctm.isSimilarity() ? kSimilarity_DistanceFieldEffectFlag : 0;
358 flags |= fGammaCorrect ? kGammaCorrect_DistanceFieldEffectFlag : 0;
359
Jim Van Verth5698c8a2017-10-12 10:18:44 -0400360 const SkMatrix* matrix;
Jim Van Verth33632d82017-02-28 10:24:39 -0500361 SkMatrix invert;
Jim Van Verth5698c8a2017-10-12 10:18:44 -0400362 if (ctm.hasPerspective()) {
363 matrix = &ctm;
364 } else if (fHelper.usesLocalCoords()) {
365 if (!ctm.invert(&invert)) {
Jim Van Verth33632d82017-02-28 10:24:39 -0500366 return;
367 }
Jim Van Verth5698c8a2017-10-12 10:18:44 -0400368 matrix = &invert;
369 } else {
370 matrix = &SkMatrix::I();
371 }
Brian Salomonccb61422020-01-09 10:46:36 -0500372 flushInfo.fGeometryProcessor = GrDistanceFieldPathGeoProc::Make(
373 target->allocator(), *target->caps().shaderCaps(), *matrix, fWideColor,
374 fAtlas->getViews(), fAtlas->numActivePages(), GrSamplerState::Filter::kBilerp,
375 flags);
Jim Van Verth5698c8a2017-10-12 10:18:44 -0400376 } else {
377 SkMatrix invert;
378 if (fHelper.usesLocalCoords()) {
379 if (!ctm.invert(&invert)) {
Jim Van Verth5698c8a2017-10-12 10:18:44 -0400380 return;
381 }
Jim Van Verth33632d82017-02-28 10:24:39 -0500382 }
383
Brian Salomonccb61422020-01-09 10:46:36 -0500384 flushInfo.fGeometryProcessor = GrBitmapTextGeoProc::Make(
385 target->allocator(), *target->caps().shaderCaps(), this->color(), fWideColor,
386 fAtlas->getViews(), fAtlas->numActivePages(), GrSamplerState::Filter::kNearest,
387 kA8_GrMaskFormat, invert, false);
Jim Van Verth33632d82017-02-28 10:24:39 -0500388 }
joshualitt5bf99f12015-03-13 11:47:42 -0700389
joshualitt5bf99f12015-03-13 11:47:42 -0700390 // allocate vertices
Brian Osman0dd43022018-11-16 15:53:26 -0500391 const size_t kVertexStride = flushInfo.fGeometryProcessor->vertexStride();
Greg Danield5b45932018-06-07 13:15:10 -0400392
393 // We need to make sure we don't overflow a 32 bit int when we request space in the
394 // makeVertexSpace call below.
Robert Phillipsee08d522019-10-28 16:34:44 -0400395 if (instanceCount > SK_MaxS32 / GrResourceProvider::NumVertsPerNonAAQuad()) {
Greg Danield5b45932018-06-07 13:15:10 -0400396 return;
397 }
Robert Phillipsee08d522019-10-28 16:34:44 -0400398 GrVertexWriter vertices{ target->makeVertexSpace(
399 kVertexStride, GrResourceProvider::NumVertsPerNonAAQuad() * instanceCount,
400 &flushInfo.fVertexBuffer, &flushInfo.fVertexOffset)};
401
402 flushInfo.fIndexBuffer = target->resourceProvider()->refNonAAQuadIndexBuffer();
Brian Osman0dd43022018-11-16 15:53:26 -0500403 if (!vertices.fPtr || !flushInfo.fIndexBuffer) {
joshualitt5bf99f12015-03-13 11:47:42 -0700404 SkDebugf("Could not allocate vertices\n");
405 return;
406 }
407
bsalomonb5238a72015-05-05 07:49:49 -0700408 flushInfo.fInstancesToFlush = 0;
joshualitt5bf99f12015-03-13 11:47:42 -0700409 for (int i = 0; i < instanceCount; i++) {
Brian Salomond0a0a652016-12-15 15:25:22 -0500410 const Entry& args = fShapes[i];
joshualitt5bf99f12015-03-13 11:47:42 -0700411
Jim Van Verth33632d82017-02-28 10:24:39 -0500412 ShapeData* shapeData;
Jim Van Verth33632d82017-02-28 10:24:39 -0500413 if (fUsesDistanceField) {
414 // get mip level
Jim Van Verth5698c8a2017-10-12 10:18:44 -0400415 SkScalar maxScale;
Jim Van Verth33632d82017-02-28 10:24:39 -0500416 const SkRect& bounds = args.fShape.bounds();
Jim Van Verth5698c8a2017-10-12 10:18:44 -0400417 if (args.fViewMatrix.hasPerspective()) {
418 // approximate the scale since we can't get it from the matrix
419 SkRect xformedBounds;
420 args.fViewMatrix.mapRect(&xformedBounds, bounds);
Brian Osman788b9162020-02-07 10:36:46 -0500421 maxScale = SkScalarAbs(std::max(xformedBounds.width() / bounds.width(),
Jim Van Verth51245932017-10-12 11:07:29 -0400422 xformedBounds.height() / bounds.height()));
Jim Van Verth5698c8a2017-10-12 10:18:44 -0400423 } else {
424 maxScale = SkScalarAbs(args.fViewMatrix.getMaxScale());
425 }
Brian Osman116b33e2020-02-05 13:34:09 -0500426 SkScalar maxDim = std::max(bounds.width(), bounds.height());
Jim Van Verth33632d82017-02-28 10:24:39 -0500427 // We try to create the DF at a 2^n scaled path resolution (1/2, 1, 2, 4, etc.)
428 // In the majority of cases this will yield a crisper rendering.
429 SkScalar mipScale = 1.0f;
430 // Our mipscale is the maxScale clamped to the next highest power of 2
431 if (maxScale <= SK_ScalarHalf) {
432 SkScalar log = SkScalarFloorToScalar(SkScalarLog2(SkScalarInvert(maxScale)));
433 mipScale = SkScalarPow(2, -log);
434 } else if (maxScale > SK_Scalar1) {
435 SkScalar log = SkScalarCeilToScalar(SkScalarLog2(maxScale));
436 mipScale = SkScalarPow(2, log);
joshualitt5bf99f12015-03-13 11:47:42 -0700437 }
Jim Van Verth33632d82017-02-28 10:24:39 -0500438 SkASSERT(maxScale <= mipScale);
Jim Van Verthecdb6862016-12-13 18:17:47 -0500439
Jim Van Verth33632d82017-02-28 10:24:39 -0500440 SkScalar mipSize = mipScale*SkScalarAbs(maxDim);
441 // For sizes less than kIdealMinMIP we want to use as large a distance field as we can
442 // so we can preserve as much detail as possible. However, we can't scale down more
443 // than a 1/4 of the size without artifacts. So the idea is that we pick the mipsize
444 // just bigger than the ideal, and then scale down until we are no more than 4x the
445 // original mipsize.
446 if (mipSize < kIdealMinMIP) {
447 SkScalar newMipSize = mipSize;
448 do {
449 newMipSize *= 2;
450 } while (newMipSize < kIdealMinMIP);
451 while (newMipSize > 4 * mipSize) {
452 newMipSize *= 0.25f;
453 }
454 mipSize = newMipSize;
joshualitt5bf99f12015-03-13 11:47:42 -0700455 }
Brian Osman788b9162020-02-07 10:36:46 -0500456 SkScalar desiredDimension = std::min(mipSize, kMaxMIP);
Jim Van Verthc0bc1bb2017-02-27 18:21:16 -0500457
Jim Van Verth33632d82017-02-28 10:24:39 -0500458 // check to see if df path is cached
Robert Phillipsd2e9f762018-03-07 11:54:37 -0500459 ShapeDataKey key(args.fShape, SkScalarCeilToInt(desiredDimension));
Jim Van Verth33632d82017-02-28 10:24:39 -0500460 shapeData = fShapeCache->find(key);
Herb Derby4d721712020-01-24 14:31:16 -0500461 if (nullptr == shapeData || !fAtlas->hasID(shapeData->fPlotLocator)) {
Jim Van Verth33632d82017-02-28 10:24:39 -0500462 // Remove the stale cache entry
463 if (shapeData) {
464 fShapeCache->remove(shapeData->fKey);
465 fShapeList->remove(shapeData);
466 delete shapeData;
467 }
468 SkScalar scale = desiredDimension / maxDim;
469
470 shapeData = new ShapeData;
471 if (!this->addDFPathToAtlas(target,
472 &flushInfo,
Robert Phillips4bc70112018-03-01 10:24:02 -0500473 fAtlas,
Jim Van Verth33632d82017-02-28 10:24:39 -0500474 shapeData,
475 args.fShape,
476 SkScalarCeilToInt(desiredDimension),
477 scale)) {
478 delete shapeData;
Jim Van Verth33632d82017-02-28 10:24:39 -0500479 continue;
480 }
Jim Van Verthc0bc1bb2017-02-27 18:21:16 -0500481 }
Jim Van Verth33632d82017-02-28 10:24:39 -0500482 } else {
483 // check to see if bitmap path is cached
Robert Phillipsd2e9f762018-03-07 11:54:37 -0500484 ShapeDataKey key(args.fShape, args.fViewMatrix);
Jim Van Verth33632d82017-02-28 10:24:39 -0500485 shapeData = fShapeCache->find(key);
Herb Derby4d721712020-01-24 14:31:16 -0500486 if (nullptr == shapeData || !fAtlas->hasID(shapeData->fPlotLocator)) {
Jim Van Verth33632d82017-02-28 10:24:39 -0500487 // Remove the stale cache entry
488 if (shapeData) {
489 fShapeCache->remove(shapeData->fKey);
490 fShapeList->remove(shapeData);
491 delete shapeData;
492 }
493
494 shapeData = new ShapeData;
495 if (!this->addBMPathToAtlas(target,
Robert Phillips8296e752017-08-25 08:45:21 -0400496 &flushInfo,
Robert Phillips4bc70112018-03-01 10:24:02 -0500497 fAtlas,
Robert Phillips8296e752017-08-25 08:45:21 -0400498 shapeData,
499 args.fShape,
Jim Van Verth5698c8a2017-10-12 10:18:44 -0400500 args.fViewMatrix)) {
Jim Van Verth33632d82017-02-28 10:24:39 -0500501 delete shapeData;
Jim Van Verth33632d82017-02-28 10:24:39 -0500502 continue;
503 }
504 }
joshualitt5bf99f12015-03-13 11:47:42 -0700505 }
506
Robert Phillips40a29d72018-01-18 12:59:22 -0500507 auto uploadTarget = target->deferredUploadTarget();
Herb Derby4d721712020-01-24 14:31:16 -0500508 fAtlas->setLastUseToken(
509 shapeData->fPlotLocator, uploadTarget->tokenTracker()->nextDrawToken());
joshualitt5bf99f12015-03-13 11:47:42 -0700510
Brian Osmanc906d252018-12-04 11:17:46 -0500511 this->writePathVertices(fAtlas, vertices, GrVertexColor(args.fColor, fWideColor),
512 args.fViewMatrix, shapeData);
bsalomonb5238a72015-05-05 07:49:49 -0700513 flushInfo.fInstancesToFlush++;
joshualitt5bf99f12015-03-13 11:47:42 -0700514 }
515
bsalomon75398562015-08-17 12:55:38 -0700516 this->flush(target, &flushInfo);
joshualitt5bf99f12015-03-13 11:47:42 -0700517 }
518
Robert Phillipsd2e9f762018-03-07 11:54:37 -0500519 bool addToAtlas(GrMeshDrawOp::Target* target, FlushInfo* flushInfo, GrDrawOpAtlas* atlas,
520 int width, int height, const void* image,
Herb Derby4d721712020-01-24 14:31:16 -0500521 GrDrawOpAtlas::PlotLocator* plotLocator, SkIPoint16* atlasLocation) const {
Robert Phillipsd2e9f762018-03-07 11:54:37 -0500522 auto resourceProvider = target->resourceProvider();
523 auto uploadTarget = target->deferredUploadTarget();
524
Herb Derby4d721712020-01-24 14:31:16 -0500525 GrDrawOpAtlas::ErrorCode code = atlas->addToAtlas(resourceProvider, plotLocator,
Robert Phillipsd2e9f762018-03-07 11:54:37 -0500526 uploadTarget, width, height,
527 image, atlasLocation);
528 if (GrDrawOpAtlas::ErrorCode::kError == code) {
529 return false;
530 }
531
532 if (GrDrawOpAtlas::ErrorCode::kTryAgain == code) {
533 this->flush(target, flushInfo);
534
Herb Derby4d721712020-01-24 14:31:16 -0500535 code = atlas->addToAtlas(resourceProvider, plotLocator, uploadTarget, width, height,
Robert Phillipsd2e9f762018-03-07 11:54:37 -0500536 image, atlasLocation);
537 }
538
539 return GrDrawOpAtlas::ErrorCode::kSucceeded == code;
540 }
541
Brian Salomone5b399e2017-07-19 13:50:54 -0400542 bool addDFPathToAtlas(GrMeshDrawOp::Target* target, FlushInfo* flushInfo,
Brian Salomond3ccb0a2017-04-03 10:38:00 -0400543 GrDrawOpAtlas* atlas, ShapeData* shapeData, const GrShape& shape,
544 uint32_t dimension, SkScalar scale) const {
Robert Phillips4bc70112018-03-01 10:24:02 -0500545
bsalomonee432412016-06-27 07:18:18 -0700546 const SkRect& bounds = shape.bounds();
joshualitt5bf99f12015-03-13 11:47:42 -0700547
548 // generate bounding rect for bitmap draw
549 SkRect scaledBounds = bounds;
550 // scale to mip level size
551 scaledBounds.fLeft *= scale;
552 scaledBounds.fTop *= scale;
553 scaledBounds.fRight *= scale;
554 scaledBounds.fBottom *= scale;
Jim Van Verthecdb6862016-12-13 18:17:47 -0500555 // subtract out integer portion of origin
556 // (SDF created will be placed with fractional offset burnt in)
Jim Van Verth07b6ad02016-12-20 10:23:09 -0500557 SkScalar dx = SkScalarFloorToScalar(scaledBounds.fLeft);
558 SkScalar dy = SkScalarFloorToScalar(scaledBounds.fTop);
joshualitt5bf99f12015-03-13 11:47:42 -0700559 scaledBounds.offset(-dx, -dy);
560 // get integer boundary
561 SkIRect devPathBounds;
562 scaledBounds.roundOut(&devPathBounds);
563 // pad to allow room for antialiasing
jvanverthecbed9d2015-12-18 10:07:52 -0800564 const int intPad = SkScalarCeilToInt(kAntiAliasPad);
Jim Van Verthecdb6862016-12-13 18:17:47 -0500565 // place devBounds at origin
566 int width = devPathBounds.width() + 2*intPad;
567 int height = devPathBounds.height() + 2*intPad;
568 devPathBounds = SkIRect::MakeWH(width, height);
Robert Phillips3cf781d2017-08-22 18:25:11 -0400569 SkScalar translateX = intPad - dx;
570 SkScalar translateY = intPad - dy;
joshualitt5bf99f12015-03-13 11:47:42 -0700571
572 // draw path to bitmap
573 SkMatrix drawMatrix;
Jim Van Verthecdb6862016-12-13 18:17:47 -0500574 drawMatrix.setScale(scale, scale);
Robert Phillips3cf781d2017-08-22 18:25:11 -0400575 drawMatrix.postTranslate(translateX, translateY);
joshualitt5bf99f12015-03-13 11:47:42 -0700576
jvanverth512e4372015-11-23 11:50:02 -0800577 SkASSERT(devPathBounds.fLeft == 0);
578 SkASSERT(devPathBounds.fTop == 0);
Jim Van Verth25b8ca12017-02-17 14:02:13 -0500579 SkASSERT(devPathBounds.width() > 0);
580 SkASSERT(devPathBounds.height() > 0);
bsalomonf93f5152016-10-26 08:00:00 -0700581
joel.liang8cbb4242017-01-09 18:39:43 -0800582 // setup signed distance field storage
583 SkIRect dfBounds = devPathBounds.makeOutset(SK_DistanceFieldPad, SK_DistanceFieldPad);
584 width = dfBounds.width();
585 height = dfBounds.height();
rmistry47842252016-12-21 04:25:18 -0800586 // TODO We should really generate this directly into the plot somehow
587 SkAutoSMalloc<1024> dfStorage(width * height * sizeof(unsigned char));
joel.liang6d2f73c2016-12-20 18:58:53 -0800588
joel.liang8cbb4242017-01-09 18:39:43 -0800589 SkPath path;
590 shape.asPath(&path);
joel.liang8cbb4242017-01-09 18:39:43 -0800591 // Generate signed distance field directly from SkPath
592 bool succeed = GrGenerateDistanceFieldFromPath((unsigned char*)dfStorage.get(),
593 path, drawMatrix,
594 width, height, width * sizeof(unsigned char));
595 if (!succeed) {
joel.liang8cbb4242017-01-09 18:39:43 -0800596 // setup bitmap backing
597 SkAutoPixmapStorage dst;
598 if (!dst.tryAlloc(SkImageInfo::MakeA8(devPathBounds.width(),
599 devPathBounds.height()))) {
600 return false;
601 }
Mike Reedf0ffb892017-10-03 14:47:21 -0400602 sk_bzero(dst.writable_addr(), dst.computeByteSize());
joel.liang8cbb4242017-01-09 18:39:43 -0800603
604 // rasterize path
605 SkPaint paint;
606 paint.setStyle(SkPaint::kFill_Style);
607 paint.setAntiAlias(true);
608
609 SkDraw draw;
joel.liang8cbb4242017-01-09 18:39:43 -0800610
611 SkRasterClip rasterClip;
612 rasterClip.setRect(devPathBounds);
613 draw.fRC = &rasterClip;
614 draw.fMatrix = &drawMatrix;
615 draw.fDst = dst;
616
617 draw.drawPathCoverage(path, paint);
618
619 // Generate signed distance field
620 SkGenerateDistanceFieldFromA8Image((unsigned char*)dfStorage.get(),
621 (const unsigned char*)dst.addr(),
622 dst.width(), dst.height(), dst.rowBytes());
joel.liang8cbb4242017-01-09 18:39:43 -0800623 }
joshualitt5bf99f12015-03-13 11:47:42 -0700624
625 // add to atlas
626 SkIPoint16 atlasLocation;
Herb Derby4d721712020-01-24 14:31:16 -0500627 GrDrawOpAtlas::PlotLocator plotLocator;
Robert Phillipsd2e9f762018-03-07 11:54:37 -0500628
629 if (!this->addToAtlas(target, flushInfo, atlas,
Herb Derby4d721712020-01-24 14:31:16 -0500630 width, height, dfStorage.get(), &plotLocator, &atlasLocation)) {
Robert Phillipsd2e9f762018-03-07 11:54:37 -0500631 return false;
joshualitt5bf99f12015-03-13 11:47:42 -0700632 }
633
634 // add to cache
bsalomonee432412016-06-27 07:18:18 -0700635 shapeData->fKey.set(shape, dimension);
Herb Derby4d721712020-01-24 14:31:16 -0500636 shapeData->fPlotLocator = plotLocator;
Jim Van Verthecdb6862016-12-13 18:17:47 -0500637
Robert Phillips3cf781d2017-08-22 18:25:11 -0400638 shapeData->fBounds = SkRect::Make(devPathBounds);
639 shapeData->fBounds.offset(-translateX, -translateY);
640 shapeData->fBounds.fLeft /= scale;
641 shapeData->fBounds.fTop /= scale;
642 shapeData->fBounds.fRight /= scale;
643 shapeData->fBounds.fBottom /= scale;
Jim Van Verthecdb6862016-12-13 18:17:47 -0500644
Jim Van Verthfb395102020-02-03 10:11:19 -0500645 // Pack the page index into the u and v texture coords
Herb Derby4d721712020-01-24 14:31:16 -0500646 uint16_t pageIndex = GrDrawOpAtlas::GetPageIndexFromID(plotLocator);
Jim Van Verthfb395102020-02-03 10:11:19 -0500647 uint16_t left, top, right, bottom;
648 std::tie(left, top, right, bottom) =
649 std::make_tuple(atlasLocation.fX + SK_DistanceFieldPad,
650 atlasLocation.fY + SK_DistanceFieldPad,
651 atlasLocation.fX + SK_DistanceFieldPad + devPathBounds.width(),
652 atlasLocation.fY + SK_DistanceFieldPad + devPathBounds.height());
653 std::tie(left, top) =
654 GrDrawOpAtlas::PackIndexInTexCoords(left, top, pageIndex);
655 std::tie(right, bottom) =
656 GrDrawOpAtlas::PackIndexInTexCoords(right, bottom, pageIndex);
657 shapeData->fTextureCoords.set(left, top, right, bottom);
joshualitt5bf99f12015-03-13 11:47:42 -0700658
bsalomonee432412016-06-27 07:18:18 -0700659 fShapeCache->add(shapeData);
660 fShapeList->addToTail(shapeData);
joshualitt5bf99f12015-03-13 11:47:42 -0700661#ifdef DF_PATH_TRACKING
662 ++g_NumCachedPaths;
663#endif
664 return true;
665 }
666
Brian Salomone5b399e2017-07-19 13:50:54 -0400667 bool addBMPathToAtlas(GrMeshDrawOp::Target* target, FlushInfo* flushInfo,
Brian Salomond3ccb0a2017-04-03 10:38:00 -0400668 GrDrawOpAtlas* atlas, ShapeData* shapeData, const GrShape& shape,
669 const SkMatrix& ctm) const {
Jim Van Verth33632d82017-02-28 10:24:39 -0500670 const SkRect& bounds = shape.bounds();
671 if (bounds.isEmpty()) {
672 return false;
673 }
674 SkMatrix drawMatrix(ctm);
Jim Van Vertha64a5852018-03-09 14:16:31 -0500675 SkScalar tx = ctm.getTranslateX();
676 SkScalar ty = ctm.getTranslateY();
677 tx -= SkScalarFloorToScalar(tx);
678 ty -= SkScalarFloorToScalar(ty);
679 drawMatrix.set(SkMatrix::kMTransX, tx);
680 drawMatrix.set(SkMatrix::kMTransY, ty);
Jim Van Verth33632d82017-02-28 10:24:39 -0500681 SkRect shapeDevBounds;
682 drawMatrix.mapRect(&shapeDevBounds, bounds);
683 SkScalar dx = SkScalarFloorToScalar(shapeDevBounds.fLeft);
684 SkScalar dy = SkScalarFloorToScalar(shapeDevBounds.fTop);
685
686 // get integer boundary
687 SkIRect devPathBounds;
688 shapeDevBounds.roundOut(&devPathBounds);
689 // pad to allow room for antialiasing
690 const int intPad = SkScalarCeilToInt(kAntiAliasPad);
691 // place devBounds at origin
692 int width = devPathBounds.width() + 2 * intPad;
693 int height = devPathBounds.height() + 2 * intPad;
694 devPathBounds = SkIRect::MakeWH(width, height);
695 SkScalar translateX = intPad - dx;
696 SkScalar translateY = intPad - dy;
697
698 SkASSERT(devPathBounds.fLeft == 0);
699 SkASSERT(devPathBounds.fTop == 0);
700 SkASSERT(devPathBounds.width() > 0);
701 SkASSERT(devPathBounds.height() > 0);
702
703 SkPath path;
704 shape.asPath(&path);
705 // setup bitmap backing
706 SkAutoPixmapStorage dst;
707 if (!dst.tryAlloc(SkImageInfo::MakeA8(devPathBounds.width(),
708 devPathBounds.height()))) {
709 return false;
710 }
Mike Reedf0ffb892017-10-03 14:47:21 -0400711 sk_bzero(dst.writable_addr(), dst.computeByteSize());
Jim Van Verth33632d82017-02-28 10:24:39 -0500712
713 // rasterize path
714 SkPaint paint;
715 paint.setStyle(SkPaint::kFill_Style);
716 paint.setAntiAlias(true);
717
718 SkDraw draw;
Jim Van Verth33632d82017-02-28 10:24:39 -0500719
720 SkRasterClip rasterClip;
721 rasterClip.setRect(devPathBounds);
722 draw.fRC = &rasterClip;
723 drawMatrix.postTranslate(translateX, translateY);
724 draw.fMatrix = &drawMatrix;
725 draw.fDst = dst;
726
727 draw.drawPathCoverage(path, paint);
728
729 // add to atlas
730 SkIPoint16 atlasLocation;
Herb Derby4d721712020-01-24 14:31:16 -0500731 GrDrawOpAtlas::PlotLocator plotLocator;
Robert Phillipsd2e9f762018-03-07 11:54:37 -0500732
Herb Derby4d721712020-01-24 14:31:16 -0500733 if (!this->addToAtlas(target, flushInfo, atlas, dst.width(), dst.height(),
734 dst.addr(), &plotLocator, &atlasLocation)) {
Robert Phillipsd2e9f762018-03-07 11:54:37 -0500735 return false;
Jim Van Verth33632d82017-02-28 10:24:39 -0500736 }
737
738 // add to cache
739 shapeData->fKey.set(shape, ctm);
Herb Derby4d721712020-01-24 14:31:16 -0500740 shapeData->fPlotLocator = plotLocator;
Jim Van Verth33632d82017-02-28 10:24:39 -0500741
Jim Van Verth33632d82017-02-28 10:24:39 -0500742 shapeData->fBounds = SkRect::Make(devPathBounds);
743 shapeData->fBounds.offset(-translateX, -translateY);
744
Jim Van Verthfb395102020-02-03 10:11:19 -0500745 // Pack the page index into the u and v texture coords
Herb Derby4d721712020-01-24 14:31:16 -0500746 uint16_t pageIndex = GrDrawOpAtlas::GetPageIndexFromID(plotLocator);
Jim Van Verthfb395102020-02-03 10:11:19 -0500747 uint16_t left, top, right, bottom;
748 std::tie(left, top, right, bottom) = std::make_tuple(atlasLocation.fX, atlasLocation.fY,
749 atlasLocation.fX+width,
750 atlasLocation.fY+height);
751 std::tie(left, top) =
752 GrDrawOpAtlas::PackIndexInTexCoords(left, top, pageIndex);
753 std::tie(right, bottom) =
754 GrDrawOpAtlas::PackIndexInTexCoords(right, bottom, pageIndex);
755 shapeData->fTextureCoords.set(left, top, right, bottom);
Jim Van Verth33632d82017-02-28 10:24:39 -0500756
757 fShapeCache->add(shapeData);
758 fShapeList->addToTail(shapeData);
759#ifdef DF_PATH_TRACKING
760 ++g_NumCachedPaths;
761#endif
762 return true;
763 }
764
Brian Salomon29b60c92017-10-31 14:42:10 -0400765 void writePathVertices(GrDrawOpAtlas* atlas,
Brian Osman0dd43022018-11-16 15:53:26 -0500766 GrVertexWriter& vertices,
Brian Osmanc906d252018-12-04 11:17:46 -0500767 const GrVertexColor& color,
Jim Van Verth5698c8a2017-10-12 10:18:44 -0400768 const SkMatrix& ctm,
bsalomonee432412016-06-27 07:18:18 -0700769 const ShapeData* shapeData) const {
Brian Osman0dd43022018-11-16 15:53:26 -0500770 SkRect translatedBounds(shapeData->fBounds);
Jim Van Verth5698c8a2017-10-12 10:18:44 -0400771 if (!fUsesDistanceField) {
Jim Van Vertha64a5852018-03-09 14:16:31 -0500772 translatedBounds.offset(SkScalarFloorToScalar(ctm.get(SkMatrix::kMTransX)),
773 SkScalarFloorToScalar(ctm.get(SkMatrix::kMTransY)));
Jim Van Verth5698c8a2017-10-12 10:18:44 -0400774 }
Jim Van Verth77047542017-01-11 14:17:00 -0500775
Brian Osman0dd43022018-11-16 15:53:26 -0500776 // set up texture coordinates
777 GrVertexWriter::TriStrip<uint16_t> texCoords{
778 (uint16_t)shapeData->fTextureCoords.fLeft,
779 (uint16_t)shapeData->fTextureCoords.fTop,
780 (uint16_t)shapeData->fTextureCoords.fRight,
781 (uint16_t)shapeData->fTextureCoords.fBottom
782 };
783
Jim Van Verth5698c8a2017-10-12 10:18:44 -0400784 if (fUsesDistanceField && !ctm.hasPerspective()) {
Michael Ludwige9c57d32019-02-13 13:39:39 -0500785 vertices.writeQuad(GrQuad::MakeFromRect(translatedBounds, ctm),
Brian Osman0dd43022018-11-16 15:53:26 -0500786 color,
787 texCoords);
Jim Van Verth5698c8a2017-10-12 10:18:44 -0400788 } else {
Brian Osman0dd43022018-11-16 15:53:26 -0500789 vertices.writeQuad(GrVertexWriter::TriStripFromRect(translatedBounds),
790 color,
791 texCoords);
Jim Van Verth5698c8a2017-10-12 10:18:44 -0400792 }
joshualitt5bf99f12015-03-13 11:47:42 -0700793 }
794
Brian Salomone5b399e2017-07-19 13:50:54 -0400795 void flush(GrMeshDrawOp::Target* target, FlushInfo* flushInfo) const {
Robert Phillips7cd0bfe2019-11-20 16:08:10 -0500796 GrGeometryProcessor* gp = flushInfo->fGeometryProcessor;
Brian Salomon7eae3e02018-08-07 14:02:38 +0000797 int numAtlasTextures = SkToInt(fAtlas->numActivePages());
Greg Daniel9715b6c2019-12-10 15:03:10 -0500798 const auto views = fAtlas->getViews();
Brian Salomon7eae3e02018-08-07 14:02:38 +0000799 if (gp->numTextureSamplers() != numAtlasTextures) {
800 for (int i = gp->numTextureSamplers(); i < numAtlasTextures; ++i) {
Chris Dalton304e14d2020-03-17 14:29:06 -0600801 flushInfo->fPrimProcProxies[i] = views[i].proxy();
Greg Danielb20d7e52019-09-03 13:54:39 -0400802 // This op does not know its atlas proxies when it is added to a GrOpsTasks, so the
803 // proxies don't get added during the visitProxies call. Thus we add them here.
Greg Daniel9715b6c2019-12-10 15:03:10 -0500804 target->sampledProxyArray()->push_back(views[i].proxy());
Brian Salomon7eae3e02018-08-07 14:02:38 +0000805 }
Jim Van Vertheafa64b2017-09-18 10:05:00 -0400806 // During preparation the number of atlas pages has increased.
807 // Update the proxies used in the GP to match.
808 if (fUsesDistanceField) {
Greg Daniel9715b6c2019-12-10 15:03:10 -0500809 reinterpret_cast<GrDistanceFieldPathGeoProc*>(gp)->addNewViews(
Brian Salomonccb61422020-01-09 10:46:36 -0500810 fAtlas->getViews(), fAtlas->numActivePages(),
811 GrSamplerState::Filter::kBilerp);
Jim Van Vertheafa64b2017-09-18 10:05:00 -0400812 } else {
Greg Daniel9715b6c2019-12-10 15:03:10 -0500813 reinterpret_cast<GrBitmapTextGeoProc*>(gp)->addNewViews(
Brian Salomonccb61422020-01-09 10:46:36 -0500814 fAtlas->getViews(), fAtlas->numActivePages(),
815 GrSamplerState::Filter::kNearest);
Jim Van Vertheafa64b2017-09-18 10:05:00 -0400816 }
817 }
818
bsalomon6d6b6ad2016-07-13 14:45:28 -0700819 if (flushInfo->fInstancesToFlush) {
Chris Daltoneb694b72020-03-16 09:25:50 -0600820 GrSimpleMesh* mesh = target->allocMesh();
Robert Phillipsee08d522019-10-28 16:34:44 -0400821 mesh->setIndexedPatterned(flushInfo->fIndexBuffer,
822 GrResourceProvider::NumIndicesPerNonAAQuad(),
Robert Phillipsee08d522019-10-28 16:34:44 -0400823 flushInfo->fInstancesToFlush,
Chris Dalton37c7bdd2020-03-13 09:21:12 -0600824 GrResourceProvider::MaxNumNonAAQuads(),
825 flushInfo->fVertexBuffer,
826 GrResourceProvider::NumVertsPerNonAAQuad(),
827 flushInfo->fVertexOffset);
Chris Dalton304e14d2020-03-17 14:29:06 -0600828 target->recordDraw(flushInfo->fGeometryProcessor, mesh, 1, flushInfo->fPrimProcProxies,
829 GrPrimitiveType::kTriangles);
Robert Phillipsee08d522019-10-28 16:34:44 -0400830 flushInfo->fVertexOffset += GrResourceProvider::NumVertsPerNonAAQuad() *
831 flushInfo->fInstancesToFlush;
bsalomon6d6b6ad2016-07-13 14:45:28 -0700832 flushInfo->fInstancesToFlush = 0;
833 }
joshualitt5bf99f12015-03-13 11:47:42 -0700834 }
835
Chris Dalton07cdcfc92019-02-26 11:13:22 -0700836 void onExecute(GrOpFlushState* flushState, const SkRect& chainBounds) override {
Robert Phillips6c59fe42020-02-27 09:30:37 -0500837 auto pipeline = fHelper.createPipelineWithStencil(flushState);
Robert Phillips3968fcb2019-12-05 16:40:31 -0500838
839 flushState->executeDrawsAndUploadsForMeshDrawOp(this, chainBounds, pipeline);
Chris Dalton07cdcfc92019-02-26 11:13:22 -0700840 }
841
Brian Osmancf860852018-10-31 14:04:39 -0400842 const SkPMColor4f& color() const { return fShapes[0].fColor; }
Jim Van Verth33632d82017-02-28 10:24:39 -0500843 bool usesDistanceField() const { return fUsesDistanceField; }
joshualitt5bf99f12015-03-13 11:47:42 -0700844
Michael Ludwig28b0c5d2019-12-19 14:51:00 -0500845 CombineResult onCombineIfPossible(GrOp* t, GrRecordingContext::Arenas*,
846 const GrCaps& caps) override {
Jim Van Verth83010462017-03-16 08:45:39 -0400847 SmallPathOp* that = t->cast<SmallPathOp>();
Brian Salomonfebbd232017-07-11 15:52:02 -0400848 if (!fHelper.isCompatible(that->fHelper, caps, this->bounds(), that->bounds())) {
Brian Salomon7eae3e02018-08-07 14:02:38 +0000849 return CombineResult::kCannotCombine;
joshualitt8cab9a72015-07-16 09:13:50 -0700850 }
851
Jim Van Verth33632d82017-02-28 10:24:39 -0500852 if (this->usesDistanceField() != that->usesDistanceField()) {
Brian Salomon7eae3e02018-08-07 14:02:38 +0000853 return CombineResult::kCannotCombine;
Jim Van Verth33632d82017-02-28 10:24:39 -0500854 }
855
Jim Van Verth5698c8a2017-10-12 10:18:44 -0400856 const SkMatrix& thisCtm = this->fShapes[0].fViewMatrix;
857 const SkMatrix& thatCtm = that->fShapes[0].fViewMatrix;
858
859 if (thisCtm.hasPerspective() != thatCtm.hasPerspective()) {
Brian Salomon7eae3e02018-08-07 14:02:38 +0000860 return CombineResult::kCannotCombine;
joshualitt5bf99f12015-03-13 11:47:42 -0700861 }
862
Jim Van Verth5698c8a2017-10-12 10:18:44 -0400863 // We can position on the cpu unless we're in perspective,
864 // but also need to make sure local matrices are identical
865 if ((thisCtm.hasPerspective() || fHelper.usesLocalCoords()) &&
Mike Reed2c383152019-12-18 16:47:47 -0500866 !SkMatrixPriv::CheapEqual(thisCtm, thatCtm)) {
Brian Salomon7eae3e02018-08-07 14:02:38 +0000867 return CombineResult::kCannotCombine;
Jim Van Verth33632d82017-02-28 10:24:39 -0500868 }
869
Jim Van Verth5698c8a2017-10-12 10:18:44 -0400870 // Depending on the ctm we may have a different shader for SDF paths
871 if (this->usesDistanceField()) {
872 if (thisCtm.isScaleTranslate() != thatCtm.isScaleTranslate() ||
873 thisCtm.isSimilarity() != thatCtm.isSimilarity()) {
Brian Salomon7eae3e02018-08-07 14:02:38 +0000874 return CombineResult::kCannotCombine;
Jim Van Verth5698c8a2017-10-12 10:18:44 -0400875 }
876 }
877
Brian Salomond0a0a652016-12-15 15:25:22 -0500878 fShapes.push_back_n(that->fShapes.count(), that->fShapes.begin());
Brian Osmanc906d252018-12-04 11:17:46 -0500879 fWideColor |= that->fWideColor;
Brian Salomon7eae3e02018-08-07 14:02:38 +0000880 return CombineResult::kMerged;
joshualitt5bf99f12015-03-13 11:47:42 -0700881 }
882
Jim Van Verth33632d82017-02-28 10:24:39 -0500883 bool fUsesDistanceField;
joshualitt5bf99f12015-03-13 11:47:42 -0700884
Brian Salomond0a0a652016-12-15 15:25:22 -0500885 struct Entry {
Brian Osmancf860852018-10-31 14:04:39 -0400886 SkPMColor4f fColor;
887 GrShape fShape;
888 SkMatrix fViewMatrix;
bsalomonf1703092016-06-29 18:41:53 -0700889 };
890
Brian Salomond0a0a652016-12-15 15:25:22 -0500891 SkSTArray<1, Entry> fShapes;
Brian Salomonfebbd232017-07-11 15:52:02 -0400892 Helper fHelper;
Brian Salomon2ee084e2016-12-16 18:59:19 -0500893 GrDrawOpAtlas* fAtlas;
bsalomonee432412016-06-27 07:18:18 -0700894 ShapeCache* fShapeCache;
895 ShapeDataList* fShapeList;
brianosman0e3c5542016-04-13 13:56:21 -0700896 bool fGammaCorrect;
Brian Osmanc906d252018-12-04 11:17:46 -0500897 bool fWideColor;
reed1b55a962015-09-17 20:16:13 -0700898
Brian Salomonfebbd232017-07-11 15:52:02 -0400899 typedef GrMeshDrawOp INHERITED;
joshualitt5bf99f12015-03-13 11:47:42 -0700900};
901
Jim Van Verth83010462017-03-16 08:45:39 -0400902bool GrSmallPathRenderer::onDrawPath(const DrawPathArgs& args) {
Brian Osman11052242016-10-27 14:47:55 -0400903 GR_AUDIT_TRAIL_AUTO_FRAME(args.fRenderTargetContext->auditTrail(),
Jim Van Verth83010462017-03-16 08:45:39 -0400904 "GrSmallPathRenderer::onDrawPath");
csmartdaltonecbc12b2016-06-08 10:08:43 -0700905
jvanverthfa38a302014-10-06 05:59:05 -0700906 // we've already bailed on inverse filled paths, so this is safe
bsalomon8acedde2016-06-24 10:42:16 -0700907 SkASSERT(!args.fShape->isEmpty());
bsalomonee432412016-06-27 07:18:18 -0700908 SkASSERT(args.fShape->hasUnstyledKey());
joshualitt5bf99f12015-03-13 11:47:42 -0700909 if (!fAtlas) {
Robert Phillips0a15cc62019-07-30 12:49:10 -0400910 const GrBackendFormat format = args.fContext->priv().caps()->getDefaultBackendFormat(
911 GrColorType::kAlpha_8, GrRenderable::kNo);
Sergey Ulanovf1b2b422020-01-24 15:39:32 -0800912
913 GrDrawOpAtlasConfig atlasConfig(args.fContext->priv().caps()->maxTextureSize(),
914 kMaxAtlasTextureBytes);
915 SkISize size = atlasConfig.atlasDimensions(kA8_GrMaskFormat);
916 fAtlas = GrDrawOpAtlas::Make(args.fContext->priv().proxyProvider(), format,
Herb Derby0ef780b2020-01-24 15:57:11 -0500917 GrColorType::kAlpha_8, size.width(), size.height(),
918 kPlotWidth, kPlotHeight, this,
919 GrDrawOpAtlas::AllowMultitexturing::kYes, this);
joshualitt21279c72015-05-11 07:21:37 -0700920 if (!fAtlas) {
jvanverthfa38a302014-10-06 05:59:05 -0700921 return false;
922 }
923 }
924
Brian Salomonfebbd232017-07-11 15:52:02 -0400925 std::unique_ptr<GrDrawOp> op = SmallPathOp::Make(
Robert Phillips7c525e62018-06-12 10:11:12 -0400926 args.fContext, std::move(args.fPaint), *args.fShape, *args.fViewMatrix, fAtlas.get(),
927 &fShapeCache, &fShapeList, args.fGammaCorrect, args.fUserStencilSettings);
Brian Salomonfebbd232017-07-11 15:52:02 -0400928 args.fRenderTargetContext->addDrawOp(*args.fClip, std::move(op));
joshualitt9491f7f2015-02-11 11:33:38 -0800929
jvanverthfa38a302014-10-06 05:59:05 -0700930 return true;
931}
932
joshualitt21279c72015-05-11 07:21:37 -0700933///////////////////////////////////////////////////////////////////////////////////////////////////
934
Hal Canary6f6961e2017-01-31 13:50:44 -0500935#if GR_TEST_UTILS
joshualitt21279c72015-05-11 07:21:37 -0700936
Herb Derby0ef780b2020-01-24 15:57:11 -0500937struct GrSmallPathRenderer::PathTestStruct : public GrDrawOpAtlas::EvictionCallback,
938 public GrDrawOpAtlas::GenerationCounter {
halcanary96fcdcc2015-08-27 07:41:13 -0700939 PathTestStruct() : fContextID(SK_InvalidGenID), fAtlas(nullptr) {}
Herb Derby1a496c52020-01-22 17:26:56 -0500940 ~PathTestStruct() override { this->reset(); }
joshualitt21279c72015-05-11 07:21:37 -0700941
942 void reset() {
bsalomonee432412016-06-27 07:18:18 -0700943 ShapeDataList::Iter iter;
944 iter.init(fShapeList, ShapeDataList::Iter::kHead_IterStart);
945 ShapeData* shapeData;
946 while ((shapeData = iter.get())) {
joshualitt21279c72015-05-11 07:21:37 -0700947 iter.next();
bsalomonee432412016-06-27 07:18:18 -0700948 fShapeList.remove(shapeData);
949 delete shapeData;
joshualitt21279c72015-05-11 07:21:37 -0700950 }
Ben Wagner594f9ed2016-11-08 14:13:39 -0500951 fAtlas = nullptr;
bsalomonee432412016-06-27 07:18:18 -0700952 fShapeCache.reset();
joshualitt21279c72015-05-11 07:21:37 -0700953 }
954
Herb Derby4d721712020-01-24 14:31:16 -0500955 void evict(GrDrawOpAtlas::PlotLocator plotLocator) override {
joshualitt21279c72015-05-11 07:21:37 -0700956 // remove any paths that use this plot
bsalomonee432412016-06-27 07:18:18 -0700957 ShapeDataList::Iter iter;
Herb Derby1a496c52020-01-22 17:26:56 -0500958 iter.init(fShapeList, ShapeDataList::Iter::kHead_IterStart);
bsalomonee432412016-06-27 07:18:18 -0700959 ShapeData* shapeData;
960 while ((shapeData = iter.get())) {
joshualitt21279c72015-05-11 07:21:37 -0700961 iter.next();
Herb Derby4d721712020-01-24 14:31:16 -0500962 if (plotLocator == shapeData->fPlotLocator) {
Herb Derby1a496c52020-01-22 17:26:56 -0500963 fShapeCache.remove(shapeData->fKey);
964 fShapeList.remove(shapeData);
bsalomonee432412016-06-27 07:18:18 -0700965 delete shapeData;
joshualitt21279c72015-05-11 07:21:37 -0700966 }
967 }
968 }
969
970 uint32_t fContextID;
Brian Salomon2ee084e2016-12-16 18:59:19 -0500971 std::unique_ptr<GrDrawOpAtlas> fAtlas;
bsalomonee432412016-06-27 07:18:18 -0700972 ShapeCache fShapeCache;
973 ShapeDataList fShapeList;
joshualitt21279c72015-05-11 07:21:37 -0700974};
975
Robert Phillipsd2e9f762018-03-07 11:54:37 -0500976std::unique_ptr<GrDrawOp> GrSmallPathRenderer::createOp_TestingOnly(
Robert Phillipsb97da532019-02-12 15:24:12 -0500977 GrRecordingContext* context,
Robert Phillipsd2e9f762018-03-07 11:54:37 -0500978 GrPaint&& paint,
979 const GrShape& shape,
980 const SkMatrix& viewMatrix,
981 GrDrawOpAtlas* atlas,
982 ShapeCache* shapeCache,
983 ShapeDataList* shapeList,
984 bool gammaCorrect,
985 const GrUserStencilSettings* stencil) {
986
Robert Phillips7c525e62018-06-12 10:11:12 -0400987 return GrSmallPathRenderer::SmallPathOp::Make(context, std::move(paint), shape, viewMatrix,
988 atlas, shapeCache, shapeList, gammaCorrect,
989 stencil);
Robert Phillipsd2e9f762018-03-07 11:54:37 -0500990
991}
992
Brian Salomonfebbd232017-07-11 15:52:02 -0400993GR_DRAW_OP_TEST_DEFINE(SmallPathOp) {
994 using PathTestStruct = GrSmallPathRenderer::PathTestStruct;
joshualitt21279c72015-05-11 07:21:37 -0700995 static PathTestStruct gTestStruct;
996
Robert Phillips9da87e02019-02-04 13:26:26 -0500997 if (context->priv().contextID() != gTestStruct.fContextID) {
998 gTestStruct.fContextID = context->priv().contextID();
joshualitt21279c72015-05-11 07:21:37 -0700999 gTestStruct.reset();
Robert Phillips0a15cc62019-07-30 12:49:10 -04001000 const GrBackendFormat format = context->priv().caps()->getDefaultBackendFormat(
1001 GrColorType::kAlpha_8, GrRenderable::kNo);
Sergey Ulanovf1b2b422020-01-24 15:39:32 -08001002 GrDrawOpAtlasConfig atlasConfig(context->priv().caps()->maxTextureSize(),
1003 kMaxAtlasTextureBytes);
1004 SkISize size = atlasConfig.atlasDimensions(kA8_GrMaskFormat);
1005 gTestStruct.fAtlas =
1006 GrDrawOpAtlas::Make(context->priv().proxyProvider(), format, GrColorType::kAlpha_8,
1007 size.width(), size.height(), kPlotWidth, kPlotHeight,
Herb Derby0ef780b2020-01-24 15:57:11 -05001008 &gTestStruct,
Sergey Ulanovf1b2b422020-01-24 15:39:32 -08001009 GrDrawOpAtlas::AllowMultitexturing::kYes, &gTestStruct);
joshualitt21279c72015-05-11 07:21:37 -07001010 }
1011
1012 SkMatrix viewMatrix = GrTest::TestMatrix(random);
brianosman0e3c5542016-04-13 13:56:21 -07001013 bool gammaCorrect = random->nextBool();
joshualitt21279c72015-05-11 07:21:37 -07001014
bsalomonee432412016-06-27 07:18:18 -07001015 // This path renderer only allows fill styles.
1016 GrShape shape(GrTest::TestPath(random), GrStyle::SimpleFill());
Robert Phillipsd2e9f762018-03-07 11:54:37 -05001017 return GrSmallPathRenderer::createOp_TestingOnly(
Robert Phillips7c525e62018-06-12 10:11:12 -04001018 context,
Robert Phillipsd2e9f762018-03-07 11:54:37 -05001019 std::move(paint), shape, viewMatrix,
1020 gTestStruct.fAtlas.get(),
1021 &gTestStruct.fShapeCache,
1022 &gTestStruct.fShapeList,
1023 gammaCorrect,
1024 GrGetRandomStencil(random, context));
joshualitt21279c72015-05-11 07:21:37 -07001025}
1026
1027#endif