blob: aea52083681fac4639b904ee06285b6bb6ec16f1 [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;
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(
Brian Salomon2a4f9832018-03-03 22:43:43 -0500171 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();
Brian Salomon2a4f9832018-03-03 22:43:43 -0500175 sk_sp<GrTextureProxy> proxy1 = proxyProvider->createProxy(
176 desc, kTopLeft_GrSurfaceOrigin, SkBackingFit::kExact, SkBudgeted::kYes);
177 sk_sp<GrTextureProxy> proxy2 = proxyProvider->createProxy(
178 desc, kTopLeft_GrSurfaceOrigin, SkBackingFit::kExact, SkBudgeted::kYes);
179 sk_sp<GrTextureProxy> proxy3 = proxyProvider->createProxy(
180 desc, kTopLeft_GrSurfaceOrigin, SkBackingFit::kExact, SkBudgeted::kYes);
181 sk_sp<GrTextureProxy> proxy4 = proxyProvider->createProxy(
182 desc, kTopLeft_GrSurfaceOrigin, SkBackingFit::kExact, SkBudgeted::kYes);
Brian Salomonb17e6392017-07-28 13:41:51 -0400183 sk_sp<GrBuffer> buffer(texelBufferSupport
Robert Phillips6be756b2018-01-16 15:07:54 -0500184 ? resourceProvider->createBuffer(
Brian Salomonb17e6392017-07-28 13:41:51 -0400185 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;
Brian Salomon0e05a822017-07-25 09:43:22 -0400296 desc.fWidth = kTestTextureSize;
297 desc.fHeight = kTestTextureSize;
298 desc.fConfig = kRGBA_8888_GrPixelConfig;
Brian Osmanc35a2d42017-03-17 10:58:53 -0400299
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500300 {
301 // Put premul data into the RGBA texture that the test FPs can optionally use.
302 std::unique_ptr<GrColor[]> rgbaData(new GrColor[kTestTextureSize * kTestTextureSize]);
303 for (int y = 0; y < kTestTextureSize; ++y) {
304 for (int x = 0; x < kTestTextureSize; ++x) {
305 rgbaData[kTestTextureSize * y + x] =
306 input_texel_color(random->nextULessThan(256), random->nextULessThan(256));
307 }
Brian Salomon0e05a822017-07-25 09:43:22 -0400308 }
Brian Salomon0e05a822017-07-25 09:43:22 -0400309
Brian Salomon2a4f9832018-03-03 22:43:43 -0500310 proxies[0] = proxyProvider->createTextureProxy(desc, kBottomLeft_GrSurfaceOrigin,
311 SkBudgeted::kYes, rgbaData.get(),
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500312 kTestTextureSize * sizeof(GrColor));
Brian Salomon0e05a822017-07-25 09:43:22 -0400313 }
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500314
315 {
316 // Put random values into the alpha texture that the test FPs can optionally use.
317 desc.fConfig = kAlpha_8_GrPixelConfig;
318 std::unique_ptr<uint8_t[]> alphaData(new uint8_t[kTestTextureSize * kTestTextureSize]);
319 for (int y = 0; y < kTestTextureSize; ++y) {
320 for (int x = 0; x < kTestTextureSize; ++x) {
321 alphaData[kTestTextureSize * y + x] = random->nextULessThan(256);
322 }
323 }
324
Brian Salomon2a4f9832018-03-03 22:43:43 -0500325 proxies[1] = proxyProvider->createTextureProxy(desc, kBottomLeft_GrSurfaceOrigin,
326 SkBudgeted::kYes, alphaData.get(),
327 kTestTextureSize);
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500328 }
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;
Brian Salomon0e05a822017-07-25 09:43:22 -0400343 desc.fWidth = width;
344 desc.fHeight = height;
345 desc.fConfig = kRGBA_8888_GrPixelConfig;
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500346
Brian Salomon2a4f9832018-03-03 22:43:43 -0500347 return proxyProvider->createTextureProxy(desc, kBottomLeft_GrSurfaceOrigin, SkBudgeted::kYes,
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500348 data.get(), width * sizeof(GrColor));
Brian Salomon0e05a822017-07-25 09:43:22 -0400349}
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500350
Brian Salomon5d4cd9e2017-02-09 11:16:46 -0500351DEF_GPUTEST_FOR_GL_RENDERING_CONTEXTS(ProcessorOptimizationValidationTest, reporter, ctxInfo) {
Brian Salomon587e08f2017-01-27 10:59:27 -0500352 GrContext* context = ctxInfo.grContext();
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500353 GrProxyProvider* proxyProvider = context->contextPriv().proxyProvider();
Robert Phillips6be756b2018-01-16 15:07:54 -0500354 auto resourceProvider = context->contextPriv().resourceProvider();
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 Phillips6be756b2018-01-16 15:07:54 -0500394 if (!fp->instantiate(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)",
Brian Salomonf61711a2018-02-16 10:44:28 -0500462 clone->name(),
463 SkTMax(rDiff, SkTMax(gDiff, SkTMax(bDiff, aDiff))), kTol,
464 input4f.fRGBA[0], input4f.fRGBA[1], input4f.fRGBA[2],
Brian Salomon5d4cd9e2017-02-09 11:16:46 -0500465 input4f.fRGBA[3], output4f.fRGBA[0], output4f.fRGBA[1],
466 output4f.fRGBA[2], output4f.fRGBA[3], expected4f.fRGBA[0],
467 expected4f.fRGBA[1], expected4f.fRGBA[2], expected4f.fRGBA[3]);
Brian Salomon587e08f2017-01-27 10:59:27 -0500468 passing = false;
469 }
470 }
Brian Salomonaff329b2017-08-11 09:40:37 -0400471 if (GrColorIsOpaque(input) && clone->preservesOpaqueInput() &&
Brian Salomon587e08f2017-01-27 10:59:27 -0500472 !GrColorIsOpaque(output)) {
473 ERRORF(reporter,
474 "Processor %s claimed opaqueness is preserved but it is not. Input: "
Brian Osman2f3865b2017-03-15 13:35:51 -0400475 "0x%08x, Output: 0x%08x.",
Brian Salomonaff329b2017-08-11 09:40:37 -0400476 clone->name(), input, output);
Brian Salomon587e08f2017-01-27 10:59:27 -0500477 passing = false;
478 }
Brian Osmanbd1f76f2017-03-15 11:33:12 -0400479 if (!passing) {
Brian Salomonaff329b2017-08-11 09:40:37 -0400480 ERRORF(reporter, "Seed: 0x%08x, Processor details: %s", seed,
481 clone->dumpInfo().c_str());
Brian Osmanbd1f76f2017-03-15 11:33:12 -0400482 }
Brian Salomon587e08f2017-01-27 10:59:27 -0500483 }
484 }
485 }
486 }
487}
Robert Phillips18166ee2017-06-01 12:55:44 -0400488
Brian Salomon0e05a822017-07-25 09:43:22 -0400489// Tests that fragment processors returned by GrFragmentProcessor::clone() are equivalent to their
490// progenitors.
491DEF_GPUTEST_FOR_GL_RENDERING_CONTEXTS(ProcessorCloneTest, reporter, ctxInfo) {
492 GrContext* context = ctxInfo.grContext();
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500493 GrProxyProvider* proxyProvider = context->contextPriv().proxyProvider();
Robert Phillips6be756b2018-01-16 15:07:54 -0500494 auto resourceProvider = context->contextPriv().resourceProvider();
Brian Salomon0e05a822017-07-25 09:43:22 -0400495
496 SkRandom random;
497
498 // Make the destination context for the test.
499 static constexpr int kRenderSize = 1024;
500 sk_sp<GrRenderTargetContext> rtc = context->makeDeferredRenderTargetContext(
501 SkBackingFit::kExact, kRenderSize, kRenderSize, kRGBA_8888_GrPixelConfig, nullptr);
502
503 sk_sp<GrTextureProxy> proxies[2];
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500504 if (!init_test_textures(proxyProvider, &random, proxies)) {
Brian Salomon0e05a822017-07-25 09:43:22 -0400505 ERRORF(reporter, "Could not create test textures");
506 return;
507 }
508 GrProcessorTestData testData(&random, context, rtc.get(), proxies);
509
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500510 auto inputTexture = make_input_texture(proxyProvider, kRenderSize, kRenderSize);
Brian Salomon0e05a822017-07-25 09:43:22 -0400511 std::unique_ptr<GrColor[]> readData1(new GrColor[kRenderSize * kRenderSize]);
512 std::unique_ptr<GrColor[]> readData2(new GrColor[kRenderSize * kRenderSize]);
513 auto readInfo = SkImageInfo::Make(kRenderSize, kRenderSize, kRGBA_8888_SkColorType,
514 kPremul_SkAlphaType);
515
516 // Because processor factories configure themselves in random ways, this is not exhaustive.
517 for (int i = 0; i < GrFragmentProcessorTestFactory::Count(); ++i) {
518 static constexpr int kTimesToInvokeFactory = 10;
519 for (int j = 0; j < kTimesToInvokeFactory; ++j) {
520 auto fp = GrFragmentProcessorTestFactory::MakeIdx(i, &testData);
521 auto clone = fp->clone();
Brian Salomon0e05a822017-07-25 09:43:22 -0400522 if (!clone) {
Brian Salomon96271cd2017-07-31 16:27:23 -0400523 ERRORF(reporter, "Clone of processor %s failed.", fp->name());
Brian Salomon0e05a822017-07-25 09:43:22 -0400524 continue;
525 }
Brian Salomonaff329b2017-08-11 09:40:37 -0400526 const char* name = fp->name();
Robert Phillips6be756b2018-01-16 15:07:54 -0500527 if (!fp->instantiate(resourceProvider) || !clone->instantiate(resourceProvider)) {
Brian Salomon0e05a822017-07-25 09:43:22 -0400528 continue;
529 }
Brian Salomonce06e262017-08-01 16:23:40 -0400530 REPORTER_ASSERT(reporter, !strcmp(fp->name(), clone->name()));
531 REPORTER_ASSERT(reporter, fp->compatibleWithCoverageAsAlpha() ==
532 clone->compatibleWithCoverageAsAlpha());
533 REPORTER_ASSERT(reporter, fp->isEqual(*clone));
534 REPORTER_ASSERT(reporter, fp->preservesOpaqueInput() == clone->preservesOpaqueInput());
535 REPORTER_ASSERT(reporter, fp->hasConstantOutputForConstantInput() ==
536 clone->hasConstantOutputForConstantInput());
537 REPORTER_ASSERT(reporter, fp->numChildProcessors() == clone->numChildProcessors());
538 REPORTER_ASSERT(reporter, fp->usesLocalCoords() == clone->usesLocalCoords());
Brian Salomon0e05a822017-07-25 09:43:22 -0400539 // Draw with original and read back the results.
Brian Salomonaff329b2017-08-11 09:40:37 -0400540 test_draw_op(rtc.get(), std::move(fp), inputTexture);
Brian Salomon0e05a822017-07-25 09:43:22 -0400541 memset(readData1.get(), 0x0, sizeof(GrColor) * kRenderSize * kRenderSize);
542 rtc->readPixels(readInfo, readData1.get(), 0, 0, 0);
543
544 // Draw with clone and read back the results.
Brian Salomonaff329b2017-08-11 09:40:37 -0400545 test_draw_op(rtc.get(), std::move(clone), inputTexture);
Brian Salomon0e05a822017-07-25 09:43:22 -0400546 memset(readData2.get(), 0x0, sizeof(GrColor) * kRenderSize * kRenderSize);
547 rtc->readPixels(readInfo, readData2.get(), 0, 0, 0);
548
549 // Check that the results are the same.
550 bool passing = true;
551 for (int y = 0; y < kRenderSize && passing; ++y) {
552 for (int x = 0; x < kRenderSize && passing; ++x) {
553 int idx = y * kRenderSize + x;
554 if (readData1[idx] != readData2[idx]) {
555 ERRORF(reporter,
556 "Processor %s made clone produced different output. "
557 "Input color: 0x%08x, Original Output Color: 0x%08x, "
558 "Clone Output Color: 0x%08x..",
Brian Salomonaff329b2017-08-11 09:40:37 -0400559 name, input_texel_color(x, y), readData1[idx], readData2[idx]);
Brian Salomon0e05a822017-07-25 09:43:22 -0400560 passing = false;
561 }
562 }
563 }
564 }
565 }
566}
567
Hal Canary6f6961e2017-01-31 13:50:44 -0500568#endif // GR_TEST_UTILS
569#endif // SK_ALLOW_STATIC_GLOBAL_INITIALIZERS
570#endif // SK_SUPPORT_GPU