blob: 26f10a383aa0e8465fd793cc03d144ca84abfc10 [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();
Robert Phillips6be756b2018-01-16 15:07:54 -0500161 GrResourceProvider* resourceProvider = context->contextPriv().resourceProvider();
Brian Salomonbc6b99d2017-01-11 10:32:34 -0500162
Robert Phillips16d8ec62017-07-27 16:16:25 -0400163 GrSurfaceDesc desc;
164 desc.fOrigin = kTopLeft_GrSurfaceOrigin;
Brian Salomonbc6b99d2017-01-11 10:32:34 -0500165 desc.fWidth = 10;
166 desc.fHeight = 10;
Robert Phillips16d8ec62017-07-27 16:16:25 -0400167 desc.fConfig = kRGBA_8888_GrPixelConfig;
Brian Salomonbc6b99d2017-01-11 10:32:34 -0500168
Brian Salomonb17e6392017-07-28 13:41:51 -0400169 for (bool makeClone : {false, true}) {
170 for (int parentCnt = 0; parentCnt < 2; parentCnt++) {
171 sk_sp<GrRenderTargetContext> renderTargetContext(
172 context->makeDeferredRenderTargetContext( SkBackingFit::kApprox, 1, 1,
173 kRGBA_8888_GrPixelConfig, nullptr));
Brian Salomonbc6b99d2017-01-11 10:32:34 -0500174 {
Brian Salomonb17e6392017-07-28 13:41:51 -0400175 bool texelBufferSupport = context->caps()->shaderCaps()->texelBufferSupport();
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500176 sk_sp<GrTextureProxy> proxy1 =
177 proxyProvider->createProxy(desc, SkBackingFit::kExact, SkBudgeted::kYes);
178 sk_sp<GrTextureProxy> proxy2 =
179 proxyProvider->createProxy(desc, SkBackingFit::kExact, SkBudgeted::kYes);
180 sk_sp<GrTextureProxy> proxy3 =
181 proxyProvider->createProxy(desc, SkBackingFit::kExact, SkBudgeted::kYes);
182 sk_sp<GrTextureProxy> proxy4 =
183 proxyProvider->createProxy(desc, SkBackingFit::kExact, SkBudgeted::kYes);
Brian Salomonb17e6392017-07-28 13:41:51 -0400184 sk_sp<GrBuffer> buffer(texelBufferSupport
Robert Phillips6be756b2018-01-16 15:07:54 -0500185 ? resourceProvider->createBuffer(
Brian Salomonb17e6392017-07-28 13:41:51 -0400186 1024, GrBufferType::kTexel_GrBufferType,
187 GrAccessPattern::kStatic_GrAccessPattern, 0)
188 : nullptr);
189 {
190 SkTArray<sk_sp<GrTextureProxy>> proxies;
191 SkTArray<sk_sp<GrBuffer>> buffers;
Brian Salomonb17e6392017-07-28 13:41:51 -0400192 proxies.push_back(proxy1);
193 if (texelBufferSupport) {
194 buffers.push_back(buffer);
195 }
Brian Salomon559f5562017-11-15 14:28:33 -0500196 auto fp = TestFP::Make(std::move(proxies), std::move(buffers));
Brian Salomonb17e6392017-07-28 13:41:51 -0400197 for (int i = 0; i < parentCnt; ++i) {
198 fp = TestFP::Make(std::move(fp));
199 }
Brian Salomonaff329b2017-08-11 09:40:37 -0400200 std::unique_ptr<GrFragmentProcessor> clone;
Brian Salomonb17e6392017-07-28 13:41:51 -0400201 if (makeClone) {
202 clone = fp->clone();
203 }
204 std::unique_ptr<GrDrawOp> op(TestOp::Make(std::move(fp)));
205 renderTargetContext->priv().testingOnly_addDrawOp(std::move(op));
206 if (clone) {
207 op = TestOp::Make(std::move(clone));
208 renderTargetContext->priv().testingOnly_addDrawOp(std::move(op));
209 }
210 }
211 int refCnt, readCnt, writeCnt;
212
213 testingOnly_getIORefCnts(proxy1.get(), &refCnt, &readCnt, &writeCnt);
214 // IO counts should be double if there is a clone of the FP.
215 int ioRefMul = makeClone ? 2 : 1;
216 REPORTER_ASSERT(reporter, 1 == refCnt);
217 REPORTER_ASSERT(reporter, ioRefMul * 1 == readCnt);
218 REPORTER_ASSERT(reporter, ioRefMul * 0 == writeCnt);
219
Brian Salomonbc6b99d2017-01-11 10:32:34 -0500220 if (texelBufferSupport) {
Brian Salomonb17e6392017-07-28 13:41:51 -0400221 testingOnly_getIORefCnts(buffer.get(), &refCnt, &readCnt, &writeCnt);
222 REPORTER_ASSERT(reporter, 1 == refCnt);
223 REPORTER_ASSERT(reporter, ioRefMul * 1 == readCnt);
224 REPORTER_ASSERT(reporter, ioRefMul * 0 == writeCnt);
Brian Salomonbc6b99d2017-01-11 10:32:34 -0500225 }
Brian Salomonb17e6392017-07-28 13:41:51 -0400226
Brian Salomonb17e6392017-07-28 13:41:51 -0400227 context->flush();
228
229 testingOnly_getIORefCnts(proxy1.get(), &refCnt, &readCnt, &writeCnt);
230 REPORTER_ASSERT(reporter, 1 == refCnt);
231 REPORTER_ASSERT(reporter, ioRefMul * 0 == readCnt);
232 REPORTER_ASSERT(reporter, ioRefMul * 0 == writeCnt);
233
234 if (texelBufferSupport) {
235 testingOnly_getIORefCnts(buffer.get(), &refCnt, &readCnt, &writeCnt);
236 REPORTER_ASSERT(reporter, 1 == refCnt);
237 REPORTER_ASSERT(reporter, ioRefMul * 0 == readCnt);
238 REPORTER_ASSERT(reporter, ioRefMul * 0 == writeCnt);
Brian Salomonbc6b99d2017-01-11 10:32:34 -0500239 }
Brian Salomonbc6b99d2017-01-11 10:32:34 -0500240
Brian Salomonb17e6392017-07-28 13:41:51 -0400241 if (texelBufferSupport) {
242 testingOnly_getIORefCnts(proxy2.get(), &refCnt, &readCnt, &writeCnt);
243 REPORTER_ASSERT(reporter, 1 == refCnt);
244 REPORTER_ASSERT(reporter, ioRefMul * 0 == readCnt);
245 REPORTER_ASSERT(reporter, ioRefMul * 0 == writeCnt);
Brian Salomonbc6b99d2017-01-11 10:32:34 -0500246
Brian Salomonb17e6392017-07-28 13:41:51 -0400247 testingOnly_getIORefCnts(proxy3.get(), &refCnt, &readCnt, &writeCnt);
248 REPORTER_ASSERT(reporter, 1 == refCnt);
249 REPORTER_ASSERT(reporter, ioRefMul * 0 == readCnt);
250 REPORTER_ASSERT(reporter, ioRefMul * 0 == writeCnt);
Brian Salomonbc6b99d2017-01-11 10:32:34 -0500251
Brian Salomonb17e6392017-07-28 13:41:51 -0400252 testingOnly_getIORefCnts(proxy4.get(), &refCnt, &readCnt, &writeCnt);
253 REPORTER_ASSERT(reporter, 1 == refCnt);
254 REPORTER_ASSERT(reporter, ioRefMul * 0 == readCnt);
255 REPORTER_ASSERT(reporter, ioRefMul * 0 == writeCnt);
256 }
Brian Salomonbc6b99d2017-01-11 10:32:34 -0500257 }
258 }
259 }
260}
Brian Salomon587e08f2017-01-27 10:59:27 -0500261
262// This test uses the random GrFragmentProcessor test factory, which relies on static initializers.
263#if SK_ALLOW_STATIC_GLOBAL_INITIALIZERS
264
Brian Salomon0e05a822017-07-25 09:43:22 -0400265#include "SkCommandLineFlags.h"
266DEFINE_bool(randomProcessorTest, false, "Use non-deterministic seed for random processor tests?");
267
268#if GR_TEST_UTILS
269
270static GrColor input_texel_color(int i, int j) {
271 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 -0500272 return GrPremulColor(color);
273}
274
Brian Salomon0e05a822017-07-25 09:43:22 -0400275static GrColor4f input_texel_color4f(int i, int j) {
276 return GrColor4f::FromGrColor(input_texel_color(i, j));
277}
Brian Salomon587e08f2017-01-27 10:59:27 -0500278
Brian Salomonaff329b2017-08-11 09:40:37 -0400279void test_draw_op(GrRenderTargetContext* rtc, std::unique_ptr<GrFragmentProcessor> fp,
Robert Phillips30f9bc62017-02-22 15:28:38 -0500280 sk_sp<GrTextureProxy> inputDataProxy) {
Brian Salomon5d4cd9e2017-02-09 11:16:46 -0500281 GrPaint paint;
Brian Osman2240be92017-10-18 13:15:13 -0400282 paint.addColorTextureProcessor(std::move(inputDataProxy), SkMatrix::I());
Brian Salomon5d4cd9e2017-02-09 11:16:46 -0500283 paint.addColorFragmentProcessor(std::move(fp));
284 paint.setPorterDuffXPFactory(SkBlendMode::kSrc);
Brian Salomonac70f842017-05-08 10:43:33 -0400285
Brian Salomonbaaf4392017-06-15 09:59:23 -0400286 auto op = GrRectOpFactory::MakeNonAAFill(std::move(paint), SkMatrix::I(),
287 SkRect::MakeWH(rtc->width(), rtc->height()),
288 GrAAType::kNone);
Brian Salomonac70f842017-05-08 10:43:33 -0400289 rtc->addDrawOp(GrNoClip(), std::move(op));
Brian Salomon5d4cd9e2017-02-09 11:16:46 -0500290}
291
Brian Salomon0e05a822017-07-25 09:43:22 -0400292/** Initializes the two test texture proxies that are available to the FP test factories. */
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500293bool init_test_textures(GrProxyProvider* proxyProvider, SkRandom* random,
294 sk_sp<GrTextureProxy> proxies[2]) {
Brian Salomon0e05a822017-07-25 09:43:22 -0400295 static const int kTestTextureSize = 256;
296 GrSurfaceDesc desc;
297 desc.fOrigin = kBottomLeft_GrSurfaceOrigin;
298 desc.fWidth = kTestTextureSize;
299 desc.fHeight = kTestTextureSize;
300 desc.fConfig = kRGBA_8888_GrPixelConfig;
Brian Osmanc35a2d42017-03-17 10:58:53 -0400301
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500302 {
303 // Put premul data into the RGBA texture that the test FPs can optionally use.
304 std::unique_ptr<GrColor[]> rgbaData(new GrColor[kTestTextureSize * kTestTextureSize]);
305 for (int y = 0; y < kTestTextureSize; ++y) {
306 for (int x = 0; x < kTestTextureSize; ++x) {
307 rgbaData[kTestTextureSize * y + x] =
308 input_texel_color(random->nextULessThan(256), random->nextULessThan(256));
309 }
Brian Salomon0e05a822017-07-25 09:43:22 -0400310 }
Brian Salomon0e05a822017-07-25 09:43:22 -0400311
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500312 proxies[0] = proxyProvider->createTextureProxy(desc, SkBudgeted::kYes,
313 rgbaData.get(),
314 kTestTextureSize * sizeof(GrColor));
Brian Salomon0e05a822017-07-25 09:43:22 -0400315 }
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500316
317 {
318 // Put random values into the alpha texture that the test FPs can optionally use.
319 desc.fConfig = kAlpha_8_GrPixelConfig;
320 std::unique_ptr<uint8_t[]> alphaData(new uint8_t[kTestTextureSize * kTestTextureSize]);
321 for (int y = 0; y < kTestTextureSize; ++y) {
322 for (int x = 0; x < kTestTextureSize; ++x) {
323 alphaData[kTestTextureSize * y + x] = random->nextULessThan(256);
324 }
325 }
326
327 proxies[1] = proxyProvider->createTextureProxy(desc, SkBudgeted::kYes,
328 alphaData.get(), kTestTextureSize);
329 }
Brian Salomon0e05a822017-07-25 09:43:22 -0400330
331 return proxies[0] && proxies[1];
332}
333
334// Creates a texture of premul colors used as the output of the fragment processor that precedes
335// the fragment processor under test. Color values are those provided by input_texel_color().
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500336sk_sp<GrTextureProxy> make_input_texture(GrProxyProvider* proxyProvider, int width, int height) {
Brian Salomon0e05a822017-07-25 09:43:22 -0400337 std::unique_ptr<GrColor[]> data(new GrColor[width * height]);
338 for (int y = 0; y < width; ++y) {
339 for (int x = 0; x < height; ++x) {
340 data.get()[width * y + x] = input_texel_color(x, y);
341 }
342 }
343 GrSurfaceDesc desc;
344 desc.fOrigin = kBottomLeft_GrSurfaceOrigin;
345 desc.fWidth = width;
346 desc.fHeight = height;
347 desc.fConfig = kRGBA_8888_GrPixelConfig;
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500348
349 return proxyProvider->createTextureProxy(desc, SkBudgeted::kYes,
350 data.get(), width * sizeof(GrColor));
Brian Salomon0e05a822017-07-25 09:43:22 -0400351}
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500352
Brian Salomon5d4cd9e2017-02-09 11:16:46 -0500353DEF_GPUTEST_FOR_GL_RENDERING_CONTEXTS(ProcessorOptimizationValidationTest, reporter, ctxInfo) {
Brian Salomon587e08f2017-01-27 10:59:27 -0500354 GrContext* context = ctxInfo.grContext();
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500355 GrProxyProvider* proxyProvider = context->contextPriv().proxyProvider();
Robert Phillips6be756b2018-01-16 15:07:54 -0500356 auto resourceProvider = context->contextPriv().resourceProvider();
Brian Salomon1c053642017-07-24 10:16:19 -0400357 using FPFactory = GrFragmentProcessorTestFactory;
Brian Osmanc35a2d42017-03-17 10:58:53 -0400358
359 uint32_t seed = 0;
360 if (FLAGS_randomProcessorTest) {
361 std::random_device rd;
362 seed = rd();
363 }
364 // If a non-deterministic bot fails this test, check the output to see what seed it used, then
365 // hard-code that value here:
366 SkRandom random(seed);
367
Brian Salomon0e05a822017-07-25 09:43:22 -0400368 // Make the destination context for the test.
369 static constexpr int kRenderSize = 256;
Robert Phillipsdd3b3f42017-04-24 10:57:28 -0400370 sk_sp<GrRenderTargetContext> rtc = context->makeDeferredRenderTargetContext(
Brian Salomon0e05a822017-07-25 09:43:22 -0400371 SkBackingFit::kExact, kRenderSize, kRenderSize, kRGBA_8888_GrPixelConfig, nullptr);
Brian Salomond1a8bdf2017-02-10 12:39:26 -0500372
Robert Phillipse78b7252017-04-06 07:59:41 -0400373 sk_sp<GrTextureProxy> proxies[2];
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500374 if (!init_test_textures(proxyProvider, &random, proxies)) {
Brian Salomon0e05a822017-07-25 09:43:22 -0400375 ERRORF(reporter, "Could not create test textures");
Robert Phillipsbb581ce2017-05-29 15:05:15 -0400376 return;
377 }
Robert Phillipse78b7252017-04-06 07:59:41 -0400378 GrProcessorTestData testData(&random, context, rtc.get(), proxies);
Brian Salomon587e08f2017-01-27 10:59:27 -0500379
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500380 auto inputTexture = make_input_texture(proxyProvider, kRenderSize, kRenderSize);
Robert Phillips30f9bc62017-02-22 15:28:38 -0500381
Ben Wagner8c791942017-07-25 11:47:48 -0400382 std::unique_ptr<GrColor[]> readData(new GrColor[kRenderSize * kRenderSize]);
Brian Salomon0e05a822017-07-25 09:43:22 -0400383 // Because processor factories configure themselves in random ways, this is not exhaustive.
Brian Salomon587e08f2017-01-27 10:59:27 -0500384 for (int i = 0; i < FPFactory::Count(); ++i) {
385 int timesToInvokeFactory = 5;
386 // Increase the number of attempts if the FP has child FPs since optimizations likely depend
387 // on child optimizations being present.
Brian Salomonaff329b2017-08-11 09:40:37 -0400388 std::unique_ptr<GrFragmentProcessor> fp = FPFactory::MakeIdx(i, &testData);
Brian Salomon587e08f2017-01-27 10:59:27 -0500389 for (int j = 0; j < fp->numChildProcessors(); ++j) {
390 // This value made a reasonable trade off between time and coverage when this test was
391 // written.
392 timesToInvokeFactory *= FPFactory::Count() / 2;
393 }
394 for (int j = 0; j < timesToInvokeFactory; ++j) {
395 fp = FPFactory::MakeIdx(i, &testData);
Robert Phillips6be756b2018-01-16 15:07:54 -0500396 if (!fp->instantiate(resourceProvider)) {
Robert Phillipsa91e0b72017-05-01 13:12:20 -0400397 continue;
398 }
399
Brian Salomon587e08f2017-01-27 10:59:27 -0500400 if (!fp->hasConstantOutputForConstantInput() && !fp->preservesOpaqueInput() &&
Brian Salomonf3b995b2017-02-15 10:22:23 -0500401 !fp->compatibleWithCoverageAsAlpha()) {
Brian Salomon587e08f2017-01-27 10:59:27 -0500402 continue;
403 }
Brian Salomonaff329b2017-08-11 09:40:37 -0400404
405 // Since we transfer away ownership of the original FP, we make a clone.
406 auto clone = fp->clone();
407
408 test_draw_op(rtc.get(), std::move(fp), inputTexture);
Brian Salomon0e05a822017-07-25 09:43:22 -0400409 memset(readData.get(), 0x0, sizeof(GrColor) * kRenderSize * kRenderSize);
410 rtc->readPixels(SkImageInfo::Make(kRenderSize, kRenderSize, kRGBA_8888_SkColorType,
411 kPremul_SkAlphaType),
412 readData.get(), 0, 0, 0);
Brian Salomon587e08f2017-01-27 10:59:27 -0500413 bool passing = true;
414 if (0) { // Useful to see what FPs are being tested.
415 SkString children;
Brian Salomonaff329b2017-08-11 09:40:37 -0400416 for (int c = 0; c < clone->numChildProcessors(); ++c) {
Brian Salomon587e08f2017-01-27 10:59:27 -0500417 if (!c) {
418 children.append("(");
419 }
Brian Salomonaff329b2017-08-11 09:40:37 -0400420 children.append(clone->name());
421 children.append(c == clone->numChildProcessors() - 1 ? ")" : ", ");
Brian Salomon587e08f2017-01-27 10:59:27 -0500422 }
Brian Salomonaff329b2017-08-11 09:40:37 -0400423 SkDebugf("%s %s\n", clone->name(), children.c_str());
Brian Salomon587e08f2017-01-27 10:59:27 -0500424 }
Brian Salomon0e05a822017-07-25 09:43:22 -0400425 for (int y = 0; y < kRenderSize && passing; ++y) {
426 for (int x = 0; x < kRenderSize && passing; ++x) {
427 GrColor input = input_texel_color(x, y);
428 GrColor output = readData.get()[y * kRenderSize + x];
Brian Salomonaff329b2017-08-11 09:40:37 -0400429 if (clone->compatibleWithCoverageAsAlpha()) {
Brian Salomon587e08f2017-01-27 10:59:27 -0500430 // A modulating processor is allowed to modulate either the input color or
431 // just the input alpha.
432 bool legalColorModulation =
433 GrColorUnpackA(output) <= GrColorUnpackA(input) &&
434 GrColorUnpackR(output) <= GrColorUnpackR(input) &&
435 GrColorUnpackG(output) <= GrColorUnpackG(input) &&
436 GrColorUnpackB(output) <= GrColorUnpackB(input);
437 bool legalAlphaModulation =
438 GrColorUnpackA(output) <= GrColorUnpackA(input) &&
439 GrColorUnpackR(output) <= GrColorUnpackA(input) &&
440 GrColorUnpackG(output) <= GrColorUnpackA(input) &&
441 GrColorUnpackB(output) <= GrColorUnpackA(input);
442 if (!legalColorModulation && !legalAlphaModulation) {
443 ERRORF(reporter,
444 "\"Modulating\" processor %s made color/alpha value larger. "
Greg Daniel10ed2432017-12-01 16:19:43 -0500445 "Input: 0x%08x, Output: 0x%08x, pixel (%d, %d).",
446 clone->name(), input, output, x, y);
Brian Salomon587e08f2017-01-27 10:59:27 -0500447 passing = false;
448 }
449 }
Brian Salomon0e05a822017-07-25 09:43:22 -0400450 GrColor4f input4f = input_texel_color4f(x, y);
Brian Salomon587e08f2017-01-27 10:59:27 -0500451 GrColor4f output4f = GrColor4f::FromGrColor(output);
452 GrColor4f expected4f;
Brian Salomonaff329b2017-08-11 09:40:37 -0400453 if (clone->hasConstantOutputForConstantInput(input4f, &expected4f)) {
Brian Salomon587e08f2017-01-27 10:59:27 -0500454 float rDiff = fabsf(output4f.fRGBA[0] - expected4f.fRGBA[0]);
455 float gDiff = fabsf(output4f.fRGBA[1] - expected4f.fRGBA[1]);
456 float bDiff = fabsf(output4f.fRGBA[2] - expected4f.fRGBA[2]);
457 float aDiff = fabsf(output4f.fRGBA[3] - expected4f.fRGBA[3]);
Brian Salomon5d4cd9e2017-02-09 11:16:46 -0500458 static constexpr float kTol = 4 / 255.f;
Brian Salomon587e08f2017-01-27 10:59:27 -0500459 if (rDiff > kTol || gDiff > kTol || bDiff > kTol || aDiff > kTol) {
460 ERRORF(reporter,
461 "Processor %s claimed output for const input doesn't match "
Brian Salomon5d4cd9e2017-02-09 11:16:46 -0500462 "actual output. Error: %f, Tolerance: %f, input: (%f, %f, %f, "
463 "%f), actual: (%f, %f, %f, %f), expected(%f, %f, %f, %f)",
464 fp->name(), SkTMax(rDiff, SkTMax(gDiff, SkTMax(bDiff, aDiff))),
465 kTol, input4f.fRGBA[0], input4f.fRGBA[1], input4f.fRGBA[2],
466 input4f.fRGBA[3], output4f.fRGBA[0], output4f.fRGBA[1],
467 output4f.fRGBA[2], output4f.fRGBA[3], expected4f.fRGBA[0],
468 expected4f.fRGBA[1], expected4f.fRGBA[2], expected4f.fRGBA[3]);
Brian Salomon587e08f2017-01-27 10:59:27 -0500469 passing = false;
470 }
471 }
Brian Salomonaff329b2017-08-11 09:40:37 -0400472 if (GrColorIsOpaque(input) && clone->preservesOpaqueInput() &&
Brian Salomon587e08f2017-01-27 10:59:27 -0500473 !GrColorIsOpaque(output)) {
474 ERRORF(reporter,
475 "Processor %s claimed opaqueness is preserved but it is not. Input: "
Brian Osman2f3865b2017-03-15 13:35:51 -0400476 "0x%08x, Output: 0x%08x.",
Brian Salomonaff329b2017-08-11 09:40:37 -0400477 clone->name(), input, output);
Brian Salomon587e08f2017-01-27 10:59:27 -0500478 passing = false;
479 }
Brian Osmanbd1f76f2017-03-15 11:33:12 -0400480 if (!passing) {
Brian Salomonaff329b2017-08-11 09:40:37 -0400481 ERRORF(reporter, "Seed: 0x%08x, Processor details: %s", seed,
482 clone->dumpInfo().c_str());
Brian Osmanbd1f76f2017-03-15 11:33:12 -0400483 }
Brian Salomon587e08f2017-01-27 10:59:27 -0500484 }
485 }
486 }
487 }
488}
Robert Phillips18166ee2017-06-01 12:55:44 -0400489
Brian Salomon0e05a822017-07-25 09:43:22 -0400490// Tests that fragment processors returned by GrFragmentProcessor::clone() are equivalent to their
491// progenitors.
492DEF_GPUTEST_FOR_GL_RENDERING_CONTEXTS(ProcessorCloneTest, reporter, ctxInfo) {
493 GrContext* context = ctxInfo.grContext();
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500494 GrProxyProvider* proxyProvider = context->contextPriv().proxyProvider();
Robert Phillips6be756b2018-01-16 15:07:54 -0500495 auto resourceProvider = context->contextPriv().resourceProvider();
Brian Salomon0e05a822017-07-25 09:43:22 -0400496
497 SkRandom random;
498
499 // Make the destination context for the test.
500 static constexpr int kRenderSize = 1024;
501 sk_sp<GrRenderTargetContext> rtc = context->makeDeferredRenderTargetContext(
502 SkBackingFit::kExact, kRenderSize, kRenderSize, kRGBA_8888_GrPixelConfig, nullptr);
503
504 sk_sp<GrTextureProxy> proxies[2];
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500505 if (!init_test_textures(proxyProvider, &random, proxies)) {
Brian Salomon0e05a822017-07-25 09:43:22 -0400506 ERRORF(reporter, "Could not create test textures");
507 return;
508 }
509 GrProcessorTestData testData(&random, context, rtc.get(), proxies);
510
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500511 auto inputTexture = make_input_texture(proxyProvider, kRenderSize, kRenderSize);
Brian Salomon0e05a822017-07-25 09:43:22 -0400512 std::unique_ptr<GrColor[]> readData1(new GrColor[kRenderSize * kRenderSize]);
513 std::unique_ptr<GrColor[]> readData2(new GrColor[kRenderSize * kRenderSize]);
514 auto readInfo = SkImageInfo::Make(kRenderSize, kRenderSize, kRGBA_8888_SkColorType,
515 kPremul_SkAlphaType);
516
517 // Because processor factories configure themselves in random ways, this is not exhaustive.
518 for (int i = 0; i < GrFragmentProcessorTestFactory::Count(); ++i) {
519 static constexpr int kTimesToInvokeFactory = 10;
520 for (int j = 0; j < kTimesToInvokeFactory; ++j) {
521 auto fp = GrFragmentProcessorTestFactory::MakeIdx(i, &testData);
522 auto clone = fp->clone();
Brian Salomon0e05a822017-07-25 09:43:22 -0400523 if (!clone) {
Brian Salomon96271cd2017-07-31 16:27:23 -0400524 ERRORF(reporter, "Clone of processor %s failed.", fp->name());
Brian Salomon0e05a822017-07-25 09:43:22 -0400525 continue;
526 }
Brian Salomonaff329b2017-08-11 09:40:37 -0400527 const char* name = fp->name();
Robert Phillips6be756b2018-01-16 15:07:54 -0500528 if (!fp->instantiate(resourceProvider) || !clone->instantiate(resourceProvider)) {
Brian Salomon0e05a822017-07-25 09:43:22 -0400529 continue;
530 }
Brian Salomonce06e262017-08-01 16:23:40 -0400531 REPORTER_ASSERT(reporter, !strcmp(fp->name(), clone->name()));
532 REPORTER_ASSERT(reporter, fp->compatibleWithCoverageAsAlpha() ==
533 clone->compatibleWithCoverageAsAlpha());
534 REPORTER_ASSERT(reporter, fp->isEqual(*clone));
535 REPORTER_ASSERT(reporter, fp->preservesOpaqueInput() == clone->preservesOpaqueInput());
536 REPORTER_ASSERT(reporter, fp->hasConstantOutputForConstantInput() ==
537 clone->hasConstantOutputForConstantInput());
538 REPORTER_ASSERT(reporter, fp->numChildProcessors() == clone->numChildProcessors());
539 REPORTER_ASSERT(reporter, fp->usesLocalCoords() == clone->usesLocalCoords());
Brian Salomon0e05a822017-07-25 09:43:22 -0400540 // Draw with original and read back the results.
Brian Salomonaff329b2017-08-11 09:40:37 -0400541 test_draw_op(rtc.get(), std::move(fp), inputTexture);
Brian Salomon0e05a822017-07-25 09:43:22 -0400542 memset(readData1.get(), 0x0, sizeof(GrColor) * kRenderSize * kRenderSize);
543 rtc->readPixels(readInfo, readData1.get(), 0, 0, 0);
544
545 // Draw with clone and read back the results.
Brian Salomonaff329b2017-08-11 09:40:37 -0400546 test_draw_op(rtc.get(), std::move(clone), inputTexture);
Brian Salomon0e05a822017-07-25 09:43:22 -0400547 memset(readData2.get(), 0x0, sizeof(GrColor) * kRenderSize * kRenderSize);
548 rtc->readPixels(readInfo, readData2.get(), 0, 0, 0);
549
550 // Check that the results are the same.
551 bool passing = true;
552 for (int y = 0; y < kRenderSize && passing; ++y) {
553 for (int x = 0; x < kRenderSize && passing; ++x) {
554 int idx = y * kRenderSize + x;
555 if (readData1[idx] != readData2[idx]) {
556 ERRORF(reporter,
557 "Processor %s made clone produced different output. "
558 "Input color: 0x%08x, Original Output Color: 0x%08x, "
559 "Clone Output Color: 0x%08x..",
Brian Salomonaff329b2017-08-11 09:40:37 -0400560 name, input_texel_color(x, y), readData1[idx], readData2[idx]);
Brian Salomon0e05a822017-07-25 09:43:22 -0400561 passing = false;
562 }
563 }
564 }
565 }
566 }
567}
568
Hal Canary6f6961e2017-01-31 13:50:44 -0500569#endif // GR_TEST_UTILS
570#endif // SK_ALLOW_STATIC_GLOBAL_INITIALIZERS
571#endif // SK_SUPPORT_GPU