blob: 4eb735f325732e122c5d7206de7c50b5acaf34de [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
Brian Salomonac70f842017-05-08 10:43:33 -040011#include <random>
Brian Salomonc65aec92017-03-09 09:03:58 -050012#include "GrClip.h"
Brian Salomonbc6b99d2017-01-11 10:32:34 -050013#include "GrContext.h"
Robert Phillips1afd4cd2018-01-08 13:40:32 -050014#include "GrContextPriv.h"
Brian Salomonbc6b99d2017-01-11 10:32:34 -050015#include "GrGpuResource.h"
Robert Phillips7c525e62018-06-12 10:11:12 -040016#include "GrMemoryPool.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
Robert Phillips7c525e62018-06-12 10:11:12 -040030 static std::unique_ptr<GrDrawOp> Make(GrContext* context,
31 std::unique_ptr<GrFragmentProcessor> fp) {
Robert Phillipsc994a932018-06-19 13:09:54 -040032 GrOpMemoryPool* pool = context->contextPriv().opMemoryPool();
33
34 return pool->allocate<TestOp>(std::move(fp));
Brian Salomon82ddc942017-07-14 12:00:13 -040035 }
36
Robert Phillips5f567c72017-09-14 08:27:37 -040037 const char* name() const override { return "TestOp"; }
38
Robert Phillipsf1748f52017-09-14 14:11:24 -040039 void visitProxies(const VisitProxyFunc& func) const override {
Robert Phillips5f567c72017-09-14 08:27:37 -040040 fProcessors.visitProxies(func);
41 }
42
Brian Salomon82ddc942017-07-14 12:00:13 -040043 FixedFunctionFlags fixedFunctionFlags() const override { return FixedFunctionFlags::kNone; }
44
Brian Osman532b3f92018-07-11 10:02:07 -040045 RequiresDstTexture finalize(const GrCaps& caps, const GrAppliedClip* clip) override {
Brian Salomon82ddc942017-07-14 12:00:13 -040046 static constexpr GrProcessorAnalysisColor kUnknownColor;
47 GrColor overrideColor;
48 fProcessors.finalize(kUnknownColor, GrProcessorAnalysisCoverage::kNone, clip, false, caps,
Brian Osman532b3f92018-07-11 10:02:07 -040049 &overrideColor);
Brian Salomon82ddc942017-07-14 12:00:13 -040050 return RequiresDstTexture::kNo;
Brian Salomon649a3412017-03-09 13:50:43 -050051 }
Brian Salomonbc6b99d2017-01-11 10:32:34 -050052
53private:
Robert Phillips7c525e62018-06-12 10:11:12 -040054 friend class ::GrOpMemoryPool; // for ctor
55
Brian Salomonaff329b2017-08-11 09:40:37 -040056 TestOp(std::unique_ptr<GrFragmentProcessor> fp)
57 : INHERITED(ClassID()), fProcessors(std::move(fp)) {
Brian Salomon82ddc942017-07-14 12:00:13 -040058 this->setBounds(SkRect::MakeWH(100, 100), HasAABloat::kNo, IsZeroArea::kNo);
59 }
Brian Salomonbc6b99d2017-01-11 10:32:34 -050060
Brian Salomon91326c32017-08-09 16:02:19 -040061 void onPrepareDraws(Target* target) override { return; }
Brian Salomonbc6b99d2017-01-11 10:32:34 -050062
Brian Salomon82ddc942017-07-14 12:00:13 -040063 bool onCombineIfPossible(GrOp* op, const GrCaps& caps) override { return false; }
64
65 GrProcessorSet fProcessors;
66
67 typedef GrMeshDrawOp INHERITED;
Brian Salomonbc6b99d2017-01-11 10:32:34 -050068};
69
70/**
71 * FP used to test ref/IO counts on owned GrGpuResources. Can also be a parent FP to test counts
72 * of resources owned by child FPs.
73 */
74class TestFP : public GrFragmentProcessor {
75public:
Brian Salomonaff329b2017-08-11 09:40:37 -040076 static std::unique_ptr<GrFragmentProcessor> Make(std::unique_ptr<GrFragmentProcessor> child) {
77 return std::unique_ptr<GrFragmentProcessor>(new TestFP(std::move(child)));
Brian Salomonbc6b99d2017-01-11 10:32:34 -050078 }
Brian Salomonaff329b2017-08-11 09:40:37 -040079 static std::unique_ptr<GrFragmentProcessor> Make(const SkTArray<sk_sp<GrTextureProxy>>& proxies,
Brian Salomon559f5562017-11-15 14:28:33 -050080 const SkTArray<sk_sp<GrBuffer>>& buffers) {
81 return std::unique_ptr<GrFragmentProcessor>(new TestFP(proxies, buffers));
Brian Salomonbc6b99d2017-01-11 10:32:34 -050082 }
83
84 const char* name() const override { return "test"; }
85
86 void onGetGLSLProcessorKey(const GrShaderCaps&, GrProcessorKeyBuilder* b) const override {
87 // We don't really care about reusing these.
88 static int32_t gKey = 0;
89 b->add32(sk_atomic_inc(&gKey));
90 }
91
Brian Salomonaff329b2017-08-11 09:40:37 -040092 std::unique_ptr<GrFragmentProcessor> clone() const override {
93 return std::unique_ptr<GrFragmentProcessor>(new TestFP(*this));
Brian Salomonb17e6392017-07-28 13:41:51 -040094 }
95
Brian Salomonbc6b99d2017-01-11 10:32:34 -050096private:
Brian Salomon559f5562017-11-15 14:28:33 -050097 TestFP(const SkTArray<sk_sp<GrTextureProxy>>& proxies, const SkTArray<sk_sp<GrBuffer>>& buffers)
98 : INHERITED(kTestFP_ClassID, kNone_OptimizationFlags), fSamplers(4), fBuffers(4) {
Robert Phillips30f9bc62017-02-22 15:28:38 -050099 for (const auto& proxy : proxies) {
Robert Phillipsfbcef6e2017-06-15 12:07:18 -0400100 this->addTextureSampler(&fSamplers.emplace_back(proxy));
Brian Salomonbc6b99d2017-01-11 10:32:34 -0500101 }
102 for (const auto& buffer : buffers) {
103 this->addBufferAccess(&fBuffers.emplace_back(kRGBA_8888_GrPixelConfig, buffer.get()));
104 }
Brian Salomonbc6b99d2017-01-11 10:32:34 -0500105 }
106
Brian Salomonaff329b2017-08-11 09:40:37 -0400107 TestFP(std::unique_ptr<GrFragmentProcessor> child)
Brian Salomon559f5562017-11-15 14:28:33 -0500108 : INHERITED(kTestFP_ClassID, kNone_OptimizationFlags), fSamplers(4), fBuffers(4) {
Brian Salomonbc6b99d2017-01-11 10:32:34 -0500109 this->registerChildProcessor(std::move(child));
110 }
111
Brian Salomon96271cd2017-07-31 16:27:23 -0400112 explicit TestFP(const TestFP& that)
Brian Salomon559f5562017-11-15 14:28:33 -0500113 : INHERITED(kTestFP_ClassID, that.optimizationFlags()), fSamplers(4), fBuffers(4) {
Brian Salomonb17e6392017-07-28 13:41:51 -0400114 for (int i = 0; i < that.fSamplers.count(); ++i) {
115 fSamplers.emplace_back(that.fSamplers[i]);
116 this->addTextureSampler(&fSamplers.back());
117 }
118 for (int i = 0; i < that.fBuffers.count(); ++i) {
119 fBuffers.emplace_back(that.fBuffers[i]);
120 this->addBufferAccess(&fBuffers.back());
121 }
Brian Salomon96271cd2017-07-31 16:27:23 -0400122 for (int i = 0; i < that.numChildProcessors(); ++i) {
123 this->registerChildProcessor(that.childProcessor(i).clone());
Brian Salomonb17e6392017-07-28 13:41:51 -0400124 }
125 }
126
Brian Salomonbc6b99d2017-01-11 10:32:34 -0500127 virtual GrGLSLFragmentProcessor* onCreateGLSLInstance() const override {
128 class TestGLSLFP : public GrGLSLFragmentProcessor {
129 public:
130 TestGLSLFP() {}
131 void emitCode(EmitArgs& args) override {
132 GrGLSLFPFragmentBuilder* fragBuilder = args.fFragBuilder;
133 fragBuilder->codeAppendf("%s = %s;", args.fOutputColor, args.fInputColor);
134 }
135
136 private:
137 };
138 return new TestGLSLFP();
139 }
140
141 bool onIsEqual(const GrFragmentProcessor&) const override { return false; }
142
143 GrTAllocator<TextureSampler> fSamplers;
144 GrTAllocator<BufferAccess> fBuffers;
Brian Salomon587e08f2017-01-27 10:59:27 -0500145 typedef GrFragmentProcessor INHERITED;
Brian Salomonbc6b99d2017-01-11 10:32:34 -0500146};
147}
148
Brian Salomonf046e152017-01-11 15:24:47 -0500149template <typename T>
150inline void testingOnly_getIORefCnts(const T* resource, int* refCnt, int* readCnt, int* writeCnt) {
151 *refCnt = resource->fRefCnt;
152 *readCnt = resource->fPendingReads;
153 *writeCnt = resource->fPendingWrites;
Brian Salomonbc6b99d2017-01-11 10:32:34 -0500154}
155
Robert Phillips2f493142017-03-02 18:18:38 -0500156void testingOnly_getIORefCnts(GrTextureProxy* proxy, int* refCnt, int* readCnt, int* writeCnt) {
Robert Phillips30f9bc62017-02-22 15:28:38 -0500157 *refCnt = proxy->getBackingRefCnt_TestOnly();
158 *readCnt = proxy->getPendingReadCnt_TestOnly();
159 *writeCnt = proxy->getPendingWriteCnt_TestOnly();
160}
161
Brian Salomonbc6b99d2017-01-11 10:32:34 -0500162DEF_GPUTEST_FOR_ALL_CONTEXTS(ProcessorRefTest, reporter, ctxInfo) {
163 GrContext* context = ctxInfo.grContext();
Robert Phillips1afd4cd2018-01-08 13:40:32 -0500164 GrProxyProvider* proxyProvider = context->contextPriv().proxyProvider();
Robert Phillips6be756b2018-01-16 15:07:54 -0500165 GrResourceProvider* resourceProvider = context->contextPriv().resourceProvider();
Brian Salomonbc6b99d2017-01-11 10:32:34 -0500166
Robert Phillips16d8ec62017-07-27 16:16:25 -0400167 GrSurfaceDesc desc;
Brian Salomonbc6b99d2017-01-11 10:32:34 -0500168 desc.fWidth = 10;
169 desc.fHeight = 10;
Robert Phillips16d8ec62017-07-27 16:16:25 -0400170 desc.fConfig = kRGBA_8888_GrPixelConfig;
Brian Salomonbc6b99d2017-01-11 10:32:34 -0500171
Brian Salomonb17e6392017-07-28 13:41:51 -0400172 for (bool makeClone : {false, true}) {
173 for (int parentCnt = 0; parentCnt < 2; parentCnt++) {
174 sk_sp<GrRenderTargetContext> renderTargetContext(
Robert Phillips0c4b7b12018-03-06 08:20:37 -0500175 context->contextPriv().makeDeferredRenderTargetContext(
176 SkBackingFit::kApprox, 1, 1,
Brian Salomon2a4f9832018-03-03 22:43:43 -0500177 kRGBA_8888_GrPixelConfig, nullptr));
Brian Salomonbc6b99d2017-01-11 10:32:34 -0500178 {
Brian Salomonc7fe0f72018-05-11 10:14:21 -0400179 bool texelBufferSupport =
180 context->contextPriv().caps()->shaderCaps()->texelBufferSupport();
Brian Salomon2a4f9832018-03-03 22:43:43 -0500181 sk_sp<GrTextureProxy> proxy1 = proxyProvider->createProxy(
182 desc, kTopLeft_GrSurfaceOrigin, SkBackingFit::kExact, SkBudgeted::kYes);
183 sk_sp<GrTextureProxy> proxy2 = proxyProvider->createProxy(
184 desc, kTopLeft_GrSurfaceOrigin, SkBackingFit::kExact, SkBudgeted::kYes);
185 sk_sp<GrTextureProxy> proxy3 = proxyProvider->createProxy(
186 desc, kTopLeft_GrSurfaceOrigin, SkBackingFit::kExact, SkBudgeted::kYes);
187 sk_sp<GrTextureProxy> proxy4 = proxyProvider->createProxy(
188 desc, kTopLeft_GrSurfaceOrigin, SkBackingFit::kExact, SkBudgeted::kYes);
Brian Salomonb17e6392017-07-28 13:41:51 -0400189 sk_sp<GrBuffer> buffer(texelBufferSupport
Robert Phillips6be756b2018-01-16 15:07:54 -0500190 ? resourceProvider->createBuffer(
Brian Salomonb17e6392017-07-28 13:41:51 -0400191 1024, GrBufferType::kTexel_GrBufferType,
192 GrAccessPattern::kStatic_GrAccessPattern, 0)
193 : nullptr);
194 {
195 SkTArray<sk_sp<GrTextureProxy>> proxies;
196 SkTArray<sk_sp<GrBuffer>> buffers;
Brian Salomonb17e6392017-07-28 13:41:51 -0400197 proxies.push_back(proxy1);
198 if (texelBufferSupport) {
199 buffers.push_back(buffer);
200 }
Brian Salomon559f5562017-11-15 14:28:33 -0500201 auto fp = TestFP::Make(std::move(proxies), std::move(buffers));
Brian Salomonb17e6392017-07-28 13:41:51 -0400202 for (int i = 0; i < parentCnt; ++i) {
203 fp = TestFP::Make(std::move(fp));
204 }
Brian Salomonaff329b2017-08-11 09:40:37 -0400205 std::unique_ptr<GrFragmentProcessor> clone;
Brian Salomonb17e6392017-07-28 13:41:51 -0400206 if (makeClone) {
207 clone = fp->clone();
208 }
Robert Phillips7c525e62018-06-12 10:11:12 -0400209 std::unique_ptr<GrDrawOp> op(TestOp::Make(context, std::move(fp)));
Brian Salomonb17e6392017-07-28 13:41:51 -0400210 renderTargetContext->priv().testingOnly_addDrawOp(std::move(op));
211 if (clone) {
Robert Phillips7c525e62018-06-12 10:11:12 -0400212 op = TestOp::Make(context, std::move(clone));
Brian Salomonb17e6392017-07-28 13:41:51 -0400213 renderTargetContext->priv().testingOnly_addDrawOp(std::move(op));
214 }
215 }
216 int refCnt, readCnt, writeCnt;
217
218 testingOnly_getIORefCnts(proxy1.get(), &refCnt, &readCnt, &writeCnt);
219 // IO counts should be double if there is a clone of the FP.
220 int ioRefMul = makeClone ? 2 : 1;
221 REPORTER_ASSERT(reporter, 1 == refCnt);
222 REPORTER_ASSERT(reporter, ioRefMul * 1 == readCnt);
223 REPORTER_ASSERT(reporter, ioRefMul * 0 == writeCnt);
224
Brian Salomonbc6b99d2017-01-11 10:32:34 -0500225 if (texelBufferSupport) {
Brian Salomonb17e6392017-07-28 13:41:51 -0400226 testingOnly_getIORefCnts(buffer.get(), &refCnt, &readCnt, &writeCnt);
227 REPORTER_ASSERT(reporter, 1 == refCnt);
228 REPORTER_ASSERT(reporter, ioRefMul * 1 == readCnt);
229 REPORTER_ASSERT(reporter, ioRefMul * 0 == writeCnt);
Brian Salomonbc6b99d2017-01-11 10:32:34 -0500230 }
Brian Salomonb17e6392017-07-28 13:41:51 -0400231
Brian Salomonb17e6392017-07-28 13:41:51 -0400232 context->flush();
233
234 testingOnly_getIORefCnts(proxy1.get(), &refCnt, &readCnt, &writeCnt);
235 REPORTER_ASSERT(reporter, 1 == refCnt);
236 REPORTER_ASSERT(reporter, ioRefMul * 0 == readCnt);
237 REPORTER_ASSERT(reporter, ioRefMul * 0 == writeCnt);
238
239 if (texelBufferSupport) {
240 testingOnly_getIORefCnts(buffer.get(), &refCnt, &readCnt, &writeCnt);
241 REPORTER_ASSERT(reporter, 1 == refCnt);
242 REPORTER_ASSERT(reporter, ioRefMul * 0 == readCnt);
243 REPORTER_ASSERT(reporter, ioRefMul * 0 == writeCnt);
Brian Salomonbc6b99d2017-01-11 10:32:34 -0500244 }
Brian Salomonbc6b99d2017-01-11 10:32:34 -0500245
Brian Salomonb17e6392017-07-28 13:41:51 -0400246 if (texelBufferSupport) {
247 testingOnly_getIORefCnts(proxy2.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(proxy3.get(), &refCnt, &readCnt, &writeCnt);
253 REPORTER_ASSERT(reporter, 1 == refCnt);
254 REPORTER_ASSERT(reporter, ioRefMul * 0 == readCnt);
255 REPORTER_ASSERT(reporter, ioRefMul * 0 == writeCnt);
Brian Salomonbc6b99d2017-01-11 10:32:34 -0500256
Brian Salomonb17e6392017-07-28 13:41:51 -0400257 testingOnly_getIORefCnts(proxy4.get(), &refCnt, &readCnt, &writeCnt);
258 REPORTER_ASSERT(reporter, 1 == refCnt);
259 REPORTER_ASSERT(reporter, ioRefMul * 0 == readCnt);
260 REPORTER_ASSERT(reporter, ioRefMul * 0 == writeCnt);
261 }
Brian Salomonbc6b99d2017-01-11 10:32:34 -0500262 }
263 }
264 }
265}
Brian Salomon587e08f2017-01-27 10:59:27 -0500266
267// This test uses the random GrFragmentProcessor test factory, which relies on static initializers.
268#if SK_ALLOW_STATIC_GLOBAL_INITIALIZERS
269
Brian Salomon0e05a822017-07-25 09:43:22 -0400270#include "SkCommandLineFlags.h"
271DEFINE_bool(randomProcessorTest, false, "Use non-deterministic seed for random processor tests?");
272
273#if GR_TEST_UTILS
274
275static GrColor input_texel_color(int i, int j) {
276 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 -0500277 return GrPremulColor(color);
278}
279
Brian Salomon0e05a822017-07-25 09:43:22 -0400280static GrColor4f input_texel_color4f(int i, int j) {
281 return GrColor4f::FromGrColor(input_texel_color(i, j));
282}
Brian Salomon587e08f2017-01-27 10:59:27 -0500283
Robert Phillips7c525e62018-06-12 10:11:12 -0400284void test_draw_op(GrContext* context,
285 GrRenderTargetContext* rtc,
286 std::unique_ptr<GrFragmentProcessor> fp,
Robert Phillips30f9bc62017-02-22 15:28:38 -0500287 sk_sp<GrTextureProxy> inputDataProxy) {
Brian Salomon5d4cd9e2017-02-09 11:16:46 -0500288 GrPaint paint;
Brian Osman2240be92017-10-18 13:15:13 -0400289 paint.addColorTextureProcessor(std::move(inputDataProxy), SkMatrix::I());
Brian Salomon5d4cd9e2017-02-09 11:16:46 -0500290 paint.addColorFragmentProcessor(std::move(fp));
291 paint.setPorterDuffXPFactory(SkBlendMode::kSrc);
Brian Salomonac70f842017-05-08 10:43:33 -0400292
Robert Phillips7c525e62018-06-12 10:11:12 -0400293 auto op = GrRectOpFactory::MakeNonAAFill(context, std::move(paint), SkMatrix::I(),
Brian Salomonbaaf4392017-06-15 09:59:23 -0400294 SkRect::MakeWH(rtc->width(), rtc->height()),
295 GrAAType::kNone);
Brian Salomonac70f842017-05-08 10:43:33 -0400296 rtc->addDrawOp(GrNoClip(), std::move(op));
Brian Salomon5d4cd9e2017-02-09 11:16:46 -0500297}
298
Brian Salomon0e05a822017-07-25 09:43:22 -0400299/** Initializes the two test texture proxies that are available to the FP test factories. */
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500300bool init_test_textures(GrProxyProvider* proxyProvider, SkRandom* random,
301 sk_sp<GrTextureProxy> proxies[2]) {
Brian Salomon0e05a822017-07-25 09:43:22 -0400302 static const int kTestTextureSize = 256;
303 GrSurfaceDesc desc;
Brian Salomon0e05a822017-07-25 09:43:22 -0400304 desc.fWidth = kTestTextureSize;
305 desc.fHeight = kTestTextureSize;
306 desc.fConfig = kRGBA_8888_GrPixelConfig;
Brian Osmanc35a2d42017-03-17 10:58:53 -0400307
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500308 {
309 // Put premul data into the RGBA texture that the test FPs can optionally use.
310 std::unique_ptr<GrColor[]> rgbaData(new GrColor[kTestTextureSize * kTestTextureSize]);
311 for (int y = 0; y < kTestTextureSize; ++y) {
312 for (int x = 0; x < kTestTextureSize; ++x) {
313 rgbaData[kTestTextureSize * y + x] =
314 input_texel_color(random->nextULessThan(256), random->nextULessThan(256));
315 }
Brian Salomon0e05a822017-07-25 09:43:22 -0400316 }
Brian Salomon0e05a822017-07-25 09:43:22 -0400317
Brian Salomon58389b92018-03-07 13:01:25 -0500318 proxies[0] = proxyProvider->createTextureProxy(desc, SkBudgeted::kYes, rgbaData.get(),
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500319 kTestTextureSize * sizeof(GrColor));
Brian Salomon0e05a822017-07-25 09:43:22 -0400320 }
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500321
322 {
323 // Put random values into the alpha texture that the test FPs can optionally use.
324 desc.fConfig = kAlpha_8_GrPixelConfig;
325 std::unique_ptr<uint8_t[]> alphaData(new uint8_t[kTestTextureSize * kTestTextureSize]);
326 for (int y = 0; y < kTestTextureSize; ++y) {
327 for (int x = 0; x < kTestTextureSize; ++x) {
328 alphaData[kTestTextureSize * y + x] = random->nextULessThan(256);
329 }
330 }
331
Brian Salomon58389b92018-03-07 13:01:25 -0500332 proxies[1] = proxyProvider->createTextureProxy(desc, SkBudgeted::kYes, alphaData.get(),
Brian Salomon2a4f9832018-03-03 22:43:43 -0500333 kTestTextureSize);
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500334 }
Brian Salomon0e05a822017-07-25 09:43:22 -0400335
336 return proxies[0] && proxies[1];
337}
338
339// Creates a texture of premul colors used as the output of the fragment processor that precedes
340// the fragment processor under test. Color values are those provided by input_texel_color().
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500341sk_sp<GrTextureProxy> make_input_texture(GrProxyProvider* proxyProvider, int width, int height) {
Brian Salomon0e05a822017-07-25 09:43:22 -0400342 std::unique_ptr<GrColor[]> data(new GrColor[width * height]);
343 for (int y = 0; y < width; ++y) {
344 for (int x = 0; x < height; ++x) {
345 data.get()[width * y + x] = input_texel_color(x, y);
346 }
347 }
348 GrSurfaceDesc desc;
Brian Salomon0e05a822017-07-25 09:43:22 -0400349 desc.fWidth = width;
350 desc.fHeight = height;
351 desc.fConfig = kRGBA_8888_GrPixelConfig;
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500352
Brian Salomon58389b92018-03-07 13:01:25 -0500353 return proxyProvider->createTextureProxy(desc, SkBudgeted::kYes, data.get(),
354 width * sizeof(GrColor));
Brian Salomon0e05a822017-07-25 09:43:22 -0400355}
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500356
Brian Salomon5d4cd9e2017-02-09 11:16:46 -0500357DEF_GPUTEST_FOR_GL_RENDERING_CONTEXTS(ProcessorOptimizationValidationTest, reporter, ctxInfo) {
Brian Salomon587e08f2017-01-27 10:59:27 -0500358 GrContext* context = ctxInfo.grContext();
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500359 GrProxyProvider* proxyProvider = context->contextPriv().proxyProvider();
Robert Phillips6be756b2018-01-16 15:07:54 -0500360 auto resourceProvider = context->contextPriv().resourceProvider();
Brian Salomon1c053642017-07-24 10:16:19 -0400361 using FPFactory = GrFragmentProcessorTestFactory;
Brian Osmanc35a2d42017-03-17 10:58:53 -0400362
363 uint32_t seed = 0;
364 if (FLAGS_randomProcessorTest) {
365 std::random_device rd;
366 seed = rd();
367 }
368 // If a non-deterministic bot fails this test, check the output to see what seed it used, then
369 // hard-code that value here:
370 SkRandom random(seed);
371
Brian Salomon0e05a822017-07-25 09:43:22 -0400372 // Make the destination context for the test.
373 static constexpr int kRenderSize = 256;
Robert Phillips0c4b7b12018-03-06 08:20:37 -0500374 sk_sp<GrRenderTargetContext> rtc = context->contextPriv().makeDeferredRenderTargetContext(
Brian Salomon0e05a822017-07-25 09:43:22 -0400375 SkBackingFit::kExact, kRenderSize, kRenderSize, kRGBA_8888_GrPixelConfig, nullptr);
Brian Salomond1a8bdf2017-02-10 12:39:26 -0500376
Robert Phillipse78b7252017-04-06 07:59:41 -0400377 sk_sp<GrTextureProxy> proxies[2];
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500378 if (!init_test_textures(proxyProvider, &random, proxies)) {
Brian Salomon0e05a822017-07-25 09:43:22 -0400379 ERRORF(reporter, "Could not create test textures");
Robert Phillipsbb581ce2017-05-29 15:05:15 -0400380 return;
381 }
Robert Phillipse78b7252017-04-06 07:59:41 -0400382 GrProcessorTestData testData(&random, context, rtc.get(), proxies);
Brian Salomon587e08f2017-01-27 10:59:27 -0500383
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500384 auto inputTexture = make_input_texture(proxyProvider, kRenderSize, kRenderSize);
Robert Phillips30f9bc62017-02-22 15:28:38 -0500385
Ben Wagner8c791942017-07-25 11:47:48 -0400386 std::unique_ptr<GrColor[]> readData(new GrColor[kRenderSize * kRenderSize]);
Brian Salomon0e05a822017-07-25 09:43:22 -0400387 // Because processor factories configure themselves in random ways, this is not exhaustive.
Brian Salomon587e08f2017-01-27 10:59:27 -0500388 for (int i = 0; i < FPFactory::Count(); ++i) {
389 int timesToInvokeFactory = 5;
390 // Increase the number of attempts if the FP has child FPs since optimizations likely depend
391 // on child optimizations being present.
Brian Salomonaff329b2017-08-11 09:40:37 -0400392 std::unique_ptr<GrFragmentProcessor> fp = FPFactory::MakeIdx(i, &testData);
Brian Salomon587e08f2017-01-27 10:59:27 -0500393 for (int j = 0; j < fp->numChildProcessors(); ++j) {
394 // This value made a reasonable trade off between time and coverage when this test was
395 // written.
396 timesToInvokeFactory *= FPFactory::Count() / 2;
397 }
398 for (int j = 0; j < timesToInvokeFactory; ++j) {
399 fp = FPFactory::MakeIdx(i, &testData);
Robert Phillips6be756b2018-01-16 15:07:54 -0500400 if (!fp->instantiate(resourceProvider)) {
Robert Phillipsa91e0b72017-05-01 13:12:20 -0400401 continue;
402 }
403
Brian Salomon587e08f2017-01-27 10:59:27 -0500404 if (!fp->hasConstantOutputForConstantInput() && !fp->preservesOpaqueInput() &&
Brian Salomonf3b995b2017-02-15 10:22:23 -0500405 !fp->compatibleWithCoverageAsAlpha()) {
Brian Salomon587e08f2017-01-27 10:59:27 -0500406 continue;
407 }
Brian Salomonaff329b2017-08-11 09:40:37 -0400408
409 // Since we transfer away ownership of the original FP, we make a clone.
410 auto clone = fp->clone();
411
Robert Phillips7c525e62018-06-12 10:11:12 -0400412 test_draw_op(context, rtc.get(), std::move(fp), inputTexture);
Brian Salomon0e05a822017-07-25 09:43:22 -0400413 memset(readData.get(), 0x0, sizeof(GrColor) * kRenderSize * kRenderSize);
414 rtc->readPixels(SkImageInfo::Make(kRenderSize, kRenderSize, kRGBA_8888_SkColorType,
415 kPremul_SkAlphaType),
416 readData.get(), 0, 0, 0);
Brian Salomon587e08f2017-01-27 10:59:27 -0500417 bool passing = true;
418 if (0) { // Useful to see what FPs are being tested.
419 SkString children;
Brian Salomonaff329b2017-08-11 09:40:37 -0400420 for (int c = 0; c < clone->numChildProcessors(); ++c) {
Brian Salomon587e08f2017-01-27 10:59:27 -0500421 if (!c) {
422 children.append("(");
423 }
Brian Salomonaff329b2017-08-11 09:40:37 -0400424 children.append(clone->name());
425 children.append(c == clone->numChildProcessors() - 1 ? ")" : ", ");
Brian Salomon587e08f2017-01-27 10:59:27 -0500426 }
Brian Salomonaff329b2017-08-11 09:40:37 -0400427 SkDebugf("%s %s\n", clone->name(), children.c_str());
Brian Salomon587e08f2017-01-27 10:59:27 -0500428 }
Brian Salomon0e05a822017-07-25 09:43:22 -0400429 for (int y = 0; y < kRenderSize && passing; ++y) {
430 for (int x = 0; x < kRenderSize && passing; ++x) {
431 GrColor input = input_texel_color(x, y);
432 GrColor output = readData.get()[y * kRenderSize + x];
Brian Salomonaff329b2017-08-11 09:40:37 -0400433 if (clone->compatibleWithCoverageAsAlpha()) {
Brian Salomon587e08f2017-01-27 10:59:27 -0500434 // A modulating processor is allowed to modulate either the input color or
435 // just the input alpha.
436 bool legalColorModulation =
437 GrColorUnpackA(output) <= GrColorUnpackA(input) &&
438 GrColorUnpackR(output) <= GrColorUnpackR(input) &&
439 GrColorUnpackG(output) <= GrColorUnpackG(input) &&
440 GrColorUnpackB(output) <= GrColorUnpackB(input);
441 bool legalAlphaModulation =
442 GrColorUnpackA(output) <= GrColorUnpackA(input) &&
443 GrColorUnpackR(output) <= GrColorUnpackA(input) &&
444 GrColorUnpackG(output) <= GrColorUnpackA(input) &&
445 GrColorUnpackB(output) <= GrColorUnpackA(input);
446 if (!legalColorModulation && !legalAlphaModulation) {
447 ERRORF(reporter,
448 "\"Modulating\" processor %s made color/alpha value larger. "
Greg Daniel10ed2432017-12-01 16:19:43 -0500449 "Input: 0x%08x, Output: 0x%08x, pixel (%d, %d).",
450 clone->name(), input, output, x, y);
Brian Salomon587e08f2017-01-27 10:59:27 -0500451 passing = false;
452 }
453 }
Brian Salomon0e05a822017-07-25 09:43:22 -0400454 GrColor4f input4f = input_texel_color4f(x, y);
Brian Salomon587e08f2017-01-27 10:59:27 -0500455 GrColor4f output4f = GrColor4f::FromGrColor(output);
456 GrColor4f expected4f;
Brian Salomonaff329b2017-08-11 09:40:37 -0400457 if (clone->hasConstantOutputForConstantInput(input4f, &expected4f)) {
Brian Salomon587e08f2017-01-27 10:59:27 -0500458 float rDiff = fabsf(output4f.fRGBA[0] - expected4f.fRGBA[0]);
459 float gDiff = fabsf(output4f.fRGBA[1] - expected4f.fRGBA[1]);
460 float bDiff = fabsf(output4f.fRGBA[2] - expected4f.fRGBA[2]);
461 float aDiff = fabsf(output4f.fRGBA[3] - expected4f.fRGBA[3]);
Brian Salomon5d4cd9e2017-02-09 11:16:46 -0500462 static constexpr float kTol = 4 / 255.f;
Brian Salomon587e08f2017-01-27 10:59:27 -0500463 if (rDiff > kTol || gDiff > kTol || bDiff > kTol || aDiff > kTol) {
464 ERRORF(reporter,
465 "Processor %s claimed output for const input doesn't match "
Brian Salomon5d4cd9e2017-02-09 11:16:46 -0500466 "actual output. Error: %f, Tolerance: %f, input: (%f, %f, %f, "
467 "%f), actual: (%f, %f, %f, %f), expected(%f, %f, %f, %f)",
Brian Salomonf61711a2018-02-16 10:44:28 -0500468 clone->name(),
469 SkTMax(rDiff, SkTMax(gDiff, SkTMax(bDiff, aDiff))), kTol,
470 input4f.fRGBA[0], input4f.fRGBA[1], input4f.fRGBA[2],
Brian Salomon5d4cd9e2017-02-09 11:16:46 -0500471 input4f.fRGBA[3], output4f.fRGBA[0], output4f.fRGBA[1],
472 output4f.fRGBA[2], output4f.fRGBA[3], expected4f.fRGBA[0],
473 expected4f.fRGBA[1], expected4f.fRGBA[2], expected4f.fRGBA[3]);
Brian Salomon587e08f2017-01-27 10:59:27 -0500474 passing = false;
475 }
476 }
Brian Salomonaff329b2017-08-11 09:40:37 -0400477 if (GrColorIsOpaque(input) && clone->preservesOpaqueInput() &&
Brian Salomon587e08f2017-01-27 10:59:27 -0500478 !GrColorIsOpaque(output)) {
479 ERRORF(reporter,
480 "Processor %s claimed opaqueness is preserved but it is not. Input: "
Brian Osman2f3865b2017-03-15 13:35:51 -0400481 "0x%08x, Output: 0x%08x.",
Brian Salomonaff329b2017-08-11 09:40:37 -0400482 clone->name(), input, output);
Brian Salomon587e08f2017-01-27 10:59:27 -0500483 passing = false;
484 }
Brian Osmanbd1f76f2017-03-15 11:33:12 -0400485 if (!passing) {
Brian Salomonaff329b2017-08-11 09:40:37 -0400486 ERRORF(reporter, "Seed: 0x%08x, Processor details: %s", seed,
487 clone->dumpInfo().c_str());
Brian Osmanbd1f76f2017-03-15 11:33:12 -0400488 }
Brian Salomon587e08f2017-01-27 10:59:27 -0500489 }
490 }
491 }
492 }
493}
Robert Phillips18166ee2017-06-01 12:55:44 -0400494
Brian Salomon0e05a822017-07-25 09:43:22 -0400495// Tests that fragment processors returned by GrFragmentProcessor::clone() are equivalent to their
496// progenitors.
497DEF_GPUTEST_FOR_GL_RENDERING_CONTEXTS(ProcessorCloneTest, reporter, ctxInfo) {
498 GrContext* context = ctxInfo.grContext();
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500499 GrProxyProvider* proxyProvider = context->contextPriv().proxyProvider();
Robert Phillips6be756b2018-01-16 15:07:54 -0500500 auto resourceProvider = context->contextPriv().resourceProvider();
Brian Salomon0e05a822017-07-25 09:43:22 -0400501
502 SkRandom random;
503
504 // Make the destination context for the test.
505 static constexpr int kRenderSize = 1024;
Robert Phillips0c4b7b12018-03-06 08:20:37 -0500506 sk_sp<GrRenderTargetContext> rtc = context->contextPriv().makeDeferredRenderTargetContext(
Brian Salomon0e05a822017-07-25 09:43:22 -0400507 SkBackingFit::kExact, kRenderSize, kRenderSize, kRGBA_8888_GrPixelConfig, nullptr);
508
509 sk_sp<GrTextureProxy> proxies[2];
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500510 if (!init_test_textures(proxyProvider, &random, proxies)) {
Brian Salomon0e05a822017-07-25 09:43:22 -0400511 ERRORF(reporter, "Could not create test textures");
512 return;
513 }
514 GrProcessorTestData testData(&random, context, rtc.get(), proxies);
515
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500516 auto inputTexture = make_input_texture(proxyProvider, kRenderSize, kRenderSize);
Brian Salomon0e05a822017-07-25 09:43:22 -0400517 std::unique_ptr<GrColor[]> readData1(new GrColor[kRenderSize * kRenderSize]);
518 std::unique_ptr<GrColor[]> readData2(new GrColor[kRenderSize * kRenderSize]);
519 auto readInfo = SkImageInfo::Make(kRenderSize, kRenderSize, kRGBA_8888_SkColorType,
520 kPremul_SkAlphaType);
521
522 // Because processor factories configure themselves in random ways, this is not exhaustive.
523 for (int i = 0; i < GrFragmentProcessorTestFactory::Count(); ++i) {
524 static constexpr int kTimesToInvokeFactory = 10;
525 for (int j = 0; j < kTimesToInvokeFactory; ++j) {
526 auto fp = GrFragmentProcessorTestFactory::MakeIdx(i, &testData);
527 auto clone = fp->clone();
Brian Salomon0e05a822017-07-25 09:43:22 -0400528 if (!clone) {
Brian Salomon96271cd2017-07-31 16:27:23 -0400529 ERRORF(reporter, "Clone of processor %s failed.", fp->name());
Brian Salomon0e05a822017-07-25 09:43:22 -0400530 continue;
531 }
Brian Salomonaff329b2017-08-11 09:40:37 -0400532 const char* name = fp->name();
Robert Phillips6be756b2018-01-16 15:07:54 -0500533 if (!fp->instantiate(resourceProvider) || !clone->instantiate(resourceProvider)) {
Brian Salomon0e05a822017-07-25 09:43:22 -0400534 continue;
535 }
Brian Salomonce06e262017-08-01 16:23:40 -0400536 REPORTER_ASSERT(reporter, !strcmp(fp->name(), clone->name()));
537 REPORTER_ASSERT(reporter, fp->compatibleWithCoverageAsAlpha() ==
538 clone->compatibleWithCoverageAsAlpha());
539 REPORTER_ASSERT(reporter, fp->isEqual(*clone));
540 REPORTER_ASSERT(reporter, fp->preservesOpaqueInput() == clone->preservesOpaqueInput());
541 REPORTER_ASSERT(reporter, fp->hasConstantOutputForConstantInput() ==
542 clone->hasConstantOutputForConstantInput());
543 REPORTER_ASSERT(reporter, fp->numChildProcessors() == clone->numChildProcessors());
544 REPORTER_ASSERT(reporter, fp->usesLocalCoords() == clone->usesLocalCoords());
Brian Salomon0e05a822017-07-25 09:43:22 -0400545 // Draw with original and read back the results.
Robert Phillips7c525e62018-06-12 10:11:12 -0400546 test_draw_op(context, rtc.get(), std::move(fp), inputTexture);
Brian Salomon0e05a822017-07-25 09:43:22 -0400547 memset(readData1.get(), 0x0, sizeof(GrColor) * kRenderSize * kRenderSize);
548 rtc->readPixels(readInfo, readData1.get(), 0, 0, 0);
549
550 // Draw with clone and read back the results.
Robert Phillips7c525e62018-06-12 10:11:12 -0400551 test_draw_op(context, rtc.get(), std::move(clone), inputTexture);
Brian Salomon0e05a822017-07-25 09:43:22 -0400552 memset(readData2.get(), 0x0, sizeof(GrColor) * kRenderSize * kRenderSize);
553 rtc->readPixels(readInfo, readData2.get(), 0, 0, 0);
554
555 // Check that the results are the same.
556 bool passing = true;
557 for (int y = 0; y < kRenderSize && passing; ++y) {
558 for (int x = 0; x < kRenderSize && passing; ++x) {
559 int idx = y * kRenderSize + x;
560 if (readData1[idx] != readData2[idx]) {
561 ERRORF(reporter,
562 "Processor %s made clone produced different output. "
563 "Input color: 0x%08x, Original Output Color: 0x%08x, "
564 "Clone Output Color: 0x%08x..",
Brian Salomonaff329b2017-08-11 09:40:37 -0400565 name, input_texel_color(x, y), readData1[idx], readData2[idx]);
Brian Salomon0e05a822017-07-25 09:43:22 -0400566 passing = false;
567 }
568 }
569 }
570 }
571 }
572}
573
Hal Canary6f6961e2017-01-31 13:50:44 -0500574#endif // GR_TEST_UTILS
575#endif // SK_ALLOW_STATIC_GLOBAL_INITIALIZERS