Brian Salomon | bc6b99d | 2017-01-11 10:32:34 -0500 | [diff] [blame] | 1 | /* |
| 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 Salomon | ac70f84 | 2017-05-08 10:43:33 -0400 | [diff] [blame] | 11 | #include <random> |
Brian Salomon | c65aec9 | 2017-03-09 09:03:58 -0500 | [diff] [blame] | 12 | #include "GrClip.h" |
Brian Salomon | bc6b99d | 2017-01-11 10:32:34 -0500 | [diff] [blame] | 13 | #include "GrContext.h" |
Robert Phillips | 1afd4cd | 2018-01-08 13:40:32 -0500 | [diff] [blame] | 14 | #include "GrContextPriv.h" |
Brian Salomon | bc6b99d | 2017-01-11 10:32:34 -0500 | [diff] [blame] | 15 | #include "GrGpuResource.h" |
Robert Phillips | 7c525e6 | 2018-06-12 10:11:12 -0400 | [diff] [blame] | 16 | #include "GrMemoryPool.h" |
Robert Phillips | 0bd24dc | 2018-01-16 08:06:32 -0500 | [diff] [blame] | 17 | #include "GrProxyProvider.h" |
Brian Salomon | bc6b99d | 2017-01-11 10:32:34 -0500 | [diff] [blame] | 18 | #include "GrRenderTargetContext.h" |
| 19 | #include "GrRenderTargetContextPriv.h" |
| 20 | #include "GrResourceProvider.h" |
| 21 | #include "glsl/GrGLSLFragmentProcessor.h" |
| 22 | #include "glsl/GrGLSLFragmentShaderBuilder.h" |
Brian Salomon | 82ddc94 | 2017-07-14 12:00:13 -0400 | [diff] [blame] | 23 | #include "ops/GrMeshDrawOp.h" |
Brian Salomon | baaf439 | 2017-06-15 09:59:23 -0400 | [diff] [blame] | 24 | #include "ops/GrRectOpFactory.h" |
Brian Salomon | bc6b99d | 2017-01-11 10:32:34 -0500 | [diff] [blame] | 25 | |
| 26 | namespace { |
Brian Salomon | 82ddc94 | 2017-07-14 12:00:13 -0400 | [diff] [blame] | 27 | class TestOp : public GrMeshDrawOp { |
Brian Salomon | bc6b99d | 2017-01-11 10:32:34 -0500 | [diff] [blame] | 28 | public: |
| 29 | DEFINE_OP_CLASS_ID |
Robert Phillips | 7c525e6 | 2018-06-12 10:11:12 -0400 | [diff] [blame] | 30 | static std::unique_ptr<GrDrawOp> Make(GrContext* context, |
| 31 | std::unique_ptr<GrFragmentProcessor> fp) { |
Robert Phillips | c994a93 | 2018-06-19 13:09:54 -0400 | [diff] [blame] | 32 | GrOpMemoryPool* pool = context->contextPriv().opMemoryPool(); |
| 33 | |
| 34 | return pool->allocate<TestOp>(std::move(fp)); |
Brian Salomon | 82ddc94 | 2017-07-14 12:00:13 -0400 | [diff] [blame] | 35 | } |
| 36 | |
Robert Phillips | 5f567c7 | 2017-09-14 08:27:37 -0400 | [diff] [blame] | 37 | const char* name() const override { return "TestOp"; } |
| 38 | |
Robert Phillips | f1748f5 | 2017-09-14 14:11:24 -0400 | [diff] [blame] | 39 | void visitProxies(const VisitProxyFunc& func) const override { |
Robert Phillips | 5f567c7 | 2017-09-14 08:27:37 -0400 | [diff] [blame] | 40 | fProcessors.visitProxies(func); |
| 41 | } |
| 42 | |
Brian Salomon | 82ddc94 | 2017-07-14 12:00:13 -0400 | [diff] [blame] | 43 | FixedFunctionFlags fixedFunctionFlags() const override { return FixedFunctionFlags::kNone; } |
| 44 | |
Brian Osman | 532b3f9 | 2018-07-11 10:02:07 -0400 | [diff] [blame] | 45 | RequiresDstTexture finalize(const GrCaps& caps, const GrAppliedClip* clip) override { |
Brian Salomon | 82ddc94 | 2017-07-14 12:00:13 -0400 | [diff] [blame] | 46 | static constexpr GrProcessorAnalysisColor kUnknownColor; |
| 47 | GrColor overrideColor; |
| 48 | fProcessors.finalize(kUnknownColor, GrProcessorAnalysisCoverage::kNone, clip, false, caps, |
Brian Osman | 532b3f9 | 2018-07-11 10:02:07 -0400 | [diff] [blame] | 49 | &overrideColor); |
Brian Salomon | 82ddc94 | 2017-07-14 12:00:13 -0400 | [diff] [blame] | 50 | return RequiresDstTexture::kNo; |
Brian Salomon | 649a341 | 2017-03-09 13:50:43 -0500 | [diff] [blame] | 51 | } |
Brian Salomon | bc6b99d | 2017-01-11 10:32:34 -0500 | [diff] [blame] | 52 | |
| 53 | private: |
Robert Phillips | 7c525e6 | 2018-06-12 10:11:12 -0400 | [diff] [blame] | 54 | friend class ::GrOpMemoryPool; // for ctor |
| 55 | |
Brian Salomon | aff329b | 2017-08-11 09:40:37 -0400 | [diff] [blame] | 56 | TestOp(std::unique_ptr<GrFragmentProcessor> fp) |
| 57 | : INHERITED(ClassID()), fProcessors(std::move(fp)) { |
Brian Salomon | 82ddc94 | 2017-07-14 12:00:13 -0400 | [diff] [blame] | 58 | this->setBounds(SkRect::MakeWH(100, 100), HasAABloat::kNo, IsZeroArea::kNo); |
| 59 | } |
Brian Salomon | bc6b99d | 2017-01-11 10:32:34 -0500 | [diff] [blame] | 60 | |
Brian Salomon | 91326c3 | 2017-08-09 16:02:19 -0400 | [diff] [blame] | 61 | void onPrepareDraws(Target* target) override { return; } |
Brian Salomon | bc6b99d | 2017-01-11 10:32:34 -0500 | [diff] [blame] | 62 | |
Brian Salomon | 82ddc94 | 2017-07-14 12:00:13 -0400 | [diff] [blame] | 63 | bool onCombineIfPossible(GrOp* op, const GrCaps& caps) override { return false; } |
| 64 | |
| 65 | GrProcessorSet fProcessors; |
| 66 | |
| 67 | typedef GrMeshDrawOp INHERITED; |
Brian Salomon | bc6b99d | 2017-01-11 10:32:34 -0500 | [diff] [blame] | 68 | }; |
| 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 | */ |
| 74 | class TestFP : public GrFragmentProcessor { |
| 75 | public: |
Brian Salomon | aff329b | 2017-08-11 09:40:37 -0400 | [diff] [blame] | 76 | static std::unique_ptr<GrFragmentProcessor> Make(std::unique_ptr<GrFragmentProcessor> child) { |
| 77 | return std::unique_ptr<GrFragmentProcessor>(new TestFP(std::move(child))); |
Brian Salomon | bc6b99d | 2017-01-11 10:32:34 -0500 | [diff] [blame] | 78 | } |
Brian Salomon | aff329b | 2017-08-11 09:40:37 -0400 | [diff] [blame] | 79 | static std::unique_ptr<GrFragmentProcessor> Make(const SkTArray<sk_sp<GrTextureProxy>>& proxies, |
Brian Salomon | 559f556 | 2017-11-15 14:28:33 -0500 | [diff] [blame] | 80 | const SkTArray<sk_sp<GrBuffer>>& buffers) { |
| 81 | return std::unique_ptr<GrFragmentProcessor>(new TestFP(proxies, buffers)); |
Brian Salomon | bc6b99d | 2017-01-11 10:32:34 -0500 | [diff] [blame] | 82 | } |
| 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 Salomon | aff329b | 2017-08-11 09:40:37 -0400 | [diff] [blame] | 92 | std::unique_ptr<GrFragmentProcessor> clone() const override { |
| 93 | return std::unique_ptr<GrFragmentProcessor>(new TestFP(*this)); |
Brian Salomon | b17e639 | 2017-07-28 13:41:51 -0400 | [diff] [blame] | 94 | } |
| 95 | |
Brian Salomon | bc6b99d | 2017-01-11 10:32:34 -0500 | [diff] [blame] | 96 | private: |
Brian Salomon | 559f556 | 2017-11-15 14:28:33 -0500 | [diff] [blame] | 97 | TestFP(const SkTArray<sk_sp<GrTextureProxy>>& proxies, const SkTArray<sk_sp<GrBuffer>>& buffers) |
| 98 | : INHERITED(kTestFP_ClassID, kNone_OptimizationFlags), fSamplers(4), fBuffers(4) { |
Robert Phillips | 30f9bc6 | 2017-02-22 15:28:38 -0500 | [diff] [blame] | 99 | for (const auto& proxy : proxies) { |
Robert Phillips | fbcef6e | 2017-06-15 12:07:18 -0400 | [diff] [blame] | 100 | this->addTextureSampler(&fSamplers.emplace_back(proxy)); |
Brian Salomon | bc6b99d | 2017-01-11 10:32:34 -0500 | [diff] [blame] | 101 | } |
| 102 | for (const auto& buffer : buffers) { |
| 103 | this->addBufferAccess(&fBuffers.emplace_back(kRGBA_8888_GrPixelConfig, buffer.get())); |
| 104 | } |
Brian Salomon | bc6b99d | 2017-01-11 10:32:34 -0500 | [diff] [blame] | 105 | } |
| 106 | |
Brian Salomon | aff329b | 2017-08-11 09:40:37 -0400 | [diff] [blame] | 107 | TestFP(std::unique_ptr<GrFragmentProcessor> child) |
Brian Salomon | 559f556 | 2017-11-15 14:28:33 -0500 | [diff] [blame] | 108 | : INHERITED(kTestFP_ClassID, kNone_OptimizationFlags), fSamplers(4), fBuffers(4) { |
Brian Salomon | bc6b99d | 2017-01-11 10:32:34 -0500 | [diff] [blame] | 109 | this->registerChildProcessor(std::move(child)); |
| 110 | } |
| 111 | |
Brian Salomon | 96271cd | 2017-07-31 16:27:23 -0400 | [diff] [blame] | 112 | explicit TestFP(const TestFP& that) |
Brian Salomon | 559f556 | 2017-11-15 14:28:33 -0500 | [diff] [blame] | 113 | : INHERITED(kTestFP_ClassID, that.optimizationFlags()), fSamplers(4), fBuffers(4) { |
Brian Salomon | b17e639 | 2017-07-28 13:41:51 -0400 | [diff] [blame] | 114 | 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 Salomon | 96271cd | 2017-07-31 16:27:23 -0400 | [diff] [blame] | 122 | for (int i = 0; i < that.numChildProcessors(); ++i) { |
| 123 | this->registerChildProcessor(that.childProcessor(i).clone()); |
Brian Salomon | b17e639 | 2017-07-28 13:41:51 -0400 | [diff] [blame] | 124 | } |
| 125 | } |
| 126 | |
Brian Salomon | bc6b99d | 2017-01-11 10:32:34 -0500 | [diff] [blame] | 127 | 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 Salomon | 587e08f | 2017-01-27 10:59:27 -0500 | [diff] [blame] | 145 | typedef GrFragmentProcessor INHERITED; |
Brian Salomon | bc6b99d | 2017-01-11 10:32:34 -0500 | [diff] [blame] | 146 | }; |
| 147 | } |
| 148 | |
Brian Salomon | f046e15 | 2017-01-11 15:24:47 -0500 | [diff] [blame] | 149 | template <typename T> |
| 150 | inline 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 Salomon | bc6b99d | 2017-01-11 10:32:34 -0500 | [diff] [blame] | 154 | } |
| 155 | |
Robert Phillips | 2f49314 | 2017-03-02 18:18:38 -0500 | [diff] [blame] | 156 | void testingOnly_getIORefCnts(GrTextureProxy* proxy, int* refCnt, int* readCnt, int* writeCnt) { |
Robert Phillips | 30f9bc6 | 2017-02-22 15:28:38 -0500 | [diff] [blame] | 157 | *refCnt = proxy->getBackingRefCnt_TestOnly(); |
| 158 | *readCnt = proxy->getPendingReadCnt_TestOnly(); |
| 159 | *writeCnt = proxy->getPendingWriteCnt_TestOnly(); |
| 160 | } |
| 161 | |
Brian Salomon | bc6b99d | 2017-01-11 10:32:34 -0500 | [diff] [blame] | 162 | DEF_GPUTEST_FOR_ALL_CONTEXTS(ProcessorRefTest, reporter, ctxInfo) { |
| 163 | GrContext* context = ctxInfo.grContext(); |
Robert Phillips | 1afd4cd | 2018-01-08 13:40:32 -0500 | [diff] [blame] | 164 | GrProxyProvider* proxyProvider = context->contextPriv().proxyProvider(); |
Robert Phillips | 6be756b | 2018-01-16 15:07:54 -0500 | [diff] [blame] | 165 | GrResourceProvider* resourceProvider = context->contextPriv().resourceProvider(); |
Brian Salomon | bc6b99d | 2017-01-11 10:32:34 -0500 | [diff] [blame] | 166 | |
Robert Phillips | 16d8ec6 | 2017-07-27 16:16:25 -0400 | [diff] [blame] | 167 | GrSurfaceDesc desc; |
Brian Salomon | bc6b99d | 2017-01-11 10:32:34 -0500 | [diff] [blame] | 168 | desc.fWidth = 10; |
| 169 | desc.fHeight = 10; |
Robert Phillips | 16d8ec6 | 2017-07-27 16:16:25 -0400 | [diff] [blame] | 170 | desc.fConfig = kRGBA_8888_GrPixelConfig; |
Brian Salomon | bc6b99d | 2017-01-11 10:32:34 -0500 | [diff] [blame] | 171 | |
Brian Salomon | b17e639 | 2017-07-28 13:41:51 -0400 | [diff] [blame] | 172 | for (bool makeClone : {false, true}) { |
| 173 | for (int parentCnt = 0; parentCnt < 2; parentCnt++) { |
| 174 | sk_sp<GrRenderTargetContext> renderTargetContext( |
Robert Phillips | 0c4b7b1 | 2018-03-06 08:20:37 -0500 | [diff] [blame] | 175 | context->contextPriv().makeDeferredRenderTargetContext( |
| 176 | SkBackingFit::kApprox, 1, 1, |
Brian Salomon | 2a4f983 | 2018-03-03 22:43:43 -0500 | [diff] [blame] | 177 | kRGBA_8888_GrPixelConfig, nullptr)); |
Brian Salomon | bc6b99d | 2017-01-11 10:32:34 -0500 | [diff] [blame] | 178 | { |
Brian Salomon | c7fe0f7 | 2018-05-11 10:14:21 -0400 | [diff] [blame] | 179 | bool texelBufferSupport = |
| 180 | context->contextPriv().caps()->shaderCaps()->texelBufferSupport(); |
Brian Salomon | 2a4f983 | 2018-03-03 22:43:43 -0500 | [diff] [blame] | 181 | 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 Salomon | b17e639 | 2017-07-28 13:41:51 -0400 | [diff] [blame] | 189 | sk_sp<GrBuffer> buffer(texelBufferSupport |
Robert Phillips | 6be756b | 2018-01-16 15:07:54 -0500 | [diff] [blame] | 190 | ? resourceProvider->createBuffer( |
Brian Salomon | b17e639 | 2017-07-28 13:41:51 -0400 | [diff] [blame] | 191 | 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 Salomon | b17e639 | 2017-07-28 13:41:51 -0400 | [diff] [blame] | 197 | proxies.push_back(proxy1); |
| 198 | if (texelBufferSupport) { |
| 199 | buffers.push_back(buffer); |
| 200 | } |
Brian Salomon | 559f556 | 2017-11-15 14:28:33 -0500 | [diff] [blame] | 201 | auto fp = TestFP::Make(std::move(proxies), std::move(buffers)); |
Brian Salomon | b17e639 | 2017-07-28 13:41:51 -0400 | [diff] [blame] | 202 | for (int i = 0; i < parentCnt; ++i) { |
| 203 | fp = TestFP::Make(std::move(fp)); |
| 204 | } |
Brian Salomon | aff329b | 2017-08-11 09:40:37 -0400 | [diff] [blame] | 205 | std::unique_ptr<GrFragmentProcessor> clone; |
Brian Salomon | b17e639 | 2017-07-28 13:41:51 -0400 | [diff] [blame] | 206 | if (makeClone) { |
| 207 | clone = fp->clone(); |
| 208 | } |
Robert Phillips | 7c525e6 | 2018-06-12 10:11:12 -0400 | [diff] [blame] | 209 | std::unique_ptr<GrDrawOp> op(TestOp::Make(context, std::move(fp))); |
Brian Salomon | b17e639 | 2017-07-28 13:41:51 -0400 | [diff] [blame] | 210 | renderTargetContext->priv().testingOnly_addDrawOp(std::move(op)); |
| 211 | if (clone) { |
Robert Phillips | 7c525e6 | 2018-06-12 10:11:12 -0400 | [diff] [blame] | 212 | op = TestOp::Make(context, std::move(clone)); |
Brian Salomon | b17e639 | 2017-07-28 13:41:51 -0400 | [diff] [blame] | 213 | 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 Salomon | bc6b99d | 2017-01-11 10:32:34 -0500 | [diff] [blame] | 225 | if (texelBufferSupport) { |
Brian Salomon | b17e639 | 2017-07-28 13:41:51 -0400 | [diff] [blame] | 226 | 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 Salomon | bc6b99d | 2017-01-11 10:32:34 -0500 | [diff] [blame] | 230 | } |
Brian Salomon | b17e639 | 2017-07-28 13:41:51 -0400 | [diff] [blame] | 231 | |
Brian Salomon | b17e639 | 2017-07-28 13:41:51 -0400 | [diff] [blame] | 232 | 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 Salomon | bc6b99d | 2017-01-11 10:32:34 -0500 | [diff] [blame] | 244 | } |
Brian Salomon | bc6b99d | 2017-01-11 10:32:34 -0500 | [diff] [blame] | 245 | |
Brian Salomon | b17e639 | 2017-07-28 13:41:51 -0400 | [diff] [blame] | 246 | 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 Salomon | bc6b99d | 2017-01-11 10:32:34 -0500 | [diff] [blame] | 251 | |
Brian Salomon | b17e639 | 2017-07-28 13:41:51 -0400 | [diff] [blame] | 252 | 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 Salomon | bc6b99d | 2017-01-11 10:32:34 -0500 | [diff] [blame] | 256 | |
Brian Salomon | b17e639 | 2017-07-28 13:41:51 -0400 | [diff] [blame] | 257 | 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 Salomon | bc6b99d | 2017-01-11 10:32:34 -0500 | [diff] [blame] | 262 | } |
| 263 | } |
| 264 | } |
| 265 | } |
Brian Salomon | 587e08f | 2017-01-27 10:59:27 -0500 | [diff] [blame] | 266 | |
| 267 | // This test uses the random GrFragmentProcessor test factory, which relies on static initializers. |
| 268 | #if SK_ALLOW_STATIC_GLOBAL_INITIALIZERS |
| 269 | |
Brian Salomon | 0e05a82 | 2017-07-25 09:43:22 -0400 | [diff] [blame] | 270 | #include "SkCommandLineFlags.h" |
| 271 | DEFINE_bool(randomProcessorTest, false, "Use non-deterministic seed for random processor tests?"); |
| 272 | |
| 273 | #if GR_TEST_UTILS |
| 274 | |
| 275 | static 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 Salomon | 587e08f | 2017-01-27 10:59:27 -0500 | [diff] [blame] | 277 | return GrPremulColor(color); |
| 278 | } |
| 279 | |
Brian Salomon | 0e05a82 | 2017-07-25 09:43:22 -0400 | [diff] [blame] | 280 | static GrColor4f input_texel_color4f(int i, int j) { |
| 281 | return GrColor4f::FromGrColor(input_texel_color(i, j)); |
| 282 | } |
Brian Salomon | 587e08f | 2017-01-27 10:59:27 -0500 | [diff] [blame] | 283 | |
Robert Phillips | 7c525e6 | 2018-06-12 10:11:12 -0400 | [diff] [blame] | 284 | void test_draw_op(GrContext* context, |
| 285 | GrRenderTargetContext* rtc, |
| 286 | std::unique_ptr<GrFragmentProcessor> fp, |
Robert Phillips | 30f9bc6 | 2017-02-22 15:28:38 -0500 | [diff] [blame] | 287 | sk_sp<GrTextureProxy> inputDataProxy) { |
Brian Salomon | 5d4cd9e | 2017-02-09 11:16:46 -0500 | [diff] [blame] | 288 | GrPaint paint; |
Brian Osman | 2240be9 | 2017-10-18 13:15:13 -0400 | [diff] [blame] | 289 | paint.addColorTextureProcessor(std::move(inputDataProxy), SkMatrix::I()); |
Brian Salomon | 5d4cd9e | 2017-02-09 11:16:46 -0500 | [diff] [blame] | 290 | paint.addColorFragmentProcessor(std::move(fp)); |
| 291 | paint.setPorterDuffXPFactory(SkBlendMode::kSrc); |
Brian Salomon | ac70f84 | 2017-05-08 10:43:33 -0400 | [diff] [blame] | 292 | |
Robert Phillips | 7c525e6 | 2018-06-12 10:11:12 -0400 | [diff] [blame] | 293 | auto op = GrRectOpFactory::MakeNonAAFill(context, std::move(paint), SkMatrix::I(), |
Brian Salomon | baaf439 | 2017-06-15 09:59:23 -0400 | [diff] [blame] | 294 | SkRect::MakeWH(rtc->width(), rtc->height()), |
| 295 | GrAAType::kNone); |
Brian Salomon | ac70f84 | 2017-05-08 10:43:33 -0400 | [diff] [blame] | 296 | rtc->addDrawOp(GrNoClip(), std::move(op)); |
Brian Salomon | 5d4cd9e | 2017-02-09 11:16:46 -0500 | [diff] [blame] | 297 | } |
| 298 | |
Brian Salomon | 0e05a82 | 2017-07-25 09:43:22 -0400 | [diff] [blame] | 299 | /** Initializes the two test texture proxies that are available to the FP test factories. */ |
Robert Phillips | 0bd24dc | 2018-01-16 08:06:32 -0500 | [diff] [blame] | 300 | bool init_test_textures(GrProxyProvider* proxyProvider, SkRandom* random, |
| 301 | sk_sp<GrTextureProxy> proxies[2]) { |
Brian Salomon | 0e05a82 | 2017-07-25 09:43:22 -0400 | [diff] [blame] | 302 | static const int kTestTextureSize = 256; |
| 303 | GrSurfaceDesc desc; |
Brian Salomon | 0e05a82 | 2017-07-25 09:43:22 -0400 | [diff] [blame] | 304 | desc.fWidth = kTestTextureSize; |
| 305 | desc.fHeight = kTestTextureSize; |
| 306 | desc.fConfig = kRGBA_8888_GrPixelConfig; |
Brian Osman | c35a2d4 | 2017-03-17 10:58:53 -0400 | [diff] [blame] | 307 | |
Robert Phillips | 0bd24dc | 2018-01-16 08:06:32 -0500 | [diff] [blame] | 308 | { |
| 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 Salomon | 0e05a82 | 2017-07-25 09:43:22 -0400 | [diff] [blame] | 316 | } |
Brian Salomon | 0e05a82 | 2017-07-25 09:43:22 -0400 | [diff] [blame] | 317 | |
Brian Salomon | 58389b9 | 2018-03-07 13:01:25 -0500 | [diff] [blame] | 318 | proxies[0] = proxyProvider->createTextureProxy(desc, SkBudgeted::kYes, rgbaData.get(), |
Robert Phillips | 0bd24dc | 2018-01-16 08:06:32 -0500 | [diff] [blame] | 319 | kTestTextureSize * sizeof(GrColor)); |
Brian Salomon | 0e05a82 | 2017-07-25 09:43:22 -0400 | [diff] [blame] | 320 | } |
Robert Phillips | 0bd24dc | 2018-01-16 08:06:32 -0500 | [diff] [blame] | 321 | |
| 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 Salomon | 58389b9 | 2018-03-07 13:01:25 -0500 | [diff] [blame] | 332 | proxies[1] = proxyProvider->createTextureProxy(desc, SkBudgeted::kYes, alphaData.get(), |
Brian Salomon | 2a4f983 | 2018-03-03 22:43:43 -0500 | [diff] [blame] | 333 | kTestTextureSize); |
Robert Phillips | 0bd24dc | 2018-01-16 08:06:32 -0500 | [diff] [blame] | 334 | } |
Brian Salomon | 0e05a82 | 2017-07-25 09:43:22 -0400 | [diff] [blame] | 335 | |
| 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 Phillips | 0bd24dc | 2018-01-16 08:06:32 -0500 | [diff] [blame] | 341 | sk_sp<GrTextureProxy> make_input_texture(GrProxyProvider* proxyProvider, int width, int height) { |
Brian Salomon | 0e05a82 | 2017-07-25 09:43:22 -0400 | [diff] [blame] | 342 | 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 Salomon | 0e05a82 | 2017-07-25 09:43:22 -0400 | [diff] [blame] | 349 | desc.fWidth = width; |
| 350 | desc.fHeight = height; |
| 351 | desc.fConfig = kRGBA_8888_GrPixelConfig; |
Robert Phillips | 0bd24dc | 2018-01-16 08:06:32 -0500 | [diff] [blame] | 352 | |
Brian Salomon | 58389b9 | 2018-03-07 13:01:25 -0500 | [diff] [blame] | 353 | return proxyProvider->createTextureProxy(desc, SkBudgeted::kYes, data.get(), |
| 354 | width * sizeof(GrColor)); |
Brian Salomon | 0e05a82 | 2017-07-25 09:43:22 -0400 | [diff] [blame] | 355 | } |
Robert Phillips | 0bd24dc | 2018-01-16 08:06:32 -0500 | [diff] [blame] | 356 | |
Brian Salomon | 5d4cd9e | 2017-02-09 11:16:46 -0500 | [diff] [blame] | 357 | DEF_GPUTEST_FOR_GL_RENDERING_CONTEXTS(ProcessorOptimizationValidationTest, reporter, ctxInfo) { |
Brian Salomon | 587e08f | 2017-01-27 10:59:27 -0500 | [diff] [blame] | 358 | GrContext* context = ctxInfo.grContext(); |
Robert Phillips | 0bd24dc | 2018-01-16 08:06:32 -0500 | [diff] [blame] | 359 | GrProxyProvider* proxyProvider = context->contextPriv().proxyProvider(); |
Robert Phillips | 6be756b | 2018-01-16 15:07:54 -0500 | [diff] [blame] | 360 | auto resourceProvider = context->contextPriv().resourceProvider(); |
Brian Salomon | 1c05364 | 2017-07-24 10:16:19 -0400 | [diff] [blame] | 361 | using FPFactory = GrFragmentProcessorTestFactory; |
Brian Osman | c35a2d4 | 2017-03-17 10:58:53 -0400 | [diff] [blame] | 362 | |
| 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 Salomon | 0e05a82 | 2017-07-25 09:43:22 -0400 | [diff] [blame] | 372 | // Make the destination context for the test. |
| 373 | static constexpr int kRenderSize = 256; |
Robert Phillips | 0c4b7b1 | 2018-03-06 08:20:37 -0500 | [diff] [blame] | 374 | sk_sp<GrRenderTargetContext> rtc = context->contextPriv().makeDeferredRenderTargetContext( |
Brian Salomon | 0e05a82 | 2017-07-25 09:43:22 -0400 | [diff] [blame] | 375 | SkBackingFit::kExact, kRenderSize, kRenderSize, kRGBA_8888_GrPixelConfig, nullptr); |
Brian Salomon | d1a8bdf | 2017-02-10 12:39:26 -0500 | [diff] [blame] | 376 | |
Robert Phillips | e78b725 | 2017-04-06 07:59:41 -0400 | [diff] [blame] | 377 | sk_sp<GrTextureProxy> proxies[2]; |
Robert Phillips | 0bd24dc | 2018-01-16 08:06:32 -0500 | [diff] [blame] | 378 | if (!init_test_textures(proxyProvider, &random, proxies)) { |
Brian Salomon | 0e05a82 | 2017-07-25 09:43:22 -0400 | [diff] [blame] | 379 | ERRORF(reporter, "Could not create test textures"); |
Robert Phillips | bb581ce | 2017-05-29 15:05:15 -0400 | [diff] [blame] | 380 | return; |
| 381 | } |
Robert Phillips | e78b725 | 2017-04-06 07:59:41 -0400 | [diff] [blame] | 382 | GrProcessorTestData testData(&random, context, rtc.get(), proxies); |
Brian Salomon | 587e08f | 2017-01-27 10:59:27 -0500 | [diff] [blame] | 383 | |
Robert Phillips | 0bd24dc | 2018-01-16 08:06:32 -0500 | [diff] [blame] | 384 | auto inputTexture = make_input_texture(proxyProvider, kRenderSize, kRenderSize); |
Robert Phillips | 30f9bc6 | 2017-02-22 15:28:38 -0500 | [diff] [blame] | 385 | |
Ben Wagner | 8c79194 | 2017-07-25 11:47:48 -0400 | [diff] [blame] | 386 | std::unique_ptr<GrColor[]> readData(new GrColor[kRenderSize * kRenderSize]); |
Brian Salomon | 0e05a82 | 2017-07-25 09:43:22 -0400 | [diff] [blame] | 387 | // Because processor factories configure themselves in random ways, this is not exhaustive. |
Brian Salomon | 587e08f | 2017-01-27 10:59:27 -0500 | [diff] [blame] | 388 | 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 Salomon | aff329b | 2017-08-11 09:40:37 -0400 | [diff] [blame] | 392 | std::unique_ptr<GrFragmentProcessor> fp = FPFactory::MakeIdx(i, &testData); |
Brian Salomon | 587e08f | 2017-01-27 10:59:27 -0500 | [diff] [blame] | 393 | 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 Phillips | 6be756b | 2018-01-16 15:07:54 -0500 | [diff] [blame] | 400 | if (!fp->instantiate(resourceProvider)) { |
Robert Phillips | a91e0b7 | 2017-05-01 13:12:20 -0400 | [diff] [blame] | 401 | continue; |
| 402 | } |
| 403 | |
Brian Salomon | 587e08f | 2017-01-27 10:59:27 -0500 | [diff] [blame] | 404 | if (!fp->hasConstantOutputForConstantInput() && !fp->preservesOpaqueInput() && |
Brian Salomon | f3b995b | 2017-02-15 10:22:23 -0500 | [diff] [blame] | 405 | !fp->compatibleWithCoverageAsAlpha()) { |
Brian Salomon | 587e08f | 2017-01-27 10:59:27 -0500 | [diff] [blame] | 406 | continue; |
| 407 | } |
Brian Salomon | aff329b | 2017-08-11 09:40:37 -0400 | [diff] [blame] | 408 | |
| 409 | // Since we transfer away ownership of the original FP, we make a clone. |
| 410 | auto clone = fp->clone(); |
| 411 | |
Robert Phillips | 7c525e6 | 2018-06-12 10:11:12 -0400 | [diff] [blame] | 412 | test_draw_op(context, rtc.get(), std::move(fp), inputTexture); |
Brian Salomon | 0e05a82 | 2017-07-25 09:43:22 -0400 | [diff] [blame] | 413 | 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 Salomon | 587e08f | 2017-01-27 10:59:27 -0500 | [diff] [blame] | 417 | bool passing = true; |
| 418 | if (0) { // Useful to see what FPs are being tested. |
| 419 | SkString children; |
Brian Salomon | aff329b | 2017-08-11 09:40:37 -0400 | [diff] [blame] | 420 | for (int c = 0; c < clone->numChildProcessors(); ++c) { |
Brian Salomon | 587e08f | 2017-01-27 10:59:27 -0500 | [diff] [blame] | 421 | if (!c) { |
| 422 | children.append("("); |
| 423 | } |
Brian Salomon | aff329b | 2017-08-11 09:40:37 -0400 | [diff] [blame] | 424 | children.append(clone->name()); |
| 425 | children.append(c == clone->numChildProcessors() - 1 ? ")" : ", "); |
Brian Salomon | 587e08f | 2017-01-27 10:59:27 -0500 | [diff] [blame] | 426 | } |
Brian Salomon | aff329b | 2017-08-11 09:40:37 -0400 | [diff] [blame] | 427 | SkDebugf("%s %s\n", clone->name(), children.c_str()); |
Brian Salomon | 587e08f | 2017-01-27 10:59:27 -0500 | [diff] [blame] | 428 | } |
Brian Salomon | 0e05a82 | 2017-07-25 09:43:22 -0400 | [diff] [blame] | 429 | 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 Salomon | aff329b | 2017-08-11 09:40:37 -0400 | [diff] [blame] | 433 | if (clone->compatibleWithCoverageAsAlpha()) { |
Brian Salomon | 587e08f | 2017-01-27 10:59:27 -0500 | [diff] [blame] | 434 | // 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 Daniel | 10ed243 | 2017-12-01 16:19:43 -0500 | [diff] [blame] | 449 | "Input: 0x%08x, Output: 0x%08x, pixel (%d, %d).", |
| 450 | clone->name(), input, output, x, y); |
Brian Salomon | 587e08f | 2017-01-27 10:59:27 -0500 | [diff] [blame] | 451 | passing = false; |
| 452 | } |
| 453 | } |
Brian Salomon | 0e05a82 | 2017-07-25 09:43:22 -0400 | [diff] [blame] | 454 | GrColor4f input4f = input_texel_color4f(x, y); |
Brian Salomon | 587e08f | 2017-01-27 10:59:27 -0500 | [diff] [blame] | 455 | GrColor4f output4f = GrColor4f::FromGrColor(output); |
| 456 | GrColor4f expected4f; |
Brian Salomon | aff329b | 2017-08-11 09:40:37 -0400 | [diff] [blame] | 457 | if (clone->hasConstantOutputForConstantInput(input4f, &expected4f)) { |
Brian Salomon | 587e08f | 2017-01-27 10:59:27 -0500 | [diff] [blame] | 458 | 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 Salomon | 5d4cd9e | 2017-02-09 11:16:46 -0500 | [diff] [blame] | 462 | static constexpr float kTol = 4 / 255.f; |
Brian Salomon | 587e08f | 2017-01-27 10:59:27 -0500 | [diff] [blame] | 463 | if (rDiff > kTol || gDiff > kTol || bDiff > kTol || aDiff > kTol) { |
| 464 | ERRORF(reporter, |
| 465 | "Processor %s claimed output for const input doesn't match " |
Brian Salomon | 5d4cd9e | 2017-02-09 11:16:46 -0500 | [diff] [blame] | 466 | "actual output. Error: %f, Tolerance: %f, input: (%f, %f, %f, " |
| 467 | "%f), actual: (%f, %f, %f, %f), expected(%f, %f, %f, %f)", |
Brian Salomon | f61711a | 2018-02-16 10:44:28 -0500 | [diff] [blame] | 468 | clone->name(), |
| 469 | SkTMax(rDiff, SkTMax(gDiff, SkTMax(bDiff, aDiff))), kTol, |
| 470 | input4f.fRGBA[0], input4f.fRGBA[1], input4f.fRGBA[2], |
Brian Salomon | 5d4cd9e | 2017-02-09 11:16:46 -0500 | [diff] [blame] | 471 | 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 Salomon | 587e08f | 2017-01-27 10:59:27 -0500 | [diff] [blame] | 474 | passing = false; |
| 475 | } |
| 476 | } |
Brian Salomon | aff329b | 2017-08-11 09:40:37 -0400 | [diff] [blame] | 477 | if (GrColorIsOpaque(input) && clone->preservesOpaqueInput() && |
Brian Salomon | 587e08f | 2017-01-27 10:59:27 -0500 | [diff] [blame] | 478 | !GrColorIsOpaque(output)) { |
| 479 | ERRORF(reporter, |
| 480 | "Processor %s claimed opaqueness is preserved but it is not. Input: " |
Brian Osman | 2f3865b | 2017-03-15 13:35:51 -0400 | [diff] [blame] | 481 | "0x%08x, Output: 0x%08x.", |
Brian Salomon | aff329b | 2017-08-11 09:40:37 -0400 | [diff] [blame] | 482 | clone->name(), input, output); |
Brian Salomon | 587e08f | 2017-01-27 10:59:27 -0500 | [diff] [blame] | 483 | passing = false; |
| 484 | } |
Brian Osman | bd1f76f | 2017-03-15 11:33:12 -0400 | [diff] [blame] | 485 | if (!passing) { |
Brian Salomon | aff329b | 2017-08-11 09:40:37 -0400 | [diff] [blame] | 486 | ERRORF(reporter, "Seed: 0x%08x, Processor details: %s", seed, |
| 487 | clone->dumpInfo().c_str()); |
Brian Osman | bd1f76f | 2017-03-15 11:33:12 -0400 | [diff] [blame] | 488 | } |
Brian Salomon | 587e08f | 2017-01-27 10:59:27 -0500 | [diff] [blame] | 489 | } |
| 490 | } |
| 491 | } |
| 492 | } |
| 493 | } |
Robert Phillips | 18166ee | 2017-06-01 12:55:44 -0400 | [diff] [blame] | 494 | |
Brian Salomon | 0e05a82 | 2017-07-25 09:43:22 -0400 | [diff] [blame] | 495 | // Tests that fragment processors returned by GrFragmentProcessor::clone() are equivalent to their |
| 496 | // progenitors. |
| 497 | DEF_GPUTEST_FOR_GL_RENDERING_CONTEXTS(ProcessorCloneTest, reporter, ctxInfo) { |
| 498 | GrContext* context = ctxInfo.grContext(); |
Robert Phillips | 0bd24dc | 2018-01-16 08:06:32 -0500 | [diff] [blame] | 499 | GrProxyProvider* proxyProvider = context->contextPriv().proxyProvider(); |
Robert Phillips | 6be756b | 2018-01-16 15:07:54 -0500 | [diff] [blame] | 500 | auto resourceProvider = context->contextPriv().resourceProvider(); |
Brian Salomon | 0e05a82 | 2017-07-25 09:43:22 -0400 | [diff] [blame] | 501 | |
| 502 | SkRandom random; |
| 503 | |
| 504 | // Make the destination context for the test. |
| 505 | static constexpr int kRenderSize = 1024; |
Robert Phillips | 0c4b7b1 | 2018-03-06 08:20:37 -0500 | [diff] [blame] | 506 | sk_sp<GrRenderTargetContext> rtc = context->contextPriv().makeDeferredRenderTargetContext( |
Brian Salomon | 0e05a82 | 2017-07-25 09:43:22 -0400 | [diff] [blame] | 507 | SkBackingFit::kExact, kRenderSize, kRenderSize, kRGBA_8888_GrPixelConfig, nullptr); |
| 508 | |
| 509 | sk_sp<GrTextureProxy> proxies[2]; |
Robert Phillips | 0bd24dc | 2018-01-16 08:06:32 -0500 | [diff] [blame] | 510 | if (!init_test_textures(proxyProvider, &random, proxies)) { |
Brian Salomon | 0e05a82 | 2017-07-25 09:43:22 -0400 | [diff] [blame] | 511 | ERRORF(reporter, "Could not create test textures"); |
| 512 | return; |
| 513 | } |
| 514 | GrProcessorTestData testData(&random, context, rtc.get(), proxies); |
| 515 | |
Robert Phillips | 0bd24dc | 2018-01-16 08:06:32 -0500 | [diff] [blame] | 516 | auto inputTexture = make_input_texture(proxyProvider, kRenderSize, kRenderSize); |
Brian Salomon | 0e05a82 | 2017-07-25 09:43:22 -0400 | [diff] [blame] | 517 | 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 Salomon | 0e05a82 | 2017-07-25 09:43:22 -0400 | [diff] [blame] | 528 | if (!clone) { |
Brian Salomon | 96271cd | 2017-07-31 16:27:23 -0400 | [diff] [blame] | 529 | ERRORF(reporter, "Clone of processor %s failed.", fp->name()); |
Brian Salomon | 0e05a82 | 2017-07-25 09:43:22 -0400 | [diff] [blame] | 530 | continue; |
| 531 | } |
Brian Salomon | aff329b | 2017-08-11 09:40:37 -0400 | [diff] [blame] | 532 | const char* name = fp->name(); |
Robert Phillips | 6be756b | 2018-01-16 15:07:54 -0500 | [diff] [blame] | 533 | if (!fp->instantiate(resourceProvider) || !clone->instantiate(resourceProvider)) { |
Brian Salomon | 0e05a82 | 2017-07-25 09:43:22 -0400 | [diff] [blame] | 534 | continue; |
| 535 | } |
Brian Salomon | ce06e26 | 2017-08-01 16:23:40 -0400 | [diff] [blame] | 536 | 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 Salomon | 0e05a82 | 2017-07-25 09:43:22 -0400 | [diff] [blame] | 545 | // Draw with original and read back the results. |
Robert Phillips | 7c525e6 | 2018-06-12 10:11:12 -0400 | [diff] [blame] | 546 | test_draw_op(context, rtc.get(), std::move(fp), inputTexture); |
Brian Salomon | 0e05a82 | 2017-07-25 09:43:22 -0400 | [diff] [blame] | 547 | 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 Phillips | 7c525e6 | 2018-06-12 10:11:12 -0400 | [diff] [blame] | 551 | test_draw_op(context, rtc.get(), std::move(clone), inputTexture); |
Brian Salomon | 0e05a82 | 2017-07-25 09:43:22 -0400 | [diff] [blame] | 552 | 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 Salomon | aff329b | 2017-08-11 09:40:37 -0400 | [diff] [blame] | 565 | name, input_texel_color(x, y), readData1[idx], readData2[idx]); |
Brian Salomon | 0e05a82 | 2017-07-25 09:43:22 -0400 | [diff] [blame] | 566 | passing = false; |
| 567 | } |
| 568 | } |
| 569 | } |
| 570 | } |
| 571 | } |
| 572 | } |
| 573 | |
Hal Canary | 6f6961e | 2017-01-31 13:50:44 -0500 | [diff] [blame] | 574 | #endif // GR_TEST_UTILS |
| 575 | #endif // SK_ALLOW_STATIC_GLOBAL_INITIALIZERS |