• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright 2017 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 
8 #include "tests/Test.h"
9 
10 #include <array>
11 #include <memory>
12 #include <vector>
13 #include "include/core/SkBitmap.h"
14 #include "include/gpu/GrDirectContext.h"
15 #include "include/private/GrResourceKey.h"
16 #include "src/gpu/GrCaps.h"
17 #include "src/gpu/GrDirectContextPriv.h"
18 #include "src/gpu/GrGeometryProcessor.h"
19 #include "src/gpu/GrImageInfo.h"
20 #include "src/gpu/GrMemoryPool.h"
21 #include "src/gpu/GrOpFlushState.h"
22 #include "src/gpu/GrOpsRenderPass.h"
23 #include "src/gpu/GrProgramInfo.h"
24 #include "src/gpu/GrResourceProvider.h"
25 #include "src/gpu/glsl/GrGLSLFragmentShaderBuilder.h"
26 #include "src/gpu/glsl/GrGLSLVarying.h"
27 #include "src/gpu/glsl/GrGLSLVertexGeoBuilder.h"
28 #include "src/gpu/ops/GrSimpleMeshDrawOpHelper.h"
29 #include "src/gpu/v1/SurfaceDrawContext_v1.h"
30 
31 #if 0
32 #include "tools/ToolUtils.h"
33 #define WRITE_PNG_CONTEXT_TYPE kANGLE_D3D11_ES3_ContextType
34 #endif
35 
36 GR_DECLARE_STATIC_UNIQUE_KEY(gIndexBufferKey);
37 
38 static constexpr int kBoxSize = 2;
39 static constexpr int kBoxCountY = 8;
40 static constexpr int kBoxCountX = 8;
41 static constexpr int kBoxCount = kBoxCountY * kBoxCountX;
42 
43 static constexpr int kImageWidth = kBoxCountY * kBoxSize;
44 static constexpr int kImageHeight = kBoxCountX * kBoxSize;
45 
46 static constexpr int kIndexPatternRepeatCount = 3;
47 constexpr uint16_t kIndexPattern[6] = {0, 1, 2, 1, 2, 3};
48 
49 
50 class DrawMeshHelper {
51 public:
DrawMeshHelper(GrOpFlushState * state)52     DrawMeshHelper(GrOpFlushState* state) : fState(state) {}
53 
54     sk_sp<const GrBuffer> getIndexBuffer();
55 
56     sk_sp<const GrBuffer> makeIndexBuffer(const uint16_t[], int count);
57 
makeVertexBuffer(const SkTArray<T> & data)58     template<typename T> sk_sp<const GrBuffer> makeVertexBuffer(const SkTArray<T>& data) {
59         return this->makeVertexBuffer(data.begin(), data.count());
60     }
makeVertexBuffer(const std::vector<T> & data)61     template<typename T> sk_sp<const GrBuffer> makeVertexBuffer(const std::vector<T>& data) {
62         return this->makeVertexBuffer(data.data(), data.size());
63     }
64     template<typename T> sk_sp<const GrBuffer> makeVertexBuffer(const T* data, int count);
65 
target()66     GrMeshDrawTarget* target() { return fState; }
67 
68     sk_sp<const GrBuffer> fIndexBuffer;
69     sk_sp<const GrBuffer> fIndexBuffer2;
70     sk_sp<const GrBuffer> fInstBuffer;
71     sk_sp<const GrBuffer> fVertBuffer;
72     sk_sp<const GrBuffer> fVertBuffer2;
73     sk_sp<const GrBuffer> fDrawIndirectBuffer;
74     size_t fDrawIndirectBufferOffset;
75 
76     GrOpsRenderPass* bindPipeline(GrPrimitiveType, bool isInstanced, bool hasVertexBuffer);
77 
78 private:
79     GrOpFlushState* fState;
80 };
81 
82 struct Box {
83     float fX, fY;
84     GrColor fColor;
85 };
86 
87 ////////////////////////////////////////////////////////////////////////////////////////////////////
88 
89 /**
90  * This is a GPU-backend specific test. It tries to test all possible usecases of
91  * GrOpsRenderPass::draw*. The test works by drawing checkerboards of colored boxes, reading back
92  * the pixels, and comparing with expected results. The boxes are drawn on integer boundaries and
93  * the (opaque) colors are chosen from the set (r,g,b) = (0,255)^3, so the GPU renderings ought to
94  * produce exact matches.
95  */
96 
97 static void run_test(GrDirectContext*, const char* testName, skiatest::Reporter*,
98                      const std::unique_ptr<skgpu::v1::SurfaceDrawContext>&, const SkBitmap& gold,
99                      std::function<void(DrawMeshHelper*)> prepareFn,
100                      std::function<void(DrawMeshHelper*)> executeFn);
101 
102 #ifdef WRITE_PNG_CONTEXT_TYPE
IsContextTypeForOutputPNGs(skiatest::GrContextFactoryContextType type)103 static bool IsContextTypeForOutputPNGs(skiatest::GrContextFactoryContextType type) {
104     return type == skiatest::GrContextFactoryContextType::WRITE_PNG_CONTEXT_TYPE;
105 }
DEF_GPUTEST_FOR_CONTEXTS(GrMeshTest,IsContextTypeForOutputPNGs,reporter,ctxInfo,nullptr)106 DEF_GPUTEST_FOR_CONTEXTS(GrMeshTest, IsContextTypeForOutputPNGs, reporter, ctxInfo, nullptr) {
107 #else
108 DEF_GPUTEST_FOR_RENDERING_CONTEXTS(GrMeshTest, reporter, ctxInfo) {
109 #endif
110     auto dContext = ctxInfo.directContext();
111 
112     auto sdc = skgpu::v1::SurfaceDrawContext::Make(
113             dContext, GrColorType::kRGBA_8888, nullptr, SkBackingFit::kExact,
114             {kImageWidth, kImageHeight}, SkSurfaceProps());
115     if (!sdc) {
116         ERRORF(reporter, "could not create render target context.");
117         return;
118     }
119 
120     SkTArray<Box> boxes;
121     SkTArray<std::array<Box, 4>> vertexData;
122     SkBitmap gold;
123 
124     // ---- setup ----------
125 
126     SkPaint paint;
127     paint.setBlendMode(SkBlendMode::kSrc);
128     gold.allocN32Pixels(kImageWidth, kImageHeight);
129 
130     SkCanvas goldCanvas(gold);
131 
132     for (int y = 0; y < kBoxCountY; ++y) {
133         for (int x = 0; x < kBoxCountX; ++x) {
134             int c = y + x;
135             int rgb[3] = {-(c & 1) & 0xff, -((c >> 1) & 1) & 0xff, -((c >> 2) & 1) & 0xff};
136 
137             const Box box = boxes.push_back() = {
138                     float(x * kBoxSize),
139                     float(y * kBoxSize),
140                     GrColorPackRGBA(rgb[0], rgb[1], rgb[2], 255)
141             };
142 
143             std::array<Box, 4>& boxVertices = vertexData.push_back();
144             for (int i = 0; i < 4; ++i) {
145                 boxVertices[i] = {
146                         box.fX + (i / 2) * kBoxSize,
147                         box.fY + (i % 2) * kBoxSize,
148                         box.fColor
149                 };
150             }
151 
152             paint.setARGB(255, rgb[0], rgb[1], rgb[2]);
153             goldCanvas.drawRect(SkRect::MakeXYWH(box.fX, box.fY, kBoxSize, kBoxSize), paint);
154         }
155     }
156 
157     // ---- tests ----------
158 
159 #define VALIDATE(buff)                           \
160     do {                                         \
161         if (!buff) {                             \
162             ERRORF(reporter, #buff " is null."); \
163             return;                              \
164         }                                        \
165     } while (0)
166 
167     run_test(dContext, "draw", reporter, sdc, gold,
168              [&](DrawMeshHelper* helper) {
169                  SkTArray<Box> expandedVertexData;
170                  for (int i = 0; i < kBoxCount; ++i) {
171                      for (int j = 0; j < 6; ++j) {
172                          expandedVertexData.push_back(vertexData[i][kIndexPattern[j]]);
173                      }
174                  }
175 
176                  // Draw boxes one line at a time to exercise base vertex.
177                  helper->fVertBuffer = helper->makeVertexBuffer(expandedVertexData);
178                  VALIDATE(helper->fVertBuffer);
179              },
180              [&](DrawMeshHelper* helper) {
181                  for (int y = 0; y < kBoxCountY; ++y) {
182                      auto pass = helper->bindPipeline(GrPrimitiveType::kTriangles, false, true);
183                      pass->bindBuffers(nullptr, nullptr, helper->fVertBuffer);
184                      pass->draw(kBoxCountX * 6, y * kBoxCountX * 6);
185                  }
186              });
187 
188     run_test(dContext, "drawIndexed", reporter, sdc, gold,
189              [&](DrawMeshHelper* helper) {
190                 helper->fIndexBuffer = helper->getIndexBuffer();
191                 VALIDATE(helper->fIndexBuffer);
192                 helper->fVertBuffer = helper->makeVertexBuffer(vertexData);
193                 VALIDATE(helper->fVertBuffer);
194              },
195              [&](DrawMeshHelper* helper) {
196                 int baseRepetition = 0;
197                 int i = 0;
198                 // Start at various repetitions within the patterned index buffer to exercise base
199                 // index.
200                 while (i < kBoxCount) {
201                     static_assert(kIndexPatternRepeatCount >= 3);
202                     int repetitionCount = std::min(3 - baseRepetition, kBoxCount - i);
203 
204                     auto pass = helper->bindPipeline(GrPrimitiveType::kTriangles, false, true);
205                     pass->bindBuffers(helper->fIndexBuffer, nullptr, helper->fVertBuffer);
206                     pass->drawIndexed(repetitionCount * 6, baseRepetition * 6, baseRepetition * 4,
207                                       (baseRepetition + repetitionCount) * 4 - 1,
208                                       (i - baseRepetition) * 4);
209 
210                     baseRepetition = (baseRepetition + 1) % 3;
211                     i += repetitionCount;
212                 }
213             });
214 
215     run_test(dContext, "drawIndexPattern", reporter, sdc, gold,
216              [&](DrawMeshHelper* helper) {
217                  helper->fIndexBuffer = helper->getIndexBuffer();
218                  VALIDATE(helper->fIndexBuffer);
219                  helper->fVertBuffer = helper->makeVertexBuffer(vertexData);
220                  VALIDATE(helper->fVertBuffer);
221              },
222              [&](DrawMeshHelper* helper) {
223                 // Draw boxes one line at a time to exercise base vertex. drawIndexPattern does
224                 // not support a base index.
225                 for (int y = 0; y < kBoxCountY; ++y) {
226                     auto pass = helper->bindPipeline(GrPrimitiveType::kTriangles, false, true);
227                     pass->bindBuffers(helper->fIndexBuffer, nullptr, helper->fVertBuffer);
228                     pass->drawIndexPattern(6, kBoxCountX, kIndexPatternRepeatCount, 4,
229                                            y * kBoxCountX * 4);
230 
231                 }
232              });
233 
234     for (bool indexed : {false, true}) {
235         if (!dContext->priv().caps()->drawInstancedSupport()) {
236             break;
237         }
238 
239         run_test(dContext, indexed ? "drawIndexedInstanced" : "drawInstanced",
240                  reporter, sdc, gold,
241                  [&](DrawMeshHelper* helper) {
242                      helper->fIndexBuffer = indexed ? helper->getIndexBuffer() : nullptr;
243                      SkTArray<uint16_t> baseIndexData;
244                      baseIndexData.push_back(kBoxCountX/2 * 6); // for testing base index.
245                      for (int i = 0; i < 6; ++i) {
246                          baseIndexData.push_back(kIndexPattern[i]);
247                      }
248                      helper->fIndexBuffer2 = helper->makeIndexBuffer(baseIndexData.begin(),
249                                                                      baseIndexData.count());
250                      helper->fInstBuffer = helper->makeVertexBuffer(boxes);
251                      VALIDATE(helper->fInstBuffer);
252                      helper->fVertBuffer =
253                              helper->makeVertexBuffer(std::vector<float>{0,0, 0,1, 1,0, 1,1});
254                      VALIDATE(helper->fVertBuffer);
255                      helper->fVertBuffer2 = helper->makeVertexBuffer( // for testing base vertex.
256                          std::vector<float>{-1,-1, -1,-1, 0,0, 0,1, 1,0, 1,1});
257                      VALIDATE(helper->fVertBuffer2);
258                  },
259                  [&](DrawMeshHelper* helper) {
260                      // Draw boxes one line at a time to exercise base instance, base vertex, and
261                      // null vertex buffer.
262                      for (int y = 0; y < kBoxCountY; ++y) {
263                          sk_sp<const GrBuffer> vertexBuffer;
264                          int baseVertex = 0;
265                          switch (y % 3) {
266                              case 0:
267                                  if (dContext->priv().caps()->shaderCaps()->vertexIDSupport()) {
268                                      break;
269                                  }
270                                  [[fallthrough]];
271                              case 1:
272                                  vertexBuffer = helper->fVertBuffer;
273                                  break;
274                              case 2:
275                                  vertexBuffer = helper->fVertBuffer2;
276                                  baseVertex = 2;
277                                  break;
278                          }
279 
280                          GrPrimitiveType primitiveType = indexed ? GrPrimitiveType::kTriangles
281                                                                  : GrPrimitiveType::kTriangleStrip;
282                          auto pass = helper->bindPipeline(primitiveType, true,
283                                                           SkToBool(vertexBuffer));
284                          if (indexed) {
285                              sk_sp<const GrBuffer> indexBuffer = (y % 2) ?
286                                      helper->fIndexBuffer2 : helper->fIndexBuffer;
287                              VALIDATE(indexBuffer);
288                              int baseIndex = (y % 2);
289                              pass->bindBuffers(std::move(indexBuffer), helper->fInstBuffer,
290                                                std::move(vertexBuffer));
291                              pass->drawIndexedInstanced(6, baseIndex, kBoxCountX, y * kBoxCountX,
292                                                         baseVertex);
293                          } else {
294                              pass->bindBuffers(nullptr, helper->fInstBuffer,
295                                                std::move(vertexBuffer));
296                              pass->drawInstanced(kBoxCountX, y * kBoxCountY, 4, baseVertex);
297                          }
298                      }
299                  });
300     }
301 
302     for (bool indexed : {false, true}) {
303         if (!dContext->priv().caps()->drawInstancedSupport()) {
304             break;
305         }
306 
307         run_test(dContext, (indexed) ? "drawIndexedIndirect" : "drawIndirect",
308                  reporter, sdc, gold,
309                  [&](DrawMeshHelper* helper) {
310                      SkTArray<uint16_t> baseIndexData;
311                      baseIndexData.push_back(kBoxCountX/2 * 6); // for testing base index.
312                      for (int j = 0; j < kBoxCountY; ++j) {
313                          for (int i = 0; i < 6; ++i) {
314                              baseIndexData.push_back(kIndexPattern[i]);
315                          }
316                      }
317                      helper->fIndexBuffer2 = helper->makeIndexBuffer(baseIndexData.begin(),
318                                                                      baseIndexData.count());
319                      VALIDATE(helper->fIndexBuffer2);
320                      helper->fInstBuffer = helper->makeVertexBuffer(boxes);
321                      VALIDATE(helper->fInstBuffer);
322                      helper->fVertBuffer = helper->makeVertexBuffer(std::vector<float>{
323                              -1,-1, 0,0, 0,1, 1,0, 1,1, -1,-1, 0,0, 1,0, 0,1, 1,1});
324                      VALIDATE(helper->fVertBuffer);
325 
326                      GrDrawIndirectWriter indirectWriter;
327                      GrDrawIndexedIndirectWriter indexedIndirectWriter;
328                      if (indexed) {
329                          // Make helper->fDrawIndirectBufferOffset nonzero.
330                          sk_sp<const GrBuffer> ignoredBuff;
331                          size_t ignoredOffset;
332                          // Make a superfluous call to makeDrawIndirectSpace in order to test
333                          // "offsetInBytes!=0" for the actual call to makeDrawIndexedIndirectSpace.
334                          helper->target()->makeDrawIndirectSpace(29, &ignoredBuff, &ignoredOffset);
335                          indexedIndirectWriter = helper->target()->makeDrawIndexedIndirectSpace(
336                                  kBoxCountY, &helper->fDrawIndirectBuffer,
337                                  &helper->fDrawIndirectBufferOffset);
338                      } else {
339                          // Make helper->fDrawIndirectBufferOffset nonzero.
340                          sk_sp<const GrBuffer> ignoredBuff;
341                          size_t ignoredOffset;
342                          // Make a superfluous call to makeDrawIndexedIndirectSpace in order to test
343                          // "offsetInBytes!=0" for the actual call to makeDrawIndirectSpace.
344                          helper->target()->makeDrawIndexedIndirectSpace(7, &ignoredBuff,
345                                                                         &ignoredOffset);
346                          indirectWriter = helper->target()->makeDrawIndirectSpace(
347                                  kBoxCountY, &helper->fDrawIndirectBuffer,
348                                  &helper->fDrawIndirectBufferOffset);
349                      }
350 
351                      // Draw boxes one line at a time to exercise multiple draws.
352                      for (int y = 0; y < kBoxCountY; ++y) {
353                          int baseVertex = (y % 2) ? 1 : 6;
354                          if (indexed) {
355                              int baseIndex = 1 + y * 6;
356                              indexedIndirectWriter.writeIndexed(6, baseIndex, kBoxCountX,
357                                                                 y * kBoxCountX, baseVertex);
358                          } else {
359                              indirectWriter.write(kBoxCountX, y * kBoxCountX, 4, baseVertex);
360                          }
361                      }
362                  },
363                  [&](DrawMeshHelper* helper) {
364                      GrOpsRenderPass* pass;
365                      if (indexed) {
366                          pass = helper->bindPipeline(GrPrimitiveType::kTriangles, true, true);
367                          pass->bindBuffers(helper->fIndexBuffer2, helper->fInstBuffer,
368                                            helper->fVertBuffer);
369                          for (int i = 0; i < 3; ++i) {
370                              int start = kBoxCountY * i / 3;
371                              int end = kBoxCountY * (i + 1) / 3;
372                              size_t offset = helper->fDrawIndirectBufferOffset + start *
373                                              sizeof(GrDrawIndexedIndirectCommand);
374                              pass->drawIndexedIndirect(helper->fDrawIndirectBuffer.get(), offset,
375                                                        end - start);
376                          }
377                      } else {
378                          pass = helper->bindPipeline(GrPrimitiveType::kTriangleStrip, true, true);
379                          pass->bindBuffers(nullptr, helper->fInstBuffer, helper->fVertBuffer);
380                          for (int i = 0; i < 2; ++i) {
381                              int start = kBoxCountY * i / 2;
382                              int end = kBoxCountY * (i + 1) / 2;
383                              size_t offset = helper->fDrawIndirectBufferOffset + start *
384                                              sizeof(GrDrawIndirectCommand);
385                              pass->drawIndirect(helper->fDrawIndirectBuffer.get(), offset,
386                                                 end - start);
387                          }
388                      }
389                  });
390     }
391 }
392 
393 ////////////////////////////////////////////////////////////////////////////////////////////////////
394 
395 namespace {
396 class MeshTestOp : public GrDrawOp {
397 public:
398     DEFINE_OP_CLASS_ID
399 
400     static GrOp::Owner Make(GrRecordingContext* rContext,
401                             std::function<void(DrawMeshHelper*)> prepareFn,
402                             std::function<void(DrawMeshHelper*)> executeFn) {
403         return GrOp::Make<MeshTestOp>(rContext, prepareFn, executeFn);
404     }
405 
406 private:
407     friend class GrOp;  // for ctor
408 
409     MeshTestOp(std::function<void(DrawMeshHelper*)> prepareFn,
410                std::function<void(DrawMeshHelper*)> executeFn)
411             : INHERITED(ClassID()), fPrepareFn(prepareFn), fExecuteFn(executeFn) {
412         this->setBounds(
413                 SkRect::MakeIWH(kImageWidth, kImageHeight), HasAABloat::kNo, IsHairline::kNo);
414     }
415 
416     const char* name() const override { return "GrMeshTestOp"; }
417     FixedFunctionFlags fixedFunctionFlags() const override { return FixedFunctionFlags::kNone; }
418     GrProcessorSet::Analysis finalize(const GrCaps&, const GrAppliedClip*, GrClampType) override {
419         return GrProcessorSet::EmptySetAnalysis();
420     }
421 
422     void onPrePrepare(GrRecordingContext*,
423                       const GrSurfaceProxyView& writeView,
424                       GrAppliedClip*,
425                       const GrDstProxyView&,
426                       GrXferBarrierFlags renderPassXferBarriers,
427                       GrLoadOp colorLoadOp) override {}
428     void onPrepare(GrOpFlushState* state) override {
429         fHelper = std::make_unique<DrawMeshHelper>(state);
430         fPrepareFn(fHelper.get());
431     }
432     void onExecute(GrOpFlushState* state, const SkRect& chainBounds) override {
433         fExecuteFn(fHelper.get());
434     }
435 
436     std::unique_ptr<DrawMeshHelper> fHelper;
437     std::function<void(DrawMeshHelper*)> fPrepareFn;
438     std::function<void(DrawMeshHelper*)> fExecuteFn;
439 
440     using INHERITED = GrDrawOp;
441 };
442 
443 class MeshTestProcessor : public GrGeometryProcessor {
444 public:
445     static GrGeometryProcessor* Make(SkArenaAlloc* arena, bool instanced, bool hasVertexBuffer) {
446         return arena->make([&](void* ptr) {
447             return new (ptr) MeshTestProcessor(instanced, hasVertexBuffer);
448         });
449     }
450 
451     const char* name() const override { return "GrMeshTestProcessor"; }
452 
453     void addToKey(const GrShaderCaps&, GrProcessorKeyBuilder* b) const final {
454         b->add32(fInstanceLocation.isInitialized());
455         b->add32(fVertexPosition.isInitialized());
456     }
457 
458     std::unique_ptr<ProgramImpl> makeProgramImpl(const GrShaderCaps&) const final;
459 
460 private:
461     class Impl;
462 
463     const Attribute& inColor() const {
464         return fVertexColor.isInitialized() ? fVertexColor : fInstanceColor;
465     }
466 
467     MeshTestProcessor(bool instanced, bool hasVertexBuffer)
468             : INHERITED(kGrMeshTestProcessor_ClassID) {
469         if (instanced) {
470             fInstanceLocation = {"location", kFloat2_GrVertexAttribType, kHalf2_GrSLType};
471             fInstanceColor = {"color", kUByte4_norm_GrVertexAttribType, kHalf4_GrSLType};
472             this->setInstanceAttributes(&fInstanceLocation, 2);
473             if (hasVertexBuffer) {
474                 fVertexPosition = {"vertex", kFloat2_GrVertexAttribType, kHalf2_GrSLType};
475                 this->setVertexAttributes(&fVertexPosition, 1);
476             }
477         } else {
478             fVertexPosition = {"vertex", kFloat2_GrVertexAttribType, kHalf2_GrSLType};
479             fVertexColor = {"color", kUByte4_norm_GrVertexAttribType, kHalf4_GrSLType};
480             this->setVertexAttributes(&fVertexPosition, 2);
481         }
482     }
483 
484     Attribute fVertexPosition;
485     Attribute fVertexColor;
486 
487     Attribute fInstanceLocation;
488     Attribute fInstanceColor;
489 
490     using INHERITED = GrGeometryProcessor;
491 };
492 }  // anonymous namespace
493 
494 std::unique_ptr<GrGeometryProcessor::ProgramImpl> MeshTestProcessor::makeProgramImpl(
495         const GrShaderCaps&) const {
496     class Impl : public ProgramImpl {
497     public:
498         void setData(const GrGLSLProgramDataManager&,
499                      const GrShaderCaps&,
500                      const GrGeometryProcessor&) final {}
501 
502     private:
503         void onEmitCode(EmitArgs& args, GrGPArgs* gpArgs) final {
504             const MeshTestProcessor& mp = args.fGeomProc.cast<MeshTestProcessor>();
505             GrGLSLVertexBuilder* v = args.fVertBuilder;
506             GrGLSLFPFragmentBuilder* f = args.fFragBuilder;
507 
508             GrGLSLVaryingHandler* varyingHandler = args.fVaryingHandler;
509             varyingHandler->emitAttributes(mp);
510             f->codeAppendf("half4 %s;", args.fOutputColor);
511             varyingHandler->addPassThroughAttribute(mp.inColor().asShaderVar(), args.fOutputColor);
512 
513             if (!mp.fInstanceLocation.isInitialized()) {
514                 v->codeAppendf("float2 vertex = %s;", mp.fVertexPosition.name());
515             } else {
516                 if (mp.fVertexPosition.isInitialized()) {
517                     v->codeAppendf("float2 offset = %s;", mp.fVertexPosition.name());
518                 } else {
519                     v->codeAppend("float2 offset = float2(sk_VertexID / 2, sk_VertexID % 2);");
520                 }
521                 v->codeAppendf("float2 vertex = %s + offset * %i;", mp.fInstanceLocation.name(),
522                                kBoxSize);
523             }
524             gpArgs->fPositionVar.set(kFloat2_GrSLType, "vertex");
525 
526             f->codeAppendf("const half4 %s = half4(1);", args.fOutputCoverage);
527         }
528     };
529 
530     return std::make_unique<Impl>();
531 }
532 
533 ////////////////////////////////////////////////////////////////////////////////////////////////////
534 
535 sk_sp<const GrBuffer> DrawMeshHelper::makeIndexBuffer(const uint16_t indices[], int count) {
536     return sk_sp<const GrBuffer>(fState->resourceProvider()->createBuffer(
537             count * sizeof(uint16_t), GrGpuBufferType::kIndex, kDynamic_GrAccessPattern, indices));
538 }
539 
540 template<typename T>
541 sk_sp<const GrBuffer> DrawMeshHelper::makeVertexBuffer(const T* data, int count) {
542     return sk_sp<const GrBuffer>(fState->resourceProvider()->createBuffer(
543             count * sizeof(T), GrGpuBufferType::kVertex, kDynamic_GrAccessPattern, data));
544 }
545 
546 sk_sp<const GrBuffer> DrawMeshHelper::getIndexBuffer() {
547     GR_DEFINE_STATIC_UNIQUE_KEY(gIndexBufferKey);
548     return fState->resourceProvider()->findOrCreatePatternedIndexBuffer(
549             kIndexPattern, 6, kIndexPatternRepeatCount, 4, gIndexBufferKey);
550 }
551 
552 GrOpsRenderPass* DrawMeshHelper::bindPipeline(GrPrimitiveType primitiveType, bool isInstanced,
553                                               bool hasVertexBuffer) {
554     GrProcessorSet processorSet(SkBlendMode::kSrc);
555 
556     // TODO: add a GrProcessorSet testing helper to make this easier
557     SkPMColor4f overrideColor;
558     processorSet.finalize(GrProcessorAnalysisColor(),
559                           GrProcessorAnalysisCoverage::kNone,
560                           fState->appliedClip(),
561                           nullptr,
562                           fState->caps(),
563                           GrClampType::kAuto,
564                           &overrideColor);
565 
566     auto pipeline = GrSimpleMeshDrawOpHelper::CreatePipeline(fState,
567                                                              std::move(processorSet),
568                                                              GrPipeline::InputFlags::kNone);
569 
570     GrGeometryProcessor* mtp = MeshTestProcessor::Make(fState->allocator(), isInstanced,
571                                                        hasVertexBuffer);
572 
573     GrProgramInfo programInfo(fState->caps(), fState->writeView(), fState->usesMSAASurface(),
574                               pipeline, &GrUserStencilSettings::kUnused, mtp, primitiveType, 0,
575                               fState->renderPassBarriers(), fState->colorLoadOp());
576 
577     fState->opsRenderPass()->bindPipeline(programInfo, SkRect::MakeIWH(kImageWidth, kImageHeight));
578     return fState->opsRenderPass();
579 }
580 
581 static void run_test(GrDirectContext* dContext,
582                      const char* testName,
583                      skiatest::Reporter* reporter,
584                      const std::unique_ptr<skgpu::v1::SurfaceDrawContext>& sdc,
585                      const SkBitmap& gold,
586                      std::function<void(DrawMeshHelper*)> prepareFn,
587                      std::function<void(DrawMeshHelper*)> executeFn) {
588     const int w = gold.width(), h = gold.height();
589     const uint32_t* goldPx = reinterpret_cast<const uint32_t*>(gold.getPixels());
590     if (h != sdc->height() || w != sdc->width()) {
591         ERRORF(reporter, "[%s] expectation and rtc not compatible (?).", testName);
592         return;
593     }
594     if (sizeof(uint32_t) * kImageWidth != gold.rowBytes()) {
595         ERRORF(reporter, "[%s] unexpected row bytes in gold image", testName);
596         return;
597     }
598 
599     GrPixmap resultPM = GrPixmap::Allocate(gold.info());
600     sdc->clear(SkPMColor4f::FromBytes_RGBA(0xbaaaaaad));
601     sdc->addDrawOp(MeshTestOp::Make(dContext, prepareFn, executeFn));
602 
603     sdc->readPixels(dContext, resultPM, {0, 0});
604 
605 #ifdef WRITE_PNG_CONTEXT_TYPE
606 #define STRINGIFY(X) #X
607 #define TOSTRING(X) STRINGIFY(X)
608     SkString filename;
609     filename.printf("GrMeshTest_%s_%s.png", TOSTRING(WRITE_PNG_CONTEXT_TYPE), testName);
610     SkDebugf("writing %s...\n", filename.c_str());
611     ToolUtils::EncodeImageToFile(filename.c_str(), resultPM, SkEncodedImageFormat::kPNG, 100);
612 #endif
613 
614     for (int y = 0; y < h; ++y) {
615         for (int x = 0; x < w; ++x) {
616             uint32_t expected = goldPx[y * kImageWidth + x];
617             uint32_t actual = static_cast<uint32_t*>(resultPM.addr())[y * kImageWidth + x];
618             if (expected != actual) {
619                 ERRORF(reporter, "[%s] pixel (%i,%i): got 0x%x expected 0x%x",
620                        testName, x, y, actual, expected);
621                 return;
622             }
623         }
624     }
625 }
626