blob: e675335118b33736b83fac3d6c36befd516ef91e [file] [log] [blame]
Brian Salomonbc6b99d2017-01-11 10:32:34 -05001/*
2 * Copyright 2016 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
11#if SK_SUPPORT_GPU
Brian Salomonac70f842017-05-08 10:43:33 -040012#include <random>
Brian Salomonc65aec92017-03-09 09:03:58 -050013#include "GrClip.h"
Brian Salomonbc6b99d2017-01-11 10:32:34 -050014#include "GrContext.h"
Robert Phillips1afd4cd2018-01-08 13:40:32 -050015#include "GrContextPriv.h"
Brian Salomonbc6b99d2017-01-11 10:32:34 -050016#include "GrGpuResource.h"
Robert Phillips0bd24dc2018-01-16 08:06:32 -050017#include "GrProxyProvider.h"
Brian Salomonbc6b99d2017-01-11 10:32:34 -050018#include "GrRenderTargetContext.h"
19#include "GrRenderTargetContextPriv.h"
20#include "GrResourceProvider.h"
21#include "glsl/GrGLSLFragmentProcessor.h"
22#include "glsl/GrGLSLFragmentShaderBuilder.h"
Brian Salomon82ddc942017-07-14 12:00:13 -040023#include "ops/GrMeshDrawOp.h"
Brian Salomonbaaf4392017-06-15 09:59:23 -040024#include "ops/GrRectOpFactory.h"
Brian Salomonbc6b99d2017-01-11 10:32:34 -050025
26namespace {
Brian Salomon82ddc942017-07-14 12:00:13 -040027class TestOp : public GrMeshDrawOp {
Brian Salomonbc6b99d2017-01-11 10:32:34 -050028public:
29 DEFINE_OP_CLASS_ID
Brian Salomonaff329b2017-08-11 09:40:37 -040030 static std::unique_ptr<GrDrawOp> Make(std::unique_ptr<GrFragmentProcessor> fp) {
Brian Salomon82ddc942017-07-14 12:00:13 -040031 return std::unique_ptr<GrDrawOp>(new TestOp(std::move(fp)));
32 }
33
Robert Phillips5f567c72017-09-14 08:27:37 -040034 const char* name() const override { return "TestOp"; }
35
Robert Phillipsf1748f52017-09-14 14:11:24 -040036 void visitProxies(const VisitProxyFunc& func) const override {
Robert Phillips5f567c72017-09-14 08:27:37 -040037 fProcessors.visitProxies(func);
38 }
39
Brian Salomon82ddc942017-07-14 12:00:13 -040040 FixedFunctionFlags fixedFunctionFlags() const override { return FixedFunctionFlags::kNone; }
41
Brian Osman9a725dd2017-09-20 09:53:22 -040042 RequiresDstTexture finalize(const GrCaps& caps, const GrAppliedClip* clip,
43 GrPixelConfigIsClamped dstIsClamped) override {
Brian Salomon82ddc942017-07-14 12:00:13 -040044 static constexpr GrProcessorAnalysisColor kUnknownColor;
45 GrColor overrideColor;
46 fProcessors.finalize(kUnknownColor, GrProcessorAnalysisCoverage::kNone, clip, false, caps,
Brian Osman9a725dd2017-09-20 09:53:22 -040047 dstIsClamped, &overrideColor);
Brian Salomon82ddc942017-07-14 12:00:13 -040048 return RequiresDstTexture::kNo;
Brian Salomon649a3412017-03-09 13:50:43 -050049 }
Brian Salomonbc6b99d2017-01-11 10:32:34 -050050
51private:
Brian Salomonaff329b2017-08-11 09:40:37 -040052 TestOp(std::unique_ptr<GrFragmentProcessor> fp)
53 : INHERITED(ClassID()), fProcessors(std::move(fp)) {
Brian Salomon82ddc942017-07-14 12:00:13 -040054 this->setBounds(SkRect::MakeWH(100, 100), HasAABloat::kNo, IsZeroArea::kNo);
55 }
Brian Salomonbc6b99d2017-01-11 10:32:34 -050056
Brian Salomon91326c32017-08-09 16:02:19 -040057 void onPrepareDraws(Target* target) override { return; }
Brian Salomonbc6b99d2017-01-11 10:32:34 -050058
Brian Salomon82ddc942017-07-14 12:00:13 -040059 bool onCombineIfPossible(GrOp* op, const GrCaps& caps) override { return false; }
60
61 GrProcessorSet fProcessors;
62
63 typedef GrMeshDrawOp INHERITED;
Brian Salomonbc6b99d2017-01-11 10:32:34 -050064};
65
66/**
67 * FP used to test ref/IO counts on owned GrGpuResources. Can also be a parent FP to test counts
68 * of resources owned by child FPs.
69 */
70class TestFP : public GrFragmentProcessor {
71public:
Brian Salomonaff329b2017-08-11 09:40:37 -040072 static std::unique_ptr<GrFragmentProcessor> Make(std::unique_ptr<GrFragmentProcessor> child) {
73 return std::unique_ptr<GrFragmentProcessor>(new TestFP(std::move(child)));
Brian Salomonbc6b99d2017-01-11 10:32:34 -050074 }
Brian Salomonaff329b2017-08-11 09:40:37 -040075 static std::unique_ptr<GrFragmentProcessor> Make(const SkTArray<sk_sp<GrTextureProxy>>& proxies,
Brian Salomon559f5562017-11-15 14:28:33 -050076 const SkTArray<sk_sp<GrBuffer>>& buffers) {
77 return std::unique_ptr<GrFragmentProcessor>(new TestFP(proxies, buffers));
Brian Salomonbc6b99d2017-01-11 10:32:34 -050078 }
79
80 const char* name() const override { return "test"; }
81
82 void onGetGLSLProcessorKey(const GrShaderCaps&, GrProcessorKeyBuilder* b) const override {
83 // We don't really care about reusing these.
84 static int32_t gKey = 0;
85 b->add32(sk_atomic_inc(&gKey));
86 }
87
Brian Salomonaff329b2017-08-11 09:40:37 -040088 std::unique_ptr<GrFragmentProcessor> clone() const override {
89 return std::unique_ptr<GrFragmentProcessor>(new TestFP(*this));
Brian Salomonb17e6392017-07-28 13:41:51 -040090 }
91
Brian Salomonbc6b99d2017-01-11 10:32:34 -050092private:
Brian Salomon559f5562017-11-15 14:28:33 -050093 TestFP(const SkTArray<sk_sp<GrTextureProxy>>& proxies, const SkTArray<sk_sp<GrBuffer>>& buffers)
94 : INHERITED(kTestFP_ClassID, kNone_OptimizationFlags), fSamplers(4), fBuffers(4) {
Robert Phillips30f9bc62017-02-22 15:28:38 -050095 for (const auto& proxy : proxies) {
Robert Phillipsfbcef6e2017-06-15 12:07:18 -040096 this->addTextureSampler(&fSamplers.emplace_back(proxy));
Brian Salomonbc6b99d2017-01-11 10:32:34 -050097 }
98 for (const auto& buffer : buffers) {
99 this->addBufferAccess(&fBuffers.emplace_back(kRGBA_8888_GrPixelConfig, buffer.get()));
100 }
Brian Salomonbc6b99d2017-01-11 10:32:34 -0500101 }
102
Brian Salomonaff329b2017-08-11 09:40:37 -0400103 TestFP(std::unique_ptr<GrFragmentProcessor> child)
Brian Salomon559f5562017-11-15 14:28:33 -0500104 : INHERITED(kTestFP_ClassID, kNone_OptimizationFlags), fSamplers(4), fBuffers(4) {
Brian Salomonbc6b99d2017-01-11 10:32:34 -0500105 this->registerChildProcessor(std::move(child));
106 }
107
Brian Salomon96271cd2017-07-31 16:27:23 -0400108 explicit TestFP(const TestFP& that)
Brian Salomon559f5562017-11-15 14:28:33 -0500109 : INHERITED(kTestFP_ClassID, that.optimizationFlags()), fSamplers(4), fBuffers(4) {
Brian Salomonb17e6392017-07-28 13:41:51 -0400110 for (int i = 0; i < that.fSamplers.count(); ++i) {
111 fSamplers.emplace_back(that.fSamplers[i]);
112 this->addTextureSampler(&fSamplers.back());
113 }
114 for (int i = 0; i < that.fBuffers.count(); ++i) {
115 fBuffers.emplace_back(that.fBuffers[i]);
116 this->addBufferAccess(&fBuffers.back());
117 }
Brian Salomon96271cd2017-07-31 16:27:23 -0400118 for (int i = 0; i < that.numChildProcessors(); ++i) {
119 this->registerChildProcessor(that.childProcessor(i).clone());
Brian Salomonb17e6392017-07-28 13:41:51 -0400120 }
121 }
122
Brian Salomonbc6b99d2017-01-11 10:32:34 -0500123 virtual GrGLSLFragmentProcessor* onCreateGLSLInstance() const override {
124 class TestGLSLFP : public GrGLSLFragmentProcessor {
125 public:
126 TestGLSLFP() {}
127 void emitCode(EmitArgs& args) override {
128 GrGLSLFPFragmentBuilder* fragBuilder = args.fFragBuilder;
129 fragBuilder->codeAppendf("%s = %s;", args.fOutputColor, args.fInputColor);
130 }
131
132 private:
133 };
134 return new TestGLSLFP();
135 }
136
137 bool onIsEqual(const GrFragmentProcessor&) const override { return false; }
138
139 GrTAllocator<TextureSampler> fSamplers;
140 GrTAllocator<BufferAccess> fBuffers;
Brian Salomon587e08f2017-01-27 10:59:27 -0500141 typedef GrFragmentProcessor INHERITED;
Brian Salomonbc6b99d2017-01-11 10:32:34 -0500142};
143}
144
Brian Salomonf046e152017-01-11 15:24:47 -0500145template <typename T>
146inline void testingOnly_getIORefCnts(const T* resource, int* refCnt, int* readCnt, int* writeCnt) {
147 *refCnt = resource->fRefCnt;
148 *readCnt = resource->fPendingReads;
149 *writeCnt = resource->fPendingWrites;
Brian Salomonbc6b99d2017-01-11 10:32:34 -0500150}
151
Robert Phillips2f493142017-03-02 18:18:38 -0500152void testingOnly_getIORefCnts(GrTextureProxy* proxy, int* refCnt, int* readCnt, int* writeCnt) {
Robert Phillips30f9bc62017-02-22 15:28:38 -0500153 *refCnt = proxy->getBackingRefCnt_TestOnly();
154 *readCnt = proxy->getPendingReadCnt_TestOnly();
155 *writeCnt = proxy->getPendingWriteCnt_TestOnly();
156}
157
Brian Salomonbc6b99d2017-01-11 10:32:34 -0500158DEF_GPUTEST_FOR_ALL_CONTEXTS(ProcessorRefTest, reporter, ctxInfo) {
159 GrContext* context = ctxInfo.grContext();
Robert Phillips1afd4cd2018-01-08 13:40:32 -0500160 GrProxyProvider* proxyProvider = context->contextPriv().proxyProvider();
Brian Salomonbc6b99d2017-01-11 10:32:34 -0500161
Robert Phillips16d8ec62017-07-27 16:16:25 -0400162 GrSurfaceDesc desc;
163 desc.fOrigin = kTopLeft_GrSurfaceOrigin;
Brian Salomonbc6b99d2017-01-11 10:32:34 -0500164 desc.fWidth = 10;
165 desc.fHeight = 10;
Robert Phillips16d8ec62017-07-27 16:16:25 -0400166 desc.fConfig = kRGBA_8888_GrPixelConfig;
Brian Salomonbc6b99d2017-01-11 10:32:34 -0500167
Brian Salomonb17e6392017-07-28 13:41:51 -0400168 for (bool makeClone : {false, true}) {
169 for (int parentCnt = 0; parentCnt < 2; parentCnt++) {
170 sk_sp<GrRenderTargetContext> renderTargetContext(
171 context->makeDeferredRenderTargetContext( SkBackingFit::kApprox, 1, 1,
172 kRGBA_8888_GrPixelConfig, nullptr));
Brian Salomonbc6b99d2017-01-11 10:32:34 -0500173 {
Brian Salomonb17e6392017-07-28 13:41:51 -0400174 bool texelBufferSupport = context->caps()->shaderCaps()->texelBufferSupport();
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500175 sk_sp<GrTextureProxy> proxy1 =
176 proxyProvider->createProxy(desc, SkBackingFit::kExact, SkBudgeted::kYes);
177 sk_sp<GrTextureProxy> proxy2 =
178 proxyProvider->createProxy(desc, SkBackingFit::kExact, SkBudgeted::kYes);
179 sk_sp<GrTextureProxy> proxy3 =
180 proxyProvider->createProxy(desc, SkBackingFit::kExact, SkBudgeted::kYes);
181 sk_sp<GrTextureProxy> proxy4 =
182 proxyProvider->createProxy(desc, SkBackingFit::kExact, SkBudgeted::kYes);
Brian Salomonb17e6392017-07-28 13:41:51 -0400183 sk_sp<GrBuffer> buffer(texelBufferSupport
184 ? context->resourceProvider()->createBuffer(
185 1024, GrBufferType::kTexel_GrBufferType,
186 GrAccessPattern::kStatic_GrAccessPattern, 0)
187 : nullptr);
188 {
189 SkTArray<sk_sp<GrTextureProxy>> proxies;
190 SkTArray<sk_sp<GrBuffer>> buffers;
Brian Salomonb17e6392017-07-28 13:41:51 -0400191 proxies.push_back(proxy1);
192 if (texelBufferSupport) {
193 buffers.push_back(buffer);
194 }
Brian Salomon559f5562017-11-15 14:28:33 -0500195 auto fp = TestFP::Make(std::move(proxies), std::move(buffers));
Brian Salomonb17e6392017-07-28 13:41:51 -0400196 for (int i = 0; i < parentCnt; ++i) {
197 fp = TestFP::Make(std::move(fp));
198 }
Brian Salomonaff329b2017-08-11 09:40:37 -0400199 std::unique_ptr<GrFragmentProcessor> clone;
Brian Salomonb17e6392017-07-28 13:41:51 -0400200 if (makeClone) {
201 clone = fp->clone();
202 }
203 std::unique_ptr<GrDrawOp> op(TestOp::Make(std::move(fp)));
204 renderTargetContext->priv().testingOnly_addDrawOp(std::move(op));
205 if (clone) {
206 op = TestOp::Make(std::move(clone));
207 renderTargetContext->priv().testingOnly_addDrawOp(std::move(op));
208 }
209 }
210 int refCnt, readCnt, writeCnt;
211
212 testingOnly_getIORefCnts(proxy1.get(), &refCnt, &readCnt, &writeCnt);
213 // IO counts should be double if there is a clone of the FP.
214 int ioRefMul = makeClone ? 2 : 1;
215 REPORTER_ASSERT(reporter, 1 == refCnt);
216 REPORTER_ASSERT(reporter, ioRefMul * 1 == readCnt);
217 REPORTER_ASSERT(reporter, ioRefMul * 0 == writeCnt);
218
Brian Salomonbc6b99d2017-01-11 10:32:34 -0500219 if (texelBufferSupport) {
Brian Salomonb17e6392017-07-28 13:41:51 -0400220 testingOnly_getIORefCnts(buffer.get(), &refCnt, &readCnt, &writeCnt);
221 REPORTER_ASSERT(reporter, 1 == refCnt);
222 REPORTER_ASSERT(reporter, ioRefMul * 1 == readCnt);
223 REPORTER_ASSERT(reporter, ioRefMul * 0 == writeCnt);
Brian Salomonbc6b99d2017-01-11 10:32:34 -0500224 }
Brian Salomonb17e6392017-07-28 13:41:51 -0400225
Brian Salomonb17e6392017-07-28 13:41:51 -0400226 context->flush();
227
228 testingOnly_getIORefCnts(proxy1.get(), &refCnt, &readCnt, &writeCnt);
229 REPORTER_ASSERT(reporter, 1 == refCnt);
230 REPORTER_ASSERT(reporter, ioRefMul * 0 == readCnt);
231 REPORTER_ASSERT(reporter, ioRefMul * 0 == writeCnt);
232
233 if (texelBufferSupport) {
234 testingOnly_getIORefCnts(buffer.get(), &refCnt, &readCnt, &writeCnt);
235 REPORTER_ASSERT(reporter, 1 == refCnt);
236 REPORTER_ASSERT(reporter, ioRefMul * 0 == readCnt);
237 REPORTER_ASSERT(reporter, ioRefMul * 0 == writeCnt);
Brian Salomonbc6b99d2017-01-11 10:32:34 -0500238 }
Brian Salomonbc6b99d2017-01-11 10:32:34 -0500239
Brian Salomonb17e6392017-07-28 13:41:51 -0400240 if (texelBufferSupport) {
241 testingOnly_getIORefCnts(proxy2.get(), &refCnt, &readCnt, &writeCnt);
242 REPORTER_ASSERT(reporter, 1 == refCnt);
243 REPORTER_ASSERT(reporter, ioRefMul * 0 == readCnt);
244 REPORTER_ASSERT(reporter, ioRefMul * 0 == writeCnt);
Brian Salomonbc6b99d2017-01-11 10:32:34 -0500245
Brian Salomonb17e6392017-07-28 13:41:51 -0400246 testingOnly_getIORefCnts(proxy3.get(), &refCnt, &readCnt, &writeCnt);
247 REPORTER_ASSERT(reporter, 1 == refCnt);
248 REPORTER_ASSERT(reporter, ioRefMul * 0 == readCnt);
249 REPORTER_ASSERT(reporter, ioRefMul * 0 == writeCnt);
Brian Salomonbc6b99d2017-01-11 10:32:34 -0500250
Brian Salomonb17e6392017-07-28 13:41:51 -0400251 testingOnly_getIORefCnts(proxy4.get(), &refCnt, &readCnt, &writeCnt);
252 REPORTER_ASSERT(reporter, 1 == refCnt);
253 REPORTER_ASSERT(reporter, ioRefMul * 0 == readCnt);
254 REPORTER_ASSERT(reporter, ioRefMul * 0 == writeCnt);
255 }
Brian Salomonbc6b99d2017-01-11 10:32:34 -0500256 }
257 }
258 }
259}
Brian Salomon587e08f2017-01-27 10:59:27 -0500260
261// This test uses the random GrFragmentProcessor test factory, which relies on static initializers.
262#if SK_ALLOW_STATIC_GLOBAL_INITIALIZERS
263
Brian Salomon0e05a822017-07-25 09:43:22 -0400264#include "SkCommandLineFlags.h"
265DEFINE_bool(randomProcessorTest, false, "Use non-deterministic seed for random processor tests?");
266
267#if GR_TEST_UTILS
268
269static GrColor input_texel_color(int i, int j) {
270 GrColor color = GrColorPackRGBA((uint8_t)j, (uint8_t)(i + j), (uint8_t)(2 * j - i), (uint8_t)i);
Brian Salomon587e08f2017-01-27 10:59:27 -0500271 return GrPremulColor(color);
272}
273
Brian Salomon0e05a822017-07-25 09:43:22 -0400274static GrColor4f input_texel_color4f(int i, int j) {
275 return GrColor4f::FromGrColor(input_texel_color(i, j));
276}
Brian Salomon587e08f2017-01-27 10:59:27 -0500277
Brian Salomonaff329b2017-08-11 09:40:37 -0400278void test_draw_op(GrRenderTargetContext* rtc, std::unique_ptr<GrFragmentProcessor> fp,
Robert Phillips30f9bc62017-02-22 15:28:38 -0500279 sk_sp<GrTextureProxy> inputDataProxy) {
Brian Salomon5d4cd9e2017-02-09 11:16:46 -0500280 GrPaint paint;
Brian Osman2240be92017-10-18 13:15:13 -0400281 paint.addColorTextureProcessor(std::move(inputDataProxy), SkMatrix::I());
Brian Salomon5d4cd9e2017-02-09 11:16:46 -0500282 paint.addColorFragmentProcessor(std::move(fp));
283 paint.setPorterDuffXPFactory(SkBlendMode::kSrc);
Brian Salomonac70f842017-05-08 10:43:33 -0400284
Brian Salomonbaaf4392017-06-15 09:59:23 -0400285 auto op = GrRectOpFactory::MakeNonAAFill(std::move(paint), SkMatrix::I(),
286 SkRect::MakeWH(rtc->width(), rtc->height()),
287 GrAAType::kNone);
Brian Salomonac70f842017-05-08 10:43:33 -0400288 rtc->addDrawOp(GrNoClip(), std::move(op));
Brian Salomon5d4cd9e2017-02-09 11:16:46 -0500289}
290
Brian Salomon0e05a822017-07-25 09:43:22 -0400291/** Initializes the two test texture proxies that are available to the FP test factories. */
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500292bool init_test_textures(GrProxyProvider* proxyProvider, SkRandom* random,
293 sk_sp<GrTextureProxy> proxies[2]) {
Brian Salomon0e05a822017-07-25 09:43:22 -0400294 static const int kTestTextureSize = 256;
295 GrSurfaceDesc desc;
296 desc.fOrigin = kBottomLeft_GrSurfaceOrigin;
297 desc.fWidth = kTestTextureSize;
298 desc.fHeight = kTestTextureSize;
299 desc.fConfig = kRGBA_8888_GrPixelConfig;
Brian Osmanc35a2d42017-03-17 10:58:53 -0400300
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500301 {
302 // Put premul data into the RGBA texture that the test FPs can optionally use.
303 std::unique_ptr<GrColor[]> rgbaData(new GrColor[kTestTextureSize * kTestTextureSize]);
304 for (int y = 0; y < kTestTextureSize; ++y) {
305 for (int x = 0; x < kTestTextureSize; ++x) {
306 rgbaData[kTestTextureSize * y + x] =
307 input_texel_color(random->nextULessThan(256), random->nextULessThan(256));
308 }
Brian Salomon0e05a822017-07-25 09:43:22 -0400309 }
Brian Salomon0e05a822017-07-25 09:43:22 -0400310
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500311 proxies[0] = proxyProvider->createTextureProxy(desc, SkBudgeted::kYes,
312 rgbaData.get(),
313 kTestTextureSize * sizeof(GrColor));
Brian Salomon0e05a822017-07-25 09:43:22 -0400314 }
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500315
316 {
317 // Put random values into the alpha texture that the test FPs can optionally use.
318 desc.fConfig = kAlpha_8_GrPixelConfig;
319 std::unique_ptr<uint8_t[]> alphaData(new uint8_t[kTestTextureSize * kTestTextureSize]);
320 for (int y = 0; y < kTestTextureSize; ++y) {
321 for (int x = 0; x < kTestTextureSize; ++x) {
322 alphaData[kTestTextureSize * y + x] = random->nextULessThan(256);
323 }
324 }
325
326 proxies[1] = proxyProvider->createTextureProxy(desc, SkBudgeted::kYes,
327 alphaData.get(), kTestTextureSize);
328 }
Brian Salomon0e05a822017-07-25 09:43:22 -0400329
330 return proxies[0] && proxies[1];
331}
332
333// Creates a texture of premul colors used as the output of the fragment processor that precedes
334// the fragment processor under test. Color values are those provided by input_texel_color().
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500335sk_sp<GrTextureProxy> make_input_texture(GrProxyProvider* proxyProvider, int width, int height) {
Brian Salomon0e05a822017-07-25 09:43:22 -0400336 std::unique_ptr<GrColor[]> data(new GrColor[width * height]);
337 for (int y = 0; y < width; ++y) {
338 for (int x = 0; x < height; ++x) {
339 data.get()[width * y + x] = input_texel_color(x, y);
340 }
341 }
342 GrSurfaceDesc desc;
343 desc.fOrigin = kBottomLeft_GrSurfaceOrigin;
344 desc.fWidth = width;
345 desc.fHeight = height;
346 desc.fConfig = kRGBA_8888_GrPixelConfig;
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500347
348 return proxyProvider->createTextureProxy(desc, SkBudgeted::kYes,
349 data.get(), width * sizeof(GrColor));
Brian Salomon0e05a822017-07-25 09:43:22 -0400350}
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500351
Brian Salomon5d4cd9e2017-02-09 11:16:46 -0500352DEF_GPUTEST_FOR_GL_RENDERING_CONTEXTS(ProcessorOptimizationValidationTest, reporter, ctxInfo) {
Brian Salomon587e08f2017-01-27 10:59:27 -0500353 GrContext* context = ctxInfo.grContext();
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500354 GrProxyProvider* proxyProvider = context->contextPriv().proxyProvider();
Brian Salomon1c053642017-07-24 10:16:19 -0400355 using FPFactory = GrFragmentProcessorTestFactory;
Brian Osmanc35a2d42017-03-17 10:58:53 -0400356
357 uint32_t seed = 0;
358 if (FLAGS_randomProcessorTest) {
359 std::random_device rd;
360 seed = rd();
361 }
362 // If a non-deterministic bot fails this test, check the output to see what seed it used, then
363 // hard-code that value here:
364 SkRandom random(seed);
365
Brian Salomon0e05a822017-07-25 09:43:22 -0400366 // Make the destination context for the test.
367 static constexpr int kRenderSize = 256;
Robert Phillipsdd3b3f42017-04-24 10:57:28 -0400368 sk_sp<GrRenderTargetContext> rtc = context->makeDeferredRenderTargetContext(
Brian Salomon0e05a822017-07-25 09:43:22 -0400369 SkBackingFit::kExact, kRenderSize, kRenderSize, kRGBA_8888_GrPixelConfig, nullptr);
Brian Salomond1a8bdf2017-02-10 12:39:26 -0500370
Robert Phillipse78b7252017-04-06 07:59:41 -0400371 sk_sp<GrTextureProxy> proxies[2];
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500372 if (!init_test_textures(proxyProvider, &random, proxies)) {
Brian Salomon0e05a822017-07-25 09:43:22 -0400373 ERRORF(reporter, "Could not create test textures");
Robert Phillipsbb581ce2017-05-29 15:05:15 -0400374 return;
375 }
Robert Phillipse78b7252017-04-06 07:59:41 -0400376 GrProcessorTestData testData(&random, context, rtc.get(), proxies);
Brian Salomon587e08f2017-01-27 10:59:27 -0500377
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500378 auto inputTexture = make_input_texture(proxyProvider, kRenderSize, kRenderSize);
Robert Phillips30f9bc62017-02-22 15:28:38 -0500379
Ben Wagner8c791942017-07-25 11:47:48 -0400380 std::unique_ptr<GrColor[]> readData(new GrColor[kRenderSize * kRenderSize]);
Brian Salomon0e05a822017-07-25 09:43:22 -0400381 // Because processor factories configure themselves in random ways, this is not exhaustive.
Brian Salomon587e08f2017-01-27 10:59:27 -0500382 for (int i = 0; i < FPFactory::Count(); ++i) {
383 int timesToInvokeFactory = 5;
384 // Increase the number of attempts if the FP has child FPs since optimizations likely depend
385 // on child optimizations being present.
Brian Salomonaff329b2017-08-11 09:40:37 -0400386 std::unique_ptr<GrFragmentProcessor> fp = FPFactory::MakeIdx(i, &testData);
Brian Salomon587e08f2017-01-27 10:59:27 -0500387 for (int j = 0; j < fp->numChildProcessors(); ++j) {
388 // This value made a reasonable trade off between time and coverage when this test was
389 // written.
390 timesToInvokeFactory *= FPFactory::Count() / 2;
391 }
392 for (int j = 0; j < timesToInvokeFactory; ++j) {
393 fp = FPFactory::MakeIdx(i, &testData);
Robert Phillips9bee2e52017-05-29 12:37:20 -0400394 if (!fp->instantiate(context->resourceProvider())) {
Robert Phillipsa91e0b72017-05-01 13:12:20 -0400395 continue;
396 }
397
Brian Salomon587e08f2017-01-27 10:59:27 -0500398 if (!fp->hasConstantOutputForConstantInput() && !fp->preservesOpaqueInput() &&
Brian Salomonf3b995b2017-02-15 10:22:23 -0500399 !fp->compatibleWithCoverageAsAlpha()) {
Brian Salomon587e08f2017-01-27 10:59:27 -0500400 continue;
401 }
Brian Salomonaff329b2017-08-11 09:40:37 -0400402
403 // Since we transfer away ownership of the original FP, we make a clone.
404 auto clone = fp->clone();
405
406 test_draw_op(rtc.get(), std::move(fp), inputTexture);
Brian Salomon0e05a822017-07-25 09:43:22 -0400407 memset(readData.get(), 0x0, sizeof(GrColor) * kRenderSize * kRenderSize);
408 rtc->readPixels(SkImageInfo::Make(kRenderSize, kRenderSize, kRGBA_8888_SkColorType,
409 kPremul_SkAlphaType),
410 readData.get(), 0, 0, 0);
Brian Salomon587e08f2017-01-27 10:59:27 -0500411 bool passing = true;
412 if (0) { // Useful to see what FPs are being tested.
413 SkString children;
Brian Salomonaff329b2017-08-11 09:40:37 -0400414 for (int c = 0; c < clone->numChildProcessors(); ++c) {
Brian Salomon587e08f2017-01-27 10:59:27 -0500415 if (!c) {
416 children.append("(");
417 }
Brian Salomonaff329b2017-08-11 09:40:37 -0400418 children.append(clone->name());
419 children.append(c == clone->numChildProcessors() - 1 ? ")" : ", ");
Brian Salomon587e08f2017-01-27 10:59:27 -0500420 }
Brian Salomonaff329b2017-08-11 09:40:37 -0400421 SkDebugf("%s %s\n", clone->name(), children.c_str());
Brian Salomon587e08f2017-01-27 10:59:27 -0500422 }
Brian Salomon0e05a822017-07-25 09:43:22 -0400423 for (int y = 0; y < kRenderSize && passing; ++y) {
424 for (int x = 0; x < kRenderSize && passing; ++x) {
425 GrColor input = input_texel_color(x, y);
426 GrColor output = readData.get()[y * kRenderSize + x];
Brian Salomonaff329b2017-08-11 09:40:37 -0400427 if (clone->compatibleWithCoverageAsAlpha()) {
Brian Salomon587e08f2017-01-27 10:59:27 -0500428 // A modulating processor is allowed to modulate either the input color or
429 // just the input alpha.
430 bool legalColorModulation =
431 GrColorUnpackA(output) <= GrColorUnpackA(input) &&
432 GrColorUnpackR(output) <= GrColorUnpackR(input) &&
433 GrColorUnpackG(output) <= GrColorUnpackG(input) &&
434 GrColorUnpackB(output) <= GrColorUnpackB(input);
435 bool legalAlphaModulation =
436 GrColorUnpackA(output) <= GrColorUnpackA(input) &&
437 GrColorUnpackR(output) <= GrColorUnpackA(input) &&
438 GrColorUnpackG(output) <= GrColorUnpackA(input) &&
439 GrColorUnpackB(output) <= GrColorUnpackA(input);
440 if (!legalColorModulation && !legalAlphaModulation) {
441 ERRORF(reporter,
442 "\"Modulating\" processor %s made color/alpha value larger. "
Greg Daniel10ed2432017-12-01 16:19:43 -0500443 "Input: 0x%08x, Output: 0x%08x, pixel (%d, %d).",
444 clone->name(), input, output, x, y);
Brian Salomon587e08f2017-01-27 10:59:27 -0500445 passing = false;
446 }
447 }
Brian Salomon0e05a822017-07-25 09:43:22 -0400448 GrColor4f input4f = input_texel_color4f(x, y);
Brian Salomon587e08f2017-01-27 10:59:27 -0500449 GrColor4f output4f = GrColor4f::FromGrColor(output);
450 GrColor4f expected4f;
Brian Salomonaff329b2017-08-11 09:40:37 -0400451 if (clone->hasConstantOutputForConstantInput(input4f, &expected4f)) {
Brian Salomon587e08f2017-01-27 10:59:27 -0500452 float rDiff = fabsf(output4f.fRGBA[0] - expected4f.fRGBA[0]);
453 float gDiff = fabsf(output4f.fRGBA[1] - expected4f.fRGBA[1]);
454 float bDiff = fabsf(output4f.fRGBA[2] - expected4f.fRGBA[2]);
455 float aDiff = fabsf(output4f.fRGBA[3] - expected4f.fRGBA[3]);
Brian Salomon5d4cd9e2017-02-09 11:16:46 -0500456 static constexpr float kTol = 4 / 255.f;
Brian Salomon587e08f2017-01-27 10:59:27 -0500457 if (rDiff > kTol || gDiff > kTol || bDiff > kTol || aDiff > kTol) {
458 ERRORF(reporter,
459 "Processor %s claimed output for const input doesn't match "
Brian Salomon5d4cd9e2017-02-09 11:16:46 -0500460 "actual output. Error: %f, Tolerance: %f, input: (%f, %f, %f, "
461 "%f), actual: (%f, %f, %f, %f), expected(%f, %f, %f, %f)",
462 fp->name(), SkTMax(rDiff, SkTMax(gDiff, SkTMax(bDiff, aDiff))),
463 kTol, input4f.fRGBA[0], input4f.fRGBA[1], input4f.fRGBA[2],
464 input4f.fRGBA[3], output4f.fRGBA[0], output4f.fRGBA[1],
465 output4f.fRGBA[2], output4f.fRGBA[3], expected4f.fRGBA[0],
466 expected4f.fRGBA[1], expected4f.fRGBA[2], expected4f.fRGBA[3]);
Brian Salomon587e08f2017-01-27 10:59:27 -0500467 passing = false;
468 }
469 }
Brian Salomonaff329b2017-08-11 09:40:37 -0400470 if (GrColorIsOpaque(input) && clone->preservesOpaqueInput() &&
Brian Salomon587e08f2017-01-27 10:59:27 -0500471 !GrColorIsOpaque(output)) {
472 ERRORF(reporter,
473 "Processor %s claimed opaqueness is preserved but it is not. Input: "
Brian Osman2f3865b2017-03-15 13:35:51 -0400474 "0x%08x, Output: 0x%08x.",
Brian Salomonaff329b2017-08-11 09:40:37 -0400475 clone->name(), input, output);
Brian Salomon587e08f2017-01-27 10:59:27 -0500476 passing = false;
477 }
Brian Osmanbd1f76f2017-03-15 11:33:12 -0400478 if (!passing) {
Brian Salomonaff329b2017-08-11 09:40:37 -0400479 ERRORF(reporter, "Seed: 0x%08x, Processor details: %s", seed,
480 clone->dumpInfo().c_str());
Brian Osmanbd1f76f2017-03-15 11:33:12 -0400481 }
Brian Salomon587e08f2017-01-27 10:59:27 -0500482 }
483 }
484 }
485 }
486}
Robert Phillips18166ee2017-06-01 12:55:44 -0400487
Brian Salomon0e05a822017-07-25 09:43:22 -0400488// Tests that fragment processors returned by GrFragmentProcessor::clone() are equivalent to their
489// progenitors.
490DEF_GPUTEST_FOR_GL_RENDERING_CONTEXTS(ProcessorCloneTest, reporter, ctxInfo) {
491 GrContext* context = ctxInfo.grContext();
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500492 GrProxyProvider* proxyProvider = context->contextPriv().proxyProvider();
Brian Salomon0e05a822017-07-25 09:43:22 -0400493
494 SkRandom random;
495
496 // Make the destination context for the test.
497 static constexpr int kRenderSize = 1024;
498 sk_sp<GrRenderTargetContext> rtc = context->makeDeferredRenderTargetContext(
499 SkBackingFit::kExact, kRenderSize, kRenderSize, kRGBA_8888_GrPixelConfig, nullptr);
500
501 sk_sp<GrTextureProxy> proxies[2];
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500502 if (!init_test_textures(proxyProvider, &random, proxies)) {
Brian Salomon0e05a822017-07-25 09:43:22 -0400503 ERRORF(reporter, "Could not create test textures");
504 return;
505 }
506 GrProcessorTestData testData(&random, context, rtc.get(), proxies);
507
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500508 auto inputTexture = make_input_texture(proxyProvider, kRenderSize, kRenderSize);
Brian Salomon0e05a822017-07-25 09:43:22 -0400509 std::unique_ptr<GrColor[]> readData1(new GrColor[kRenderSize * kRenderSize]);
510 std::unique_ptr<GrColor[]> readData2(new GrColor[kRenderSize * kRenderSize]);
511 auto readInfo = SkImageInfo::Make(kRenderSize, kRenderSize, kRGBA_8888_SkColorType,
512 kPremul_SkAlphaType);
513
514 // Because processor factories configure themselves in random ways, this is not exhaustive.
515 for (int i = 0; i < GrFragmentProcessorTestFactory::Count(); ++i) {
516 static constexpr int kTimesToInvokeFactory = 10;
517 for (int j = 0; j < kTimesToInvokeFactory; ++j) {
518 auto fp = GrFragmentProcessorTestFactory::MakeIdx(i, &testData);
519 auto clone = fp->clone();
Brian Salomon0e05a822017-07-25 09:43:22 -0400520 if (!clone) {
Brian Salomon96271cd2017-07-31 16:27:23 -0400521 ERRORF(reporter, "Clone of processor %s failed.", fp->name());
Brian Salomon0e05a822017-07-25 09:43:22 -0400522 continue;
523 }
Brian Salomonaff329b2017-08-11 09:40:37 -0400524 const char* name = fp->name();
Brian Salomon0e05a822017-07-25 09:43:22 -0400525 if (!fp->instantiate(context->resourceProvider()) ||
526 !clone->instantiate(context->resourceProvider())) {
527 continue;
528 }
Brian Salomonce06e262017-08-01 16:23:40 -0400529 REPORTER_ASSERT(reporter, !strcmp(fp->name(), clone->name()));
530 REPORTER_ASSERT(reporter, fp->compatibleWithCoverageAsAlpha() ==
531 clone->compatibleWithCoverageAsAlpha());
532 REPORTER_ASSERT(reporter, fp->isEqual(*clone));
533 REPORTER_ASSERT(reporter, fp->preservesOpaqueInput() == clone->preservesOpaqueInput());
534 REPORTER_ASSERT(reporter, fp->hasConstantOutputForConstantInput() ==
535 clone->hasConstantOutputForConstantInput());
536 REPORTER_ASSERT(reporter, fp->numChildProcessors() == clone->numChildProcessors());
537 REPORTER_ASSERT(reporter, fp->usesLocalCoords() == clone->usesLocalCoords());
Brian Salomon0e05a822017-07-25 09:43:22 -0400538 // Draw with original and read back the results.
Brian Salomonaff329b2017-08-11 09:40:37 -0400539 test_draw_op(rtc.get(), std::move(fp), inputTexture);
Brian Salomon0e05a822017-07-25 09:43:22 -0400540 memset(readData1.get(), 0x0, sizeof(GrColor) * kRenderSize * kRenderSize);
541 rtc->readPixels(readInfo, readData1.get(), 0, 0, 0);
542
543 // Draw with clone and read back the results.
Brian Salomonaff329b2017-08-11 09:40:37 -0400544 test_draw_op(rtc.get(), std::move(clone), inputTexture);
Brian Salomon0e05a822017-07-25 09:43:22 -0400545 memset(readData2.get(), 0x0, sizeof(GrColor) * kRenderSize * kRenderSize);
546 rtc->readPixels(readInfo, readData2.get(), 0, 0, 0);
547
548 // Check that the results are the same.
549 bool passing = true;
550 for (int y = 0; y < kRenderSize && passing; ++y) {
551 for (int x = 0; x < kRenderSize && passing; ++x) {
552 int idx = y * kRenderSize + x;
553 if (readData1[idx] != readData2[idx]) {
554 ERRORF(reporter,
555 "Processor %s made clone produced different output. "
556 "Input color: 0x%08x, Original Output Color: 0x%08x, "
557 "Clone Output Color: 0x%08x..",
Brian Salomonaff329b2017-08-11 09:40:37 -0400558 name, input_texel_color(x, y), readData1[idx], readData2[idx]);
Brian Salomon0e05a822017-07-25 09:43:22 -0400559 passing = false;
560 }
561 }
562 }
563 }
564 }
565}
566
Hal Canary6f6961e2017-01-31 13:50:44 -0500567#endif // GR_TEST_UTILS
568#endif // SK_ALLOW_STATIC_GLOBAL_INITIALIZERS
569#endif // SK_SUPPORT_GPU