blob: 364851407168551a5e7fa0b917693567f8e48a54 [file] [log] [blame]
Chris Dalton114a3c02017-05-26 15:17:19 -06001/*
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 "SkTypes.h"
9#include "Test.h"
10
Brian Salomonc7fe0f72018-05-11 10:14:21 -040011#include <array>
12#include <vector>
13#include "GrCaps.h"
Chris Dalton114a3c02017-05-26 15:17:19 -060014#include "GrContext.h"
Brian Salomonc7fe0f72018-05-11 10:14:21 -040015#include "GrContextPriv.h"
Chris Dalton114a3c02017-05-26 15:17:19 -060016#include "GrGeometryProcessor.h"
Robert Phillips009e9af2017-06-15 14:01:04 -040017#include "GrGpuCommandBuffer.h"
Robert Phillips7c525e62018-06-12 10:11:12 -040018#include "GrMemoryPool.h"
Chris Dalton114a3c02017-05-26 15:17:19 -060019#include "GrOpFlushState.h"
20#include "GrRenderTargetContext.h"
21#include "GrRenderTargetContextPriv.h"
Chris Dalton114a3c02017-05-26 15:17:19 -060022#include "GrResourceKey.h"
Brian Salomonc7fe0f72018-05-11 10:14:21 -040023#include "GrResourceProvider.h"
Mike Reed75ae4212018-01-23 11:24:08 -050024#include "SkBitmap.h"
Chris Dalton114a3c02017-05-26 15:17:19 -060025#include "SkMakeUnique.h"
Chris Dalton114a3c02017-05-26 15:17:19 -060026#include "glsl/GrGLSLFragmentShaderBuilder.h"
27#include "glsl/GrGLSLGeometryProcessor.h"
28#include "glsl/GrGLSLVarying.h"
Brian Salomonc7fe0f72018-05-11 10:14:21 -040029#include "glsl/GrGLSLVertexGeoBuilder.h"
Chris Dalton114a3c02017-05-26 15:17:19 -060030
31GR_DECLARE_STATIC_UNIQUE_KEY(gIndexBufferKey);
32
33static constexpr int kBoxSize = 2;
34static constexpr int kBoxCountY = 8;
35static constexpr int kBoxCountX = 8;
36static constexpr int kBoxCount = kBoxCountY * kBoxCountX;
37
38static constexpr int kImageWidth = kBoxCountY * kBoxSize;
39static constexpr int kImageHeight = kBoxCountX * kBoxSize;
40
41static constexpr int kIndexPatternRepeatCount = 3;
42constexpr uint16_t kIndexPattern[6] = {0, 1, 2, 1, 2, 3};
43
44
45class DrawMeshHelper {
46public:
47 DrawMeshHelper(GrOpFlushState* state) : fState(state) {}
48
49 sk_sp<const GrBuffer> getIndexBuffer();
50
51 template<typename T> sk_sp<const GrBuffer> makeVertexBuffer(const SkTArray<T>& data) {
52 return this->makeVertexBuffer(data.begin(), data.count());
53 }
Chris Dalton1d616352017-05-31 12:51:23 -060054 template<typename T> sk_sp<const GrBuffer> makeVertexBuffer(const std::vector<T>& data) {
55 return this->makeVertexBuffer(data.data(), data.size());
56 }
Chris Dalton114a3c02017-05-26 15:17:19 -060057 template<typename T> sk_sp<const GrBuffer> makeVertexBuffer(const T* data, int count);
58
59 void drawMesh(const GrMesh& mesh);
60
61private:
62 GrOpFlushState* fState;
63};
64
65struct Box {
66 float fX, fY;
67 GrColor fColor;
68};
69
70////////////////////////////////////////////////////////////////////////////////////////////////////
71
72/**
73 * This is a GPU-backend specific test. It tries to test all possible usecases of GrMesh. The test
74 * works by drawing checkerboards of colored boxes, reading back the pixels, and comparing with
75 * expected results. The boxes are drawn on integer boundaries and the (opaque) colors are chosen
76 * from the set (r,g,b) = (0,255)^3, so the GPU renderings ought to produce exact matches.
77 */
78
Robert Phillips88a32ef2018-06-07 11:05:56 -040079static void run_test(GrContext* context, const char* testName, skiatest::Reporter*,
80 const sk_sp<GrRenderTargetContext>&, const SkBitmap& gold,
81 std::function<void(DrawMeshHelper*)> testFn);
Chris Dalton114a3c02017-05-26 15:17:19 -060082
83DEF_GPUTEST_FOR_RENDERING_CONTEXTS(GrMeshTest, reporter, ctxInfo) {
Robert Phillips88a32ef2018-06-07 11:05:56 -040084 GrContext* context = ctxInfo.grContext();
Chris Dalton114a3c02017-05-26 15:17:19 -060085
Greg Daniel4065d452018-11-16 15:43:41 -050086 const GrBackendFormat format =
87 context->contextPriv().caps()->getBackendFormatFromColorType(kRGBA_8888_SkColorType);
88
Robert Phillips0c4b7b12018-03-06 08:20:37 -050089 sk_sp<GrRenderTargetContext> rtc(context->contextPriv().makeDeferredRenderTargetContext(
Brian Salomon23356442018-11-30 15:33:19 -050090 format, SkBackingFit::kExact, kImageWidth, kImageHeight, kRGBA_8888_GrPixelConfig,
91 nullptr));
Chris Dalton114a3c02017-05-26 15:17:19 -060092 if (!rtc) {
93 ERRORF(reporter, "could not create render target context.");
94 return;
95 }
96
97 SkTArray<Box> boxes;
98 SkTArray<std::array<Box, 4>> vertexData;
99 SkBitmap gold;
100
101 // ---- setup ----------
102
103 SkPaint paint;
104 paint.setBlendMode(SkBlendMode::kSrc);
105 gold.allocN32Pixels(kImageWidth, kImageHeight);
106
107 SkCanvas goldCanvas(gold);
108
109 for (int y = 0; y < kBoxCountY; ++y) {
110 for (int x = 0; x < kBoxCountX; ++x) {
111 int c = y + x;
112 int rgb[3] = {-(c & 1) & 0xff, -((c >> 1) & 1) & 0xff, -((c >> 2) & 1) & 0xff};
113
114 const Box box = boxes.push_back() = {
Brian Salomon23356442018-11-30 15:33:19 -0500115 float(x * kBoxSize),
116 float(y * kBoxSize),
117 GrColorPackRGBA(rgb[0], rgb[1], rgb[2], 255)
Chris Dalton114a3c02017-05-26 15:17:19 -0600118 };
119
120 std::array<Box, 4>& boxVertices = vertexData.push_back();
121 for (int i = 0; i < 4; ++i) {
122 boxVertices[i] = {
Brian Salomon23356442018-11-30 15:33:19 -0500123 box.fX + (i / 2) * kBoxSize,
124 box.fY + (i % 2) * kBoxSize,
125 box.fColor
Chris Dalton114a3c02017-05-26 15:17:19 -0600126 };
127 }
128
129 paint.setARGB(255, rgb[0], rgb[1], rgb[2]);
130 goldCanvas.drawRect(SkRect::MakeXYWH(box.fX, box.fY, kBoxSize, kBoxSize), paint);
131 }
132 }
133
134 goldCanvas.flush();
135
136 // ---- tests ----------
137
Brian Salomon23356442018-11-30 15:33:19 -0500138#define VALIDATE(buff) \
139 do { \
140 if (!buff) { \
141 ERRORF(reporter, #buff " is null."); \
142 return; \
143 } \
144 } while (0)
Chris Dalton114a3c02017-05-26 15:17:19 -0600145
Robert Phillips88a32ef2018-06-07 11:05:56 -0400146 run_test(context, "setNonIndexedNonInstanced", reporter, rtc, gold,
147 [&](DrawMeshHelper* helper) {
148 SkTArray<Box> expandedVertexData;
149 for (int i = 0; i < kBoxCount; ++i) {
150 for (int j = 0; j < 6; ++j) {
151 expandedVertexData.push_back(vertexData[i][kIndexPattern[j]]);
152 }
153 }
Chris Dalton114a3c02017-05-26 15:17:19 -0600154
Robert Phillips88a32ef2018-06-07 11:05:56 -0400155 // Draw boxes one line at a time to exercise base vertex.
156 auto vbuff = helper->makeVertexBuffer(expandedVertexData);
157 VALIDATE(vbuff);
158 for (int y = 0; y < kBoxCountY; ++y) {
159 GrMesh mesh(GrPrimitiveType::kTriangles);
160 mesh.setNonIndexedNonInstanced(kBoxCountX * 6);
161 mesh.setVertexData(vbuff.get(), y * kBoxCountX * 6);
162 helper->drawMesh(mesh);
163 }
164 });
Chris Dalton114a3c02017-05-26 15:17:19 -0600165
Robert Phillips88a32ef2018-06-07 11:05:56 -0400166 run_test(context, "setIndexed", reporter, rtc, gold, [&](DrawMeshHelper* helper) {
Chris Dalton114a3c02017-05-26 15:17:19 -0600167 auto ibuff = helper->getIndexBuffer();
168 VALIDATE(ibuff);
169 auto vbuff = helper->makeVertexBuffer(vertexData);
170 VALIDATE(vbuff);
171 int baseRepetition = 0;
172 int i = 0;
173
174 // Start at various repetitions within the patterned index buffer to exercise base index.
175 while (i < kBoxCount) {
176 GR_STATIC_ASSERT(kIndexPatternRepeatCount >= 3);
177 int repetitionCount = SkTMin(3 - baseRepetition, kBoxCount - i);
178
Chris Dalton3809bab2017-06-13 10:55:06 -0600179 GrMesh mesh(GrPrimitiveType::kTriangles);
Chris Dalton114a3c02017-05-26 15:17:19 -0600180 mesh.setIndexed(ibuff.get(), repetitionCount * 6, baseRepetition * 6,
Brian Salomon802cb312018-06-08 18:05:20 -0400181 baseRepetition * 4, (baseRepetition + repetitionCount) * 4 - 1,
182 GrPrimitiveRestart::kNo);
Chris Dalton114a3c02017-05-26 15:17:19 -0600183 mesh.setVertexData(vbuff.get(), (i - baseRepetition) * 4);
184 helper->drawMesh(mesh);
185
186 baseRepetition = (baseRepetition + 1) % 3;
187 i += repetitionCount;
188 }
189 });
190
Robert Phillips88a32ef2018-06-07 11:05:56 -0400191 run_test(context, "setIndexedPatterned", reporter, rtc, gold, [&](DrawMeshHelper* helper) {
Chris Dalton114a3c02017-05-26 15:17:19 -0600192 auto ibuff = helper->getIndexBuffer();
193 VALIDATE(ibuff);
194 auto vbuff = helper->makeVertexBuffer(vertexData);
195 VALIDATE(vbuff);
196
197 // Draw boxes one line at a time to exercise base vertex. setIndexedPatterned does not
198 // support a base index.
199 for (int y = 0; y < kBoxCountY; ++y) {
Chris Dalton3809bab2017-06-13 10:55:06 -0600200 GrMesh mesh(GrPrimitiveType::kTriangles);
Chris Dalton114a3c02017-05-26 15:17:19 -0600201 mesh.setIndexedPatterned(ibuff.get(), 6, 4, kBoxCountX, kIndexPatternRepeatCount);
202 mesh.setVertexData(vbuff.get(), y * kBoxCountX * 4);
203 helper->drawMesh(mesh);
204 }
205 });
Chris Dalton1d616352017-05-31 12:51:23 -0600206
207 for (bool indexed : {false, true}) {
Brian Salomonc7fe0f72018-05-11 10:14:21 -0400208 if (!context->contextPriv().caps()->instanceAttribSupport()) {
Chris Dalton1d616352017-05-31 12:51:23 -0600209 break;
210 }
211
Robert Phillips88a32ef2018-06-07 11:05:56 -0400212 run_test(context, indexed ? "setIndexedInstanced" : "setInstanced",
Chris Dalton1d616352017-05-31 12:51:23 -0600213 reporter, rtc, gold, [&](DrawMeshHelper* helper) {
214 auto idxbuff = indexed ? helper->getIndexBuffer() : nullptr;
215 auto instbuff = helper->makeVertexBuffer(boxes);
216 VALIDATE(instbuff);
217 auto vbuff = helper->makeVertexBuffer(std::vector<float>{0,0, 0,1, 1,0, 1,1});
218 VALIDATE(vbuff);
219 auto vbuff2 = helper->makeVertexBuffer( // for testing base vertex.
220 std::vector<float>{-1,-1, -1,-1, 0,0, 0,1, 1,0, 1,1});
221 VALIDATE(vbuff2);
222
223 // Draw boxes one line at a time to exercise base instance, base vertex, and null vertex
224 // buffer. setIndexedInstanced intentionally does not support a base index.
225 for (int y = 0; y < kBoxCountY; ++y) {
Chris Dalton3809bab2017-06-13 10:55:06 -0600226 GrMesh mesh(indexed ? GrPrimitiveType::kTriangles
227 : GrPrimitiveType::kTriangleStrip);
Chris Dalton1d616352017-05-31 12:51:23 -0600228 if (indexed) {
229 VALIDATE(idxbuff);
Brian Salomon802cb312018-06-08 18:05:20 -0400230 mesh.setIndexedInstanced(idxbuff.get(), 6, instbuff.get(), kBoxCountX,
231 y * kBoxCountX, GrPrimitiveRestart::kNo);
Chris Dalton1d616352017-05-31 12:51:23 -0600232 } else {
233 mesh.setInstanced(instbuff.get(), kBoxCountX, y * kBoxCountX, 4);
234 }
235 switch (y % 3) {
236 case 0:
Brian Salomonc7fe0f72018-05-11 10:14:21 -0400237 if (context->contextPriv().caps()->shaderCaps()->vertexIDSupport()) {
Chris Dalton1d616352017-05-31 12:51:23 -0600238 if (y % 2) {
239 // We don't need this call because it's the initial state of GrMesh.
240 mesh.setVertexData(nullptr);
241 }
242 break;
243 }
244 // Fallthru.
245 case 1:
246 mesh.setVertexData(vbuff.get());
247 break;
248 case 2:
249 mesh.setVertexData(vbuff2.get(), 2);
250 break;
251 }
252 helper->drawMesh(mesh);
253 }
254 });
255 }
Chris Dalton114a3c02017-05-26 15:17:19 -0600256}
257
258////////////////////////////////////////////////////////////////////////////////////////////////////
259
260class GrMeshTestOp : public GrDrawOp {
261public:
262 DEFINE_OP_CLASS_ID
263
Robert Phillips88a32ef2018-06-07 11:05:56 -0400264 static std::unique_ptr<GrDrawOp> Make(GrContext* context,
265 std::function<void(DrawMeshHelper*)> testFn) {
Robert Phillipsc994a932018-06-19 13:09:54 -0400266 GrOpMemoryPool* pool = context->contextPriv().opMemoryPool();
267
268 return pool->allocate<GrMeshTestOp>(testFn);
Robert Phillips88a32ef2018-06-07 11:05:56 -0400269 }
270
271private:
Robert Phillips7c525e62018-06-12 10:11:12 -0400272 friend class GrOpMemoryPool; // for ctor
273
Chris Dalton114a3c02017-05-26 15:17:19 -0600274 GrMeshTestOp(std::function<void(DrawMeshHelper*)> testFn)
275 : INHERITED(ClassID())
276 , fTestFn(testFn) {
277 this->setBounds(SkRect::MakeIWH(kImageWidth, kImageHeight),
278 HasAABloat::kNo, IsZeroArea::kNo);
279 }
280
Chris Dalton114a3c02017-05-26 15:17:19 -0600281 const char* name() const override { return "GrMeshTestOp"; }
282 FixedFunctionFlags fixedFunctionFlags() const override { return FixedFunctionFlags::kNone; }
Chris Dalton4b62aed2019-01-15 11:53:00 -0700283 GrProcessorSet::Analysis finalize(const GrCaps&, const GrAppliedClip*) override {
284 return GrProcessorSet::EmptySetAnalysis();
Brian Salomonf86d37b2017-06-16 10:04:34 -0400285 }
Chris Dalton114a3c02017-05-26 15:17:19 -0600286 void onPrepare(GrOpFlushState*) override {}
Brian Salomon588cec72018-11-14 13:56:37 -0500287 void onExecute(GrOpFlushState* state, const SkRect& chainBounds) override {
Chris Dalton114a3c02017-05-26 15:17:19 -0600288 DrawMeshHelper helper(state);
289 fTestFn(&helper);
290 }
291
292 std::function<void(DrawMeshHelper*)> fTestFn;
293
294 typedef GrDrawOp INHERITED;
295};
296
297class GrMeshTestProcessor : public GrGeometryProcessor {
298public:
Chris Dalton1d616352017-05-31 12:51:23 -0600299 GrMeshTestProcessor(bool instanced, bool hasVertexBuffer)
Brian Salomon92be2f72018-06-19 14:33:47 -0400300 : INHERITED(kGrMeshTestProcessor_ClassID) {
Chris Dalton1d616352017-05-31 12:51:23 -0600301 if (instanced) {
Brian Osmand4c29702018-09-14 16:16:55 -0400302 fInstanceLocation = {"location", kFloat2_GrVertexAttribType, kHalf2_GrSLType};
Brian Osmanf04fb3c2018-11-12 15:34:00 -0500303 fInstanceColor = {"color", kUByte4_norm_GrVertexAttribType, kHalf4_GrSLType};
304 this->setInstanceAttributes(&fInstanceLocation, 2);
Chris Dalton1d616352017-05-31 12:51:23 -0600305 if (hasVertexBuffer) {
Brian Osmanf04fb3c2018-11-12 15:34:00 -0500306 fVertexPosition = {"vertex", kFloat2_GrVertexAttribType, kHalf2_GrSLType};
307 this->setVertexAttributes(&fVertexPosition, 1);
Chris Dalton1d616352017-05-31 12:51:23 -0600308 }
Chris Dalton1d616352017-05-31 12:51:23 -0600309 } else {
Brian Osmanf04fb3c2018-11-12 15:34:00 -0500310 fVertexPosition = {"vertex", kFloat2_GrVertexAttribType, kHalf2_GrSLType};
311 fVertexColor = {"color", kUByte4_norm_GrVertexAttribType, kHalf4_GrSLType};
312 this->setVertexAttributes(&fVertexPosition, 2);
Chris Dalton1d616352017-05-31 12:51:23 -0600313 }
Chris Dalton114a3c02017-05-26 15:17:19 -0600314 }
315
316 const char* name() const override { return "GrMeshTest Processor"; }
317
Brian Osmanf04fb3c2018-11-12 15:34:00 -0500318 const Attribute& inColor() const {
319 return fVertexColor.isInitialized() ? fVertexColor : fInstanceColor;
320 }
321
Chris Dalton1d616352017-05-31 12:51:23 -0600322 void getGLSLProcessorKey(const GrShaderCaps&, GrProcessorKeyBuilder* b) const final {
Brian Salomon92be2f72018-06-19 14:33:47 -0400323 b->add32(fInstanceLocation.isInitialized());
Brian Osmanf04fb3c2018-11-12 15:34:00 -0500324 b->add32(fVertexPosition.isInitialized());
Chris Dalton1d616352017-05-31 12:51:23 -0600325 }
Chris Dalton114a3c02017-05-26 15:17:19 -0600326
327 GrGLSLPrimitiveProcessor* createGLSLInstance(const GrShaderCaps&) const final;
328
Brian Salomon92be2f72018-06-19 14:33:47 -0400329private:
Brian Osmanf04fb3c2018-11-12 15:34:00 -0500330 Attribute fVertexPosition;
331 Attribute fVertexColor;
Brian Salomon92be2f72018-06-19 14:33:47 -0400332
333 Attribute fInstanceLocation;
Brian Osmanf04fb3c2018-11-12 15:34:00 -0500334 Attribute fInstanceColor;
Chris Dalton114a3c02017-05-26 15:17:19 -0600335
336 friend class GLSLMeshTestProcessor;
337 typedef GrGeometryProcessor INHERITED;
338};
339
340class GLSLMeshTestProcessor : public GrGLSLGeometryProcessor {
341 void setData(const GrGLSLProgramDataManager& pdman, const GrPrimitiveProcessor&,
342 FPCoordTransformIter&& transformIter) final {}
343
344 void onEmitCode(EmitArgs& args, GrGPArgs* gpArgs) final {
345 const GrMeshTestProcessor& mp = args.fGP.cast<GrMeshTestProcessor>();
346
347 GrGLSLVaryingHandler* varyingHandler = args.fVaryingHandler;
348 varyingHandler->emitAttributes(mp);
Brian Osmanf04fb3c2018-11-12 15:34:00 -0500349 varyingHandler->addPassThroughAttribute(mp.inColor(), args.fOutputColor);
Chris Dalton114a3c02017-05-26 15:17:19 -0600350
351 GrGLSLVertexBuilder* v = args.fVertBuilder;
Brian Salomon92be2f72018-06-19 14:33:47 -0400352 if (!mp.fInstanceLocation.isInitialized()) {
Brian Osmanf04fb3c2018-11-12 15:34:00 -0500353 v->codeAppendf("float2 vertex = %s;", mp.fVertexPosition.name());
Chris Dalton1d616352017-05-31 12:51:23 -0600354 } else {
Brian Osmanf04fb3c2018-11-12 15:34:00 -0500355 if (mp.fVertexPosition.isInitialized()) {
356 v->codeAppendf("float2 offset = %s;", mp.fVertexPosition.name());
Chris Dalton1d616352017-05-31 12:51:23 -0600357 } else {
Ethan Nicholas8aa45692017-09-20 11:24:15 -0400358 v->codeAppend ("float2 offset = float2(sk_VertexID / 2, sk_VertexID % 2);");
Chris Dalton1d616352017-05-31 12:51:23 -0600359 }
Brian Salomon92be2f72018-06-19 14:33:47 -0400360 v->codeAppendf("float2 vertex = %s + offset * %i;", mp.fInstanceLocation.name(),
Brian Salomon70132d02018-05-29 15:33:06 -0400361 kBoxSize);
Chris Dalton1d616352017-05-31 12:51:23 -0600362 }
Ethan Nicholas8aa45692017-09-20 11:24:15 -0400363 gpArgs->fPositionVar.set(kFloat2_GrSLType, "vertex");
Chris Dalton114a3c02017-05-26 15:17:19 -0600364
Chris Dalton60283612018-02-14 13:38:14 -0700365 GrGLSLFPFragmentBuilder* f = args.fFragBuilder;
Ethan Nicholasf7b88202017-09-18 14:10:39 -0400366 f->codeAppendf("%s = half4(1);", args.fOutputCoverage);
Chris Dalton114a3c02017-05-26 15:17:19 -0600367 }
368};
369
370GrGLSLPrimitiveProcessor* GrMeshTestProcessor::createGLSLInstance(const GrShaderCaps&) const {
371 return new GLSLMeshTestProcessor;
372}
373
374////////////////////////////////////////////////////////////////////////////////////////////////////
375
376template<typename T>
377sk_sp<const GrBuffer> DrawMeshHelper::makeVertexBuffer(const T* data, int count) {
378 return sk_sp<const GrBuffer>(
379 fState->resourceProvider()->createBuffer(
380 count * sizeof(T), kVertex_GrBufferType, kDynamic_GrAccessPattern,
Chris Daltond004e0b2018-09-27 09:28:03 -0600381 GrResourceProvider::Flags::kNoPendingIO |
382 GrResourceProvider::Flags::kRequireGpuMemory, data));
Chris Dalton114a3c02017-05-26 15:17:19 -0600383}
384
385sk_sp<const GrBuffer> DrawMeshHelper::getIndexBuffer() {
386 GR_DEFINE_STATIC_UNIQUE_KEY(gIndexBufferKey);
Brian Salomond28a79d2017-10-16 13:01:07 -0400387 return fState->resourceProvider()->findOrCreatePatternedIndexBuffer(
388 kIndexPattern, 6, kIndexPatternRepeatCount, 4, gIndexBufferKey);
Chris Dalton114a3c02017-05-26 15:17:19 -0600389}
390
391void DrawMeshHelper::drawMesh(const GrMesh& mesh) {
Robert Phillips2890fbf2017-07-26 15:48:41 -0400392 GrRenderTargetProxy* proxy = fState->drawOpArgs().fProxy;
Chris Dalton916c4982018-08-15 00:53:25 -0600393 GrPipeline pipeline(proxy, GrScissorTest::kDisabled, SkBlendMode::kSrc);
Chris Dalton1d616352017-05-31 12:51:23 -0600394 GrMeshTestProcessor mtp(mesh.isInstanced(), mesh.hasVertexData());
Brian Salomon49348902018-06-26 09:12:38 -0400395 fState->rtCommandBuffer()->draw(mtp, pipeline, nullptr, nullptr, &mesh, 1,
Greg Daniel500d58b2017-08-24 15:59:33 -0400396 SkRect::MakeIWH(kImageWidth, kImageHeight));
Chris Dalton114a3c02017-05-26 15:17:19 -0600397}
398
Robert Phillips88a32ef2018-06-07 11:05:56 -0400399static void run_test(GrContext* context, const char* testName, skiatest::Reporter* reporter,
Chris Dalton114a3c02017-05-26 15:17:19 -0600400 const sk_sp<GrRenderTargetContext>& rtc, const SkBitmap& gold,
401 std::function<void(DrawMeshHelper*)> testFn) {
402 const int w = gold.width(), h = gold.height(), rowBytes = gold.rowBytes();
403 const uint32_t* goldPx = reinterpret_cast<const uint32_t*>(gold.getPixels());
404 if (h != rtc->height() || w != rtc->width()) {
405 ERRORF(reporter, "[%s] expectation and rtc not compatible (?).", testName);
406 return;
407 }
408 if (sizeof(uint32_t) * kImageWidth != gold.rowBytes()) {
409 ERRORF(reporter, "unexpected row bytes in gold image.", testName);
410 return;
411 }
412
413 SkAutoSTMalloc<kImageHeight * kImageWidth, uint32_t> resultPx(h * rowBytes);
Brian Osman9a9baae2018-11-05 15:06:26 -0500414 rtc->clear(nullptr, SkPMColor4f::FromBytes_RGBA(0xbaaaaaad),
415 GrRenderTargetContext::CanClearFullscreen::kYes);
Robert Phillips88a32ef2018-06-07 11:05:56 -0400416 rtc->priv().testingOnly_addDrawOp(GrMeshTestOp::Make(context, testFn));
Chris Dalton114a3c02017-05-26 15:17:19 -0600417 rtc->readPixels(gold.info(), resultPx, rowBytes, 0, 0, 0);
418 for (int y = 0; y < h; ++y) {
419 for (int x = 0; x < w; ++x) {
420 uint32_t expected = goldPx[y * kImageWidth + x];
421 uint32_t actual = resultPx[y * kImageWidth + x];
422 if (expected != actual) {
423 ERRORF(reporter, "[%s] pixel (%i,%i): got 0x%x expected 0x%x",
424 testName, x, y, actual, expected);
425 return;
426 }
427 }
428 }
429}