blob: ec19d1650e0eadc53c3a2e89b75a286b0b5c169b [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
Robert Phillips0c4b7b12018-03-06 08:20:37 -050086 sk_sp<GrRenderTargetContext> rtc(context->contextPriv().makeDeferredRenderTargetContext(
Greg Daniel919c9e72018-11-09 10:31:55 -050087 SkBackingFit::kExact, kImageWidth, kImageHeight,
88 kRGBA_8888_GrPixelConfig, nullptr));
Chris Dalton114a3c02017-05-26 15:17:19 -060089 if (!rtc) {
90 ERRORF(reporter, "could not create render target context.");
91 return;
92 }
93
94 SkTArray<Box> boxes;
95 SkTArray<std::array<Box, 4>> vertexData;
96 SkBitmap gold;
97
98 // ---- setup ----------
99
100 SkPaint paint;
101 paint.setBlendMode(SkBlendMode::kSrc);
102 gold.allocN32Pixels(kImageWidth, kImageHeight);
103
104 SkCanvas goldCanvas(gold);
105
106 for (int y = 0; y < kBoxCountY; ++y) {
107 for (int x = 0; x < kBoxCountX; ++x) {
108 int c = y + x;
109 int rgb[3] = {-(c & 1) & 0xff, -((c >> 1) & 1) & 0xff, -((c >> 2) & 1) & 0xff};
110
111 const Box box = boxes.push_back() = {
112 float(x * kBoxSize),
113 float(y * kBoxSize),
114 GrColorPackRGBA(rgb[0], rgb[1], rgb[2], 255)
115 };
116
117 std::array<Box, 4>& boxVertices = vertexData.push_back();
118 for (int i = 0; i < 4; ++i) {
119 boxVertices[i] = {
120 box.fX + (i/2) * kBoxSize,
121 box.fY + (i%2) * kBoxSize,
122 box.fColor
123 };
124 }
125
126 paint.setARGB(255, rgb[0], rgb[1], rgb[2]);
127 goldCanvas.drawRect(SkRect::MakeXYWH(box.fX, box.fY, kBoxSize, kBoxSize), paint);
128 }
129 }
130
131 goldCanvas.flush();
132
133 // ---- tests ----------
134
135#define VALIDATE(buff) \
136 if (!buff) { \
137 ERRORF(reporter, #buff " is null."); \
138 return; \
139 }
140
Robert Phillips88a32ef2018-06-07 11:05:56 -0400141 run_test(context, "setNonIndexedNonInstanced", reporter, rtc, gold,
142 [&](DrawMeshHelper* helper) {
143 SkTArray<Box> expandedVertexData;
144 for (int i = 0; i < kBoxCount; ++i) {
145 for (int j = 0; j < 6; ++j) {
146 expandedVertexData.push_back(vertexData[i][kIndexPattern[j]]);
147 }
148 }
Chris Dalton114a3c02017-05-26 15:17:19 -0600149
Robert Phillips88a32ef2018-06-07 11:05:56 -0400150 // Draw boxes one line at a time to exercise base vertex.
151 auto vbuff = helper->makeVertexBuffer(expandedVertexData);
152 VALIDATE(vbuff);
153 for (int y = 0; y < kBoxCountY; ++y) {
154 GrMesh mesh(GrPrimitiveType::kTriangles);
155 mesh.setNonIndexedNonInstanced(kBoxCountX * 6);
156 mesh.setVertexData(vbuff.get(), y * kBoxCountX * 6);
157 helper->drawMesh(mesh);
158 }
159 });
Chris Dalton114a3c02017-05-26 15:17:19 -0600160
Robert Phillips88a32ef2018-06-07 11:05:56 -0400161 run_test(context, "setIndexed", reporter, rtc, gold, [&](DrawMeshHelper* helper) {
Chris Dalton114a3c02017-05-26 15:17:19 -0600162 auto ibuff = helper->getIndexBuffer();
163 VALIDATE(ibuff);
164 auto vbuff = helper->makeVertexBuffer(vertexData);
165 VALIDATE(vbuff);
166 int baseRepetition = 0;
167 int i = 0;
168
169 // Start at various repetitions within the patterned index buffer to exercise base index.
170 while (i < kBoxCount) {
171 GR_STATIC_ASSERT(kIndexPatternRepeatCount >= 3);
172 int repetitionCount = SkTMin(3 - baseRepetition, kBoxCount - i);
173
Chris Dalton3809bab2017-06-13 10:55:06 -0600174 GrMesh mesh(GrPrimitiveType::kTriangles);
Chris Dalton114a3c02017-05-26 15:17:19 -0600175 mesh.setIndexed(ibuff.get(), repetitionCount * 6, baseRepetition * 6,
Brian Salomon802cb312018-06-08 18:05:20 -0400176 baseRepetition * 4, (baseRepetition + repetitionCount) * 4 - 1,
177 GrPrimitiveRestart::kNo);
Chris Dalton114a3c02017-05-26 15:17:19 -0600178 mesh.setVertexData(vbuff.get(), (i - baseRepetition) * 4);
179 helper->drawMesh(mesh);
180
181 baseRepetition = (baseRepetition + 1) % 3;
182 i += repetitionCount;
183 }
184 });
185
Robert Phillips88a32ef2018-06-07 11:05:56 -0400186 run_test(context, "setIndexedPatterned", reporter, rtc, gold, [&](DrawMeshHelper* helper) {
Chris Dalton114a3c02017-05-26 15:17:19 -0600187 auto ibuff = helper->getIndexBuffer();
188 VALIDATE(ibuff);
189 auto vbuff = helper->makeVertexBuffer(vertexData);
190 VALIDATE(vbuff);
191
192 // Draw boxes one line at a time to exercise base vertex. setIndexedPatterned does not
193 // support a base index.
194 for (int y = 0; y < kBoxCountY; ++y) {
Chris Dalton3809bab2017-06-13 10:55:06 -0600195 GrMesh mesh(GrPrimitiveType::kTriangles);
Chris Dalton114a3c02017-05-26 15:17:19 -0600196 mesh.setIndexedPatterned(ibuff.get(), 6, 4, kBoxCountX, kIndexPatternRepeatCount);
197 mesh.setVertexData(vbuff.get(), y * kBoxCountX * 4);
198 helper->drawMesh(mesh);
199 }
200 });
Chris Dalton1d616352017-05-31 12:51:23 -0600201
202 for (bool indexed : {false, true}) {
Brian Salomonc7fe0f72018-05-11 10:14:21 -0400203 if (!context->contextPriv().caps()->instanceAttribSupport()) {
Chris Dalton1d616352017-05-31 12:51:23 -0600204 break;
205 }
206
Robert Phillips88a32ef2018-06-07 11:05:56 -0400207 run_test(context, indexed ? "setIndexedInstanced" : "setInstanced",
Chris Dalton1d616352017-05-31 12:51:23 -0600208 reporter, rtc, gold, [&](DrawMeshHelper* helper) {
209 auto idxbuff = indexed ? helper->getIndexBuffer() : nullptr;
210 auto instbuff = helper->makeVertexBuffer(boxes);
211 VALIDATE(instbuff);
212 auto vbuff = helper->makeVertexBuffer(std::vector<float>{0,0, 0,1, 1,0, 1,1});
213 VALIDATE(vbuff);
214 auto vbuff2 = helper->makeVertexBuffer( // for testing base vertex.
215 std::vector<float>{-1,-1, -1,-1, 0,0, 0,1, 1,0, 1,1});
216 VALIDATE(vbuff2);
217
218 // Draw boxes one line at a time to exercise base instance, base vertex, and null vertex
219 // buffer. setIndexedInstanced intentionally does not support a base index.
220 for (int y = 0; y < kBoxCountY; ++y) {
Chris Dalton3809bab2017-06-13 10:55:06 -0600221 GrMesh mesh(indexed ? GrPrimitiveType::kTriangles
222 : GrPrimitiveType::kTriangleStrip);
Chris Dalton1d616352017-05-31 12:51:23 -0600223 if (indexed) {
224 VALIDATE(idxbuff);
Brian Salomon802cb312018-06-08 18:05:20 -0400225 mesh.setIndexedInstanced(idxbuff.get(), 6, instbuff.get(), kBoxCountX,
226 y * kBoxCountX, GrPrimitiveRestart::kNo);
Chris Dalton1d616352017-05-31 12:51:23 -0600227 } else {
228 mesh.setInstanced(instbuff.get(), kBoxCountX, y * kBoxCountX, 4);
229 }
230 switch (y % 3) {
231 case 0:
Brian Salomonc7fe0f72018-05-11 10:14:21 -0400232 if (context->contextPriv().caps()->shaderCaps()->vertexIDSupport()) {
Chris Dalton1d616352017-05-31 12:51:23 -0600233 if (y % 2) {
234 // We don't need this call because it's the initial state of GrMesh.
235 mesh.setVertexData(nullptr);
236 }
237 break;
238 }
239 // Fallthru.
240 case 1:
241 mesh.setVertexData(vbuff.get());
242 break;
243 case 2:
244 mesh.setVertexData(vbuff2.get(), 2);
245 break;
246 }
247 helper->drawMesh(mesh);
248 }
249 });
250 }
Chris Dalton114a3c02017-05-26 15:17:19 -0600251}
252
253////////////////////////////////////////////////////////////////////////////////////////////////////
254
255class GrMeshTestOp : public GrDrawOp {
256public:
257 DEFINE_OP_CLASS_ID
258
Robert Phillips88a32ef2018-06-07 11:05:56 -0400259 static std::unique_ptr<GrDrawOp> Make(GrContext* context,
260 std::function<void(DrawMeshHelper*)> testFn) {
Robert Phillipsc994a932018-06-19 13:09:54 -0400261 GrOpMemoryPool* pool = context->contextPriv().opMemoryPool();
262
263 return pool->allocate<GrMeshTestOp>(testFn);
Robert Phillips88a32ef2018-06-07 11:05:56 -0400264 }
265
266private:
Robert Phillips7c525e62018-06-12 10:11:12 -0400267 friend class GrOpMemoryPool; // for ctor
268
Chris Dalton114a3c02017-05-26 15:17:19 -0600269 GrMeshTestOp(std::function<void(DrawMeshHelper*)> testFn)
270 : INHERITED(ClassID())
271 , fTestFn(testFn) {
272 this->setBounds(SkRect::MakeIWH(kImageWidth, kImageHeight),
273 HasAABloat::kNo, IsZeroArea::kNo);
274 }
275
Chris Dalton114a3c02017-05-26 15:17:19 -0600276 const char* name() const override { return "GrMeshTestOp"; }
277 FixedFunctionFlags fixedFunctionFlags() const override { return FixedFunctionFlags::kNone; }
Brian Osman532b3f92018-07-11 10:02:07 -0400278 RequiresDstTexture finalize(const GrCaps&, const GrAppliedClip*) override {
Brian Salomonf86d37b2017-06-16 10:04:34 -0400279 return RequiresDstTexture::kNo;
280 }
Chris Dalton114a3c02017-05-26 15:17:19 -0600281 void onPrepare(GrOpFlushState*) override {}
282 void onExecute(GrOpFlushState* state) override {
283 DrawMeshHelper helper(state);
284 fTestFn(&helper);
285 }
286
287 std::function<void(DrawMeshHelper*)> fTestFn;
288
289 typedef GrDrawOp INHERITED;
290};
291
292class GrMeshTestProcessor : public GrGeometryProcessor {
293public:
Chris Dalton1d616352017-05-31 12:51:23 -0600294 GrMeshTestProcessor(bool instanced, bool hasVertexBuffer)
Brian Salomon92be2f72018-06-19 14:33:47 -0400295 : INHERITED(kGrMeshTestProcessor_ClassID) {
Chris Dalton1d616352017-05-31 12:51:23 -0600296 if (instanced) {
Brian Osmand4c29702018-09-14 16:16:55 -0400297 fInstanceLocation = {"location", kFloat2_GrVertexAttribType, kHalf2_GrSLType};
Brian Osmanf04fb3c2018-11-12 15:34:00 -0500298 fInstanceColor = {"color", kUByte4_norm_GrVertexAttribType, kHalf4_GrSLType};
299 this->setInstanceAttributes(&fInstanceLocation, 2);
Chris Dalton1d616352017-05-31 12:51:23 -0600300 if (hasVertexBuffer) {
Brian Osmanf04fb3c2018-11-12 15:34:00 -0500301 fVertexPosition = {"vertex", kFloat2_GrVertexAttribType, kHalf2_GrSLType};
302 this->setVertexAttributes(&fVertexPosition, 1);
Chris Dalton1d616352017-05-31 12:51:23 -0600303 }
Chris Dalton1d616352017-05-31 12:51:23 -0600304 } else {
Brian Osmanf04fb3c2018-11-12 15:34:00 -0500305 fVertexPosition = {"vertex", kFloat2_GrVertexAttribType, kHalf2_GrSLType};
306 fVertexColor = {"color", kUByte4_norm_GrVertexAttribType, kHalf4_GrSLType};
307 this->setVertexAttributes(&fVertexPosition, 2);
Chris Dalton1d616352017-05-31 12:51:23 -0600308 }
Chris Dalton114a3c02017-05-26 15:17:19 -0600309 }
310
311 const char* name() const override { return "GrMeshTest Processor"; }
312
Brian Osmanf04fb3c2018-11-12 15:34:00 -0500313 const Attribute& inColor() const {
314 return fVertexColor.isInitialized() ? fVertexColor : fInstanceColor;
315 }
316
Chris Dalton1d616352017-05-31 12:51:23 -0600317 void getGLSLProcessorKey(const GrShaderCaps&, GrProcessorKeyBuilder* b) const final {
Brian Salomon92be2f72018-06-19 14:33:47 -0400318 b->add32(fInstanceLocation.isInitialized());
Brian Osmanf04fb3c2018-11-12 15:34:00 -0500319 b->add32(fVertexPosition.isInitialized());
Chris Dalton1d616352017-05-31 12:51:23 -0600320 }
Chris Dalton114a3c02017-05-26 15:17:19 -0600321
322 GrGLSLPrimitiveProcessor* createGLSLInstance(const GrShaderCaps&) const final;
323
Brian Salomon92be2f72018-06-19 14:33:47 -0400324private:
Brian Osmanf04fb3c2018-11-12 15:34:00 -0500325 Attribute fVertexPosition;
326 Attribute fVertexColor;
Brian Salomon92be2f72018-06-19 14:33:47 -0400327
328 Attribute fInstanceLocation;
Brian Osmanf04fb3c2018-11-12 15:34:00 -0500329 Attribute fInstanceColor;
Chris Dalton114a3c02017-05-26 15:17:19 -0600330
331 friend class GLSLMeshTestProcessor;
332 typedef GrGeometryProcessor INHERITED;
333};
334
335class GLSLMeshTestProcessor : public GrGLSLGeometryProcessor {
336 void setData(const GrGLSLProgramDataManager& pdman, const GrPrimitiveProcessor&,
337 FPCoordTransformIter&& transformIter) final {}
338
339 void onEmitCode(EmitArgs& args, GrGPArgs* gpArgs) final {
340 const GrMeshTestProcessor& mp = args.fGP.cast<GrMeshTestProcessor>();
341
342 GrGLSLVaryingHandler* varyingHandler = args.fVaryingHandler;
343 varyingHandler->emitAttributes(mp);
Brian Osmanf04fb3c2018-11-12 15:34:00 -0500344 varyingHandler->addPassThroughAttribute(mp.inColor(), args.fOutputColor);
Chris Dalton114a3c02017-05-26 15:17:19 -0600345
346 GrGLSLVertexBuilder* v = args.fVertBuilder;
Brian Salomon92be2f72018-06-19 14:33:47 -0400347 if (!mp.fInstanceLocation.isInitialized()) {
Brian Osmanf04fb3c2018-11-12 15:34:00 -0500348 v->codeAppendf("float2 vertex = %s;", mp.fVertexPosition.name());
Chris Dalton1d616352017-05-31 12:51:23 -0600349 } else {
Brian Osmanf04fb3c2018-11-12 15:34:00 -0500350 if (mp.fVertexPosition.isInitialized()) {
351 v->codeAppendf("float2 offset = %s;", mp.fVertexPosition.name());
Chris Dalton1d616352017-05-31 12:51:23 -0600352 } else {
Ethan Nicholas8aa45692017-09-20 11:24:15 -0400353 v->codeAppend ("float2 offset = float2(sk_VertexID / 2, sk_VertexID % 2);");
Chris Dalton1d616352017-05-31 12:51:23 -0600354 }
Brian Salomon92be2f72018-06-19 14:33:47 -0400355 v->codeAppendf("float2 vertex = %s + offset * %i;", mp.fInstanceLocation.name(),
Brian Salomon70132d02018-05-29 15:33:06 -0400356 kBoxSize);
Chris Dalton1d616352017-05-31 12:51:23 -0600357 }
Ethan Nicholas8aa45692017-09-20 11:24:15 -0400358 gpArgs->fPositionVar.set(kFloat2_GrSLType, "vertex");
Chris Dalton114a3c02017-05-26 15:17:19 -0600359
Chris Dalton60283612018-02-14 13:38:14 -0700360 GrGLSLFPFragmentBuilder* f = args.fFragBuilder;
Ethan Nicholasf7b88202017-09-18 14:10:39 -0400361 f->codeAppendf("%s = half4(1);", args.fOutputCoverage);
Chris Dalton114a3c02017-05-26 15:17:19 -0600362 }
363};
364
365GrGLSLPrimitiveProcessor* GrMeshTestProcessor::createGLSLInstance(const GrShaderCaps&) const {
366 return new GLSLMeshTestProcessor;
367}
368
369////////////////////////////////////////////////////////////////////////////////////////////////////
370
371template<typename T>
372sk_sp<const GrBuffer> DrawMeshHelper::makeVertexBuffer(const T* data, int count) {
373 return sk_sp<const GrBuffer>(
374 fState->resourceProvider()->createBuffer(
375 count * sizeof(T), kVertex_GrBufferType, kDynamic_GrAccessPattern,
Chris Daltond004e0b2018-09-27 09:28:03 -0600376 GrResourceProvider::Flags::kNoPendingIO |
377 GrResourceProvider::Flags::kRequireGpuMemory, data));
Chris Dalton114a3c02017-05-26 15:17:19 -0600378}
379
380sk_sp<const GrBuffer> DrawMeshHelper::getIndexBuffer() {
381 GR_DEFINE_STATIC_UNIQUE_KEY(gIndexBufferKey);
Brian Salomond28a79d2017-10-16 13:01:07 -0400382 return fState->resourceProvider()->findOrCreatePatternedIndexBuffer(
383 kIndexPattern, 6, kIndexPatternRepeatCount, 4, gIndexBufferKey);
Chris Dalton114a3c02017-05-26 15:17:19 -0600384}
385
386void DrawMeshHelper::drawMesh(const GrMesh& mesh) {
Robert Phillips2890fbf2017-07-26 15:48:41 -0400387 GrRenderTargetProxy* proxy = fState->drawOpArgs().fProxy;
Chris Dalton916c4982018-08-15 00:53:25 -0600388 GrPipeline pipeline(proxy, GrScissorTest::kDisabled, SkBlendMode::kSrc);
Chris Dalton1d616352017-05-31 12:51:23 -0600389 GrMeshTestProcessor mtp(mesh.isInstanced(), mesh.hasVertexData());
Brian Salomon49348902018-06-26 09:12:38 -0400390 fState->rtCommandBuffer()->draw(mtp, pipeline, nullptr, nullptr, &mesh, 1,
Greg Daniel500d58b2017-08-24 15:59:33 -0400391 SkRect::MakeIWH(kImageWidth, kImageHeight));
Chris Dalton114a3c02017-05-26 15:17:19 -0600392}
393
Robert Phillips88a32ef2018-06-07 11:05:56 -0400394static void run_test(GrContext* context, const char* testName, skiatest::Reporter* reporter,
Chris Dalton114a3c02017-05-26 15:17:19 -0600395 const sk_sp<GrRenderTargetContext>& rtc, const SkBitmap& gold,
396 std::function<void(DrawMeshHelper*)> testFn) {
397 const int w = gold.width(), h = gold.height(), rowBytes = gold.rowBytes();
398 const uint32_t* goldPx = reinterpret_cast<const uint32_t*>(gold.getPixels());
399 if (h != rtc->height() || w != rtc->width()) {
400 ERRORF(reporter, "[%s] expectation and rtc not compatible (?).", testName);
401 return;
402 }
403 if (sizeof(uint32_t) * kImageWidth != gold.rowBytes()) {
404 ERRORF(reporter, "unexpected row bytes in gold image.", testName);
405 return;
406 }
407
408 SkAutoSTMalloc<kImageHeight * kImageWidth, uint32_t> resultPx(h * rowBytes);
Brian Osman9a9baae2018-11-05 15:06:26 -0500409 rtc->clear(nullptr, SkPMColor4f::FromBytes_RGBA(0xbaaaaaad),
410 GrRenderTargetContext::CanClearFullscreen::kYes);
Robert Phillips88a32ef2018-06-07 11:05:56 -0400411 rtc->priv().testingOnly_addDrawOp(GrMeshTestOp::Make(context, testFn));
Chris Dalton114a3c02017-05-26 15:17:19 -0600412 rtc->readPixels(gold.info(), resultPx, rowBytes, 0, 0, 0);
413 for (int y = 0; y < h; ++y) {
414 for (int x = 0; x < w; ++x) {
415 uint32_t expected = goldPx[y * kImageWidth + x];
416 uint32_t actual = resultPx[y * kImageWidth + x];
417 if (expected != actual) {
418 ERRORF(reporter, "[%s] pixel (%i,%i): got 0x%x expected 0x%x",
419 testName, x, y, actual, expected);
420 return;
421 }
422 }
423 }
424}