bsalomon@google.com | a8e686e | 2011-08-16 15:45:58 +0000 | [diff] [blame] | 1 | |
| 2 | /* |
| 3 | * Copyright 2011 Google Inc. |
| 4 | * |
| 5 | * Use of this source code is governed by a BSD-style license that can be |
| 6 | * found in the LICENSE file. |
| 7 | */ |
| 8 | |
bsalomon@google.com | d472620 | 2012-08-03 14:34:46 +0000 | [diff] [blame] | 9 | // This is a GPU-backend specific test. It relies on static intializers to work |
bsalomon@google.com | cf8fb1f | 2012-08-02 14:03:32 +0000 | [diff] [blame] | 10 | |
bsalomon@google.com | 2a48c3a | 2012-08-03 14:54:45 +0000 | [diff] [blame] | 11 | #include "SkTypes.h" |
| 12 | |
| 13 | #if SK_SUPPORT_GPU && SK_ALLOW_STATIC_GLOBAL_INITIALIZERS |
| 14 | |
bsalomon | 6f7f201 | 2015-03-16 14:00:52 -0700 | [diff] [blame] | 15 | #include "GrAutoLocaleSetter.h" |
joshualitt | 6c89110 | 2015-05-13 08:51:49 -0700 | [diff] [blame] | 16 | #include "GrBatchTest.h" |
bsalomon@google.com | 67b915d | 2013-02-04 16:13:32 +0000 | [diff] [blame] | 17 | #include "GrContextFactory.h" |
joshualitt | f5883a6 | 2016-01-13 07:47:38 -0800 | [diff] [blame] | 18 | #include "GrDrawContext.h" |
robertphillips | a13e202 | 2015-11-11 12:01:09 -0800 | [diff] [blame] | 19 | #include "GrDrawingManager.h" |
egdaniel | 605dd0f | 2014-11-12 08:35:25 -0800 | [diff] [blame] | 20 | #include "GrInvariantOutput.h" |
egdaniel | 8dd688b | 2015-01-22 10:16:09 -0800 | [diff] [blame] | 21 | #include "GrPipeline.h" |
bsalomon | 4061b12 | 2015-05-29 10:26:19 -0700 | [diff] [blame] | 22 | #include "GrResourceProvider.h" |
joshualitt | 2c93efe | 2014-11-06 12:57:13 -0800 | [diff] [blame] | 23 | #include "GrTest.h" |
egdaniel | 9513143 | 2014-12-09 11:15:43 -0800 | [diff] [blame] | 24 | #include "GrXferProcessor.h" |
bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 25 | #include "SkChecksum.h" |
tfarina@chromium.org | 223137f | 2012-11-21 22:38:36 +0000 | [diff] [blame] | 26 | #include "SkRandom.h" |
bsalomon@google.com | c3841b9 | 2012-08-02 18:11:43 +0000 | [diff] [blame] | 27 | #include "Test.h" |
joshualitt | 7441782 | 2015-08-07 11:42:16 -0700 | [diff] [blame] | 28 | |
bsalomon | 16b9913 | 2015-08-13 14:55:50 -0700 | [diff] [blame] | 29 | #include "batches/GrDrawBatch.h" |
joshualitt | 7441782 | 2015-08-07 11:42:16 -0700 | [diff] [blame] | 30 | |
joshualitt | 2c93efe | 2014-11-06 12:57:13 -0800 | [diff] [blame] | 31 | #include "effects/GrConfigConversionEffect.h" |
egdaniel | 9513143 | 2014-12-09 11:15:43 -0800 | [diff] [blame] | 32 | #include "effects/GrPorterDuffXferProcessor.h" |
wangyix | 059dffa | 2015-09-10 06:57:05 -0700 | [diff] [blame] | 33 | #include "effects/GrXfermodeFragmentProcessor.h" |
joshualitt | 7441782 | 2015-08-07 11:42:16 -0700 | [diff] [blame] | 34 | |
jvanverth | 39edf76 | 2014-12-22 11:44:19 -0800 | [diff] [blame] | 35 | #include "gl/GrGLGpu.h" |
egdaniel | 64c4728 | 2015-11-13 06:54:19 -0800 | [diff] [blame] | 36 | #include "glsl/GrGLSLFragmentProcessor.h" |
egdaniel | 2d721d3 | 2015-11-11 13:06:05 -0800 | [diff] [blame] | 37 | #include "glsl/GrGLSLFragmentShaderBuilder.h" |
| 38 | #include "glsl/GrGLSLProgramBuilder.h" |
bsalomon@google.com | c3841b9 | 2012-08-02 18:11:43 +0000 | [diff] [blame] | 39 | |
joshualitt | 6517134 | 2014-10-09 07:25:36 -0700 | [diff] [blame] | 40 | /* |
bsalomon | 98b33eb | 2014-10-15 11:05:26 -0700 | [diff] [blame] | 41 | * A dummy processor which just tries to insert a massive key and verify that it can retrieve the |
joshualitt | 6517134 | 2014-10-09 07:25:36 -0700 | [diff] [blame] | 42 | * whole thing correctly |
| 43 | */ |
| 44 | static const uint32_t kMaxKeySize = 1024; |
| 45 | |
egdaniel | 64c4728 | 2015-11-13 06:54:19 -0800 | [diff] [blame] | 46 | class GLBigKeyProcessor : public GrGLSLFragmentProcessor { |
joshualitt | 6517134 | 2014-10-09 07:25:36 -0700 | [diff] [blame] | 47 | public: |
joshualitt | eb2a676 | 2014-12-04 11:35:33 -0800 | [diff] [blame] | 48 | GLBigKeyProcessor(const GrProcessor&) {} |
joshualitt | d909759 | 2014-10-07 08:37:36 -0700 | [diff] [blame] | 49 | |
wangyix | 7c157a9 | 2015-07-22 15:08:53 -0700 | [diff] [blame] | 50 | virtual void emitCode(EmitArgs& args) override { |
joshualitt | 6c89110 | 2015-05-13 08:51:49 -0700 | [diff] [blame] | 51 | // pass through |
egdaniel | 4ca2e60 | 2015-11-18 08:01:26 -0800 | [diff] [blame] | 52 | GrGLSLFragmentBuilder* fragBuilder = args.fFragBuilder; |
bsalomon | b5b6032 | 2015-09-14 12:26:33 -0700 | [diff] [blame] | 53 | if (args.fInputColor) { |
egdaniel | 4ca2e60 | 2015-11-18 08:01:26 -0800 | [diff] [blame] | 54 | fragBuilder->codeAppendf("%s = %s;\n", args.fOutputColor, args.fInputColor); |
bsalomon | b5b6032 | 2015-09-14 12:26:33 -0700 | [diff] [blame] | 55 | } else { |
egdaniel | 4ca2e60 | 2015-11-18 08:01:26 -0800 | [diff] [blame] | 56 | fragBuilder->codeAppendf("%s = vec4(1.0);\n", args.fOutputColor); |
bsalomon | b5b6032 | 2015-09-14 12:26:33 -0700 | [diff] [blame] | 57 | } |
joshualitt | 6c89110 | 2015-05-13 08:51:49 -0700 | [diff] [blame] | 58 | } |
joshualitt | 6517134 | 2014-10-09 07:25:36 -0700 | [diff] [blame] | 59 | |
jvanverth | cfc1886 | 2015-04-28 08:48:20 -0700 | [diff] [blame] | 60 | static void GenKey(const GrProcessor& processor, const GrGLSLCaps&, GrProcessorKeyBuilder* b) { |
joshualitt | 6517134 | 2014-10-09 07:25:36 -0700 | [diff] [blame] | 61 | for (uint32_t i = 0; i < kMaxKeySize; i++) { |
| 62 | b->add32(i); |
joshualitt | d909759 | 2014-10-07 08:37:36 -0700 | [diff] [blame] | 63 | } |
joshualitt | d909759 | 2014-10-07 08:37:36 -0700 | [diff] [blame] | 64 | } |
| 65 | |
joshualitt | 6517134 | 2014-10-09 07:25:36 -0700 | [diff] [blame] | 66 | private: |
egdaniel | 64c4728 | 2015-11-13 06:54:19 -0800 | [diff] [blame] | 67 | typedef GrGLSLFragmentProcessor INHERITED; |
joshualitt | 6517134 | 2014-10-09 07:25:36 -0700 | [diff] [blame] | 68 | }; |
| 69 | |
joshualitt | eb2a676 | 2014-12-04 11:35:33 -0800 | [diff] [blame] | 70 | class BigKeyProcessor : public GrFragmentProcessor { |
| 71 | public: |
| 72 | static GrFragmentProcessor* Create() { |
bsalomon | 0214173 | 2015-10-21 06:57:30 -0700 | [diff] [blame] | 73 | return new BigKeyProcessor; |
joshualitt | eb2a676 | 2014-12-04 11:35:33 -0800 | [diff] [blame] | 74 | } |
| 75 | |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 76 | const char* name() const override { return "Big Ole Key"; } |
joshualitt | eb2a676 | 2014-12-04 11:35:33 -0800 | [diff] [blame] | 77 | |
egdaniel | 57d3b03 | 2015-11-13 11:57:27 -0800 | [diff] [blame] | 78 | GrGLSLFragmentProcessor* onCreateGLSLInstance() const override { |
halcanary | 385fe4d | 2015-08-26 13:07:48 -0700 | [diff] [blame] | 79 | return new GLBigKeyProcessor(*this); |
joshualitt | eb2a676 | 2014-12-04 11:35:33 -0800 | [diff] [blame] | 80 | } |
| 81 | |
| 82 | private: |
| 83 | BigKeyProcessor() { |
| 84 | this->initClassID<BigKeyProcessor>(); |
| 85 | } |
egdaniel | 57d3b03 | 2015-11-13 11:57:27 -0800 | [diff] [blame] | 86 | virtual void onGetGLSLProcessorKey(const GrGLSLCaps& caps, |
| 87 | GrProcessorKeyBuilder* b) const override { |
wangyix | 4b3050b | 2015-08-04 07:59:37 -0700 | [diff] [blame] | 88 | GLBigKeyProcessor::GenKey(*this, caps, b); |
| 89 | } |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 90 | bool onIsEqual(const GrFragmentProcessor&) const override { return true; } |
| 91 | void onComputeInvariantOutput(GrInvariantOutput* inout) const override { } |
joshualitt | eb2a676 | 2014-12-04 11:35:33 -0800 | [diff] [blame] | 92 | |
| 93 | GR_DECLARE_FRAGMENT_PROCESSOR_TEST; |
| 94 | |
| 95 | typedef GrFragmentProcessor INHERITED; |
| 96 | }; |
| 97 | |
| 98 | GR_DEFINE_FRAGMENT_PROCESSOR_TEST(BigKeyProcessor); |
| 99 | |
bsalomon | c21b09e | 2015-08-28 18:46:56 -0700 | [diff] [blame] | 100 | const GrFragmentProcessor* BigKeyProcessor::TestCreate(GrProcessorTestData*) { |
joshualitt | eb2a676 | 2014-12-04 11:35:33 -0800 | [diff] [blame] | 101 | return BigKeyProcessor::Create(); |
| 102 | } |
| 103 | |
bsalomon | b5b6032 | 2015-09-14 12:26:33 -0700 | [diff] [blame] | 104 | ////////////////////////////////////////////////////////////////////////////// |
| 105 | |
| 106 | class BlockInputFragmentProcessor : public GrFragmentProcessor { |
| 107 | public: |
| 108 | static GrFragmentProcessor* Create(const GrFragmentProcessor* fp) { |
| 109 | return new BlockInputFragmentProcessor(fp); |
| 110 | } |
| 111 | |
| 112 | const char* name() const override { return "Block Input"; } |
| 113 | |
egdaniel | 57d3b03 | 2015-11-13 11:57:27 -0800 | [diff] [blame] | 114 | GrGLSLFragmentProcessor* onCreateGLSLInstance() const override { return new GLFP; } |
bsalomon | b5b6032 | 2015-09-14 12:26:33 -0700 | [diff] [blame] | 115 | |
| 116 | private: |
egdaniel | 64c4728 | 2015-11-13 06:54:19 -0800 | [diff] [blame] | 117 | class GLFP : public GrGLSLFragmentProcessor { |
bsalomon | b5b6032 | 2015-09-14 12:26:33 -0700 | [diff] [blame] | 118 | public: |
| 119 | void emitCode(EmitArgs& args) override { |
bsalomon | 38ddbad | 2015-09-24 06:00:00 -0700 | [diff] [blame] | 120 | this->emitChild(0, nullptr, args); |
bsalomon | b5b6032 | 2015-09-14 12:26:33 -0700 | [diff] [blame] | 121 | } |
| 122 | |
| 123 | private: |
egdaniel | 64c4728 | 2015-11-13 06:54:19 -0800 | [diff] [blame] | 124 | typedef GrGLSLFragmentProcessor INHERITED; |
bsalomon | b5b6032 | 2015-09-14 12:26:33 -0700 | [diff] [blame] | 125 | }; |
| 126 | |
| 127 | BlockInputFragmentProcessor(const GrFragmentProcessor* child) { |
| 128 | this->initClassID<BlockInputFragmentProcessor>(); |
| 129 | this->registerChildProcessor(child); |
| 130 | } |
| 131 | |
egdaniel | 57d3b03 | 2015-11-13 11:57:27 -0800 | [diff] [blame] | 132 | void onGetGLSLProcessorKey(const GrGLSLCaps& caps, GrProcessorKeyBuilder* b) const override {} |
bsalomon | b5b6032 | 2015-09-14 12:26:33 -0700 | [diff] [blame] | 133 | |
| 134 | bool onIsEqual(const GrFragmentProcessor&) const override { return true; } |
| 135 | |
| 136 | void onComputeInvariantOutput(GrInvariantOutput* inout) const override { |
| 137 | inout->setToOther(kRGBA_GrColorComponentFlags, GrColor_WHITE, |
| 138 | GrInvariantOutput::kWillNot_ReadInput); |
| 139 | this->childProcessor(0).computeInvariantOutput(inout); |
| 140 | } |
| 141 | |
| 142 | typedef GrFragmentProcessor INHERITED; |
| 143 | }; |
| 144 | |
| 145 | ////////////////////////////////////////////////////////////////////////////// |
| 146 | |
joshualitt | 6517134 | 2014-10-09 07:25:36 -0700 | [diff] [blame] | 147 | /* |
| 148 | * Begin test code |
| 149 | */ |
| 150 | static const int kRenderTargetHeight = 1; |
| 151 | static const int kRenderTargetWidth = 1; |
| 152 | |
bsalomon | 4061b12 | 2015-05-29 10:26:19 -0700 | [diff] [blame] | 153 | static GrRenderTarget* random_render_target(GrTextureProvider* textureProvider, SkRandom* random, |
bsalomon | 4b91f76 | 2015-05-19 09:29:46 -0700 | [diff] [blame] | 154 | const GrCaps* caps) { |
joshualitt | 6517134 | 2014-10-09 07:25:36 -0700 | [diff] [blame] | 155 | // setup render target |
| 156 | GrTextureParams params; |
bsalomon | f2703d8 | 2014-10-28 14:33:06 -0700 | [diff] [blame] | 157 | GrSurfaceDesc texDesc; |
joshualitt | 6517134 | 2014-10-09 07:25:36 -0700 | [diff] [blame] | 158 | texDesc.fWidth = kRenderTargetWidth; |
| 159 | texDesc.fHeight = kRenderTargetHeight; |
bsalomon | f2703d8 | 2014-10-28 14:33:06 -0700 | [diff] [blame] | 160 | texDesc.fFlags = kRenderTarget_GrSurfaceFlag; |
joshualitt | 6517134 | 2014-10-09 07:25:36 -0700 | [diff] [blame] | 161 | texDesc.fConfig = kRGBA_8888_GrPixelConfig; |
| 162 | texDesc.fOrigin = random->nextBool() == true ? kTopLeft_GrSurfaceOrigin : |
| 163 | kBottomLeft_GrSurfaceOrigin; |
joshualitt | 1573206 | 2015-05-13 12:15:14 -0700 | [diff] [blame] | 164 | texDesc.fSampleCnt = random->nextBool() == true ? SkTMin(4, caps->maxSampleCount()) : 0; |
joshualitt | 6c89110 | 2015-05-13 08:51:49 -0700 | [diff] [blame] | 165 | |
bsalomon | 8718aaf | 2015-02-19 07:24:21 -0800 | [diff] [blame] | 166 | GrUniqueKey key; |
| 167 | static const GrUniqueKey::Domain kDomain = GrUniqueKey::GenerateDomain(); |
joshualitt | 6c89110 | 2015-05-13 08:51:49 -0700 | [diff] [blame] | 168 | GrUniqueKey::Builder builder(&key, kDomain, 2); |
bsalomon | 24db3b1 | 2015-01-23 04:24:04 -0800 | [diff] [blame] | 169 | builder[0] = texDesc.fOrigin; |
joshualitt | 6c89110 | 2015-05-13 08:51:49 -0700 | [diff] [blame] | 170 | builder[1] = texDesc.fSampleCnt; |
bsalomon | 24db3b1 | 2015-01-23 04:24:04 -0800 | [diff] [blame] | 171 | builder.finish(); |
joshualitt | 6517134 | 2014-10-09 07:25:36 -0700 | [diff] [blame] | 172 | |
bsalomon | 4061b12 | 2015-05-29 10:26:19 -0700 | [diff] [blame] | 173 | GrTexture* texture = textureProvider->findAndRefTextureByUniqueKey(key); |
bsalomon | d27726e | 2014-10-12 05:40:00 -0700 | [diff] [blame] | 174 | if (!texture) { |
bsalomon | 4061b12 | 2015-05-29 10:26:19 -0700 | [diff] [blame] | 175 | texture = textureProvider->createTexture(texDesc, true); |
bsalomon | 37f9a26 | 2015-02-02 13:00:10 -0800 | [diff] [blame] | 176 | if (texture) { |
bsalomon | 4061b12 | 2015-05-29 10:26:19 -0700 | [diff] [blame] | 177 | textureProvider->assignUniqueKeyToTexture(key, texture); |
joshualitt | d909759 | 2014-10-07 08:37:36 -0700 | [diff] [blame] | 178 | } |
joshualitt | d909759 | 2014-10-07 08:37:36 -0700 | [diff] [blame] | 179 | } |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 180 | return texture ? texture->asRenderTarget() : nullptr; |
bsalomon@google.com | 9120748 | 2013-02-12 21:45:24 +0000 | [diff] [blame] | 181 | } |
| 182 | |
joshualitt | 0067ff5 | 2015-07-08 14:26:19 -0700 | [diff] [blame] | 183 | static void set_random_xpf(GrPipelineBuilder* pipelineBuilder, GrProcessorTestData* d) { |
bsalomon | b5b6032 | 2015-09-14 12:26:33 -0700 | [diff] [blame] | 184 | SkAutoTUnref<const GrXPFactory> xpf(GrProcessorTestFactory<GrXPFactory>::Create(d)); |
egdaniel | c230414 | 2014-12-11 13:15:13 -0800 | [diff] [blame] | 185 | SkASSERT(xpf); |
egdaniel | 8dd688b | 2015-01-22 10:16:09 -0800 | [diff] [blame] | 186 | pipelineBuilder->setXPFactory(xpf.get()); |
egdaniel | c230414 | 2014-12-11 13:15:13 -0800 | [diff] [blame] | 187 | } |
| 188 | |
wangyix | 059dffa | 2015-09-10 06:57:05 -0700 | [diff] [blame] | 189 | static const GrFragmentProcessor* create_random_proc_tree(GrProcessorTestData* d, |
| 190 | int minLevels, int maxLevels) { |
| 191 | SkASSERT(1 <= minLevels); |
| 192 | SkASSERT(minLevels <= maxLevels); |
| 193 | |
| 194 | // Return a leaf node if maxLevels is 1 or if we randomly chose to terminate. |
| 195 | // If returning a leaf node, make sure that it doesn't have children (e.g. another |
| 196 | // GrComposeEffect) |
| 197 | const float terminateProbability = 0.3f; |
| 198 | if (1 == minLevels) { |
| 199 | bool terminate = (1 == maxLevels) || (d->fRandom->nextF() < terminateProbability); |
| 200 | if (terminate) { |
| 201 | const GrFragmentProcessor* fp; |
| 202 | while (true) { |
bsalomon | b5b6032 | 2015-09-14 12:26:33 -0700 | [diff] [blame] | 203 | fp = GrProcessorTestFactory<GrFragmentProcessor>::Create(d); |
wangyix | 059dffa | 2015-09-10 06:57:05 -0700 | [diff] [blame] | 204 | SkASSERT(fp); |
| 205 | if (0 == fp->numChildProcessors()) { |
| 206 | break; |
| 207 | } |
| 208 | fp->unref(); |
| 209 | } |
| 210 | return fp; |
| 211 | } |
| 212 | } |
| 213 | // If we didn't terminate, choose either the left or right subtree to fulfill |
| 214 | // the minLevels requirement of this tree; the other child can have as few levels as it wants. |
| 215 | // Also choose a random xfer mode that's supported by CreateFrom2Procs(). |
| 216 | if (minLevels > 1) { |
| 217 | --minLevels; |
| 218 | } |
| 219 | SkAutoTUnref<const GrFragmentProcessor> minLevelsChild(create_random_proc_tree(d, minLevels, |
| 220 | maxLevels - 1)); |
| 221 | SkAutoTUnref<const GrFragmentProcessor> otherChild(create_random_proc_tree(d, 1, |
| 222 | maxLevels - 1)); |
| 223 | SkXfermode::Mode mode = static_cast<SkXfermode::Mode>(d->fRandom->nextRangeU(0, |
| 224 | SkXfermode::kLastCoeffMode)); |
| 225 | const GrFragmentProcessor* fp; |
| 226 | if (d->fRandom->nextF() < 0.5f) { |
| 227 | fp = GrXfermodeFragmentProcessor::CreateFromTwoProcessors(minLevelsChild, otherChild, mode); |
| 228 | SkASSERT(fp); |
| 229 | } else { |
| 230 | fp = GrXfermodeFragmentProcessor::CreateFromTwoProcessors(otherChild, minLevelsChild, mode); |
| 231 | SkASSERT(fp); |
| 232 | } |
| 233 | return fp; |
| 234 | } |
| 235 | |
joshualitt | 0067ff5 | 2015-07-08 14:26:19 -0700 | [diff] [blame] | 236 | static void set_random_color_coverage_stages(GrPipelineBuilder* pipelineBuilder, |
| 237 | GrProcessorTestData* d, int maxStages) { |
wangyix | 059dffa | 2015-09-10 06:57:05 -0700 | [diff] [blame] | 238 | // Randomly choose to either create a linear pipeline of procs or create one proc tree |
| 239 | const float procTreeProbability = 0.5f; |
| 240 | if (d->fRandom->nextF() < procTreeProbability) { |
| 241 | // A full tree with 5 levels (31 nodes) may exceed the max allowed length of the gl |
| 242 | // processor key; maxTreeLevels should be a number from 1 to 4 inclusive. |
| 243 | const int maxTreeLevels = 4; |
bsalomon | ae59b77 | 2014-11-19 08:23:49 -0800 | [diff] [blame] | 244 | SkAutoTUnref<const GrFragmentProcessor> fp( |
wangyix | 059dffa | 2015-09-10 06:57:05 -0700 | [diff] [blame] | 245 | create_random_proc_tree(d, 2, maxTreeLevels)); |
| 246 | pipelineBuilder->addColorFragmentProcessor(fp); |
| 247 | } else { |
| 248 | int numProcs = d->fRandom->nextULessThan(maxStages + 1); |
| 249 | int numColorProcs = d->fRandom->nextULessThan(numProcs + 1); |
joshualitt | 6517134 | 2014-10-09 07:25:36 -0700 | [diff] [blame] | 250 | |
wangyix | 059dffa | 2015-09-10 06:57:05 -0700 | [diff] [blame] | 251 | for (int s = 0; s < numProcs;) { |
| 252 | SkAutoTUnref<const GrFragmentProcessor> fp( |
bsalomon | ae4738f | 2015-09-15 15:33:27 -0700 | [diff] [blame] | 253 | GrProcessorTestFactory<GrFragmentProcessor>::Create(d)); |
wangyix | 059dffa | 2015-09-10 06:57:05 -0700 | [diff] [blame] | 254 | SkASSERT(fp); |
| 255 | |
| 256 | // finally add the stage to the correct pipeline in the drawstate |
| 257 | if (s < numColorProcs) { |
| 258 | pipelineBuilder->addColorFragmentProcessor(fp); |
| 259 | } else { |
| 260 | pipelineBuilder->addCoverageFragmentProcessor(fp); |
| 261 | } |
| 262 | ++s; |
joshualitt | 6517134 | 2014-10-09 07:25:36 -0700 | [diff] [blame] | 263 | } |
joshualitt | 6517134 | 2014-10-09 07:25:36 -0700 | [diff] [blame] | 264 | } |
| 265 | } |
| 266 | |
egdaniel | 8dd688b | 2015-01-22 10:16:09 -0800 | [diff] [blame] | 267 | static void set_random_state(GrPipelineBuilder* pipelineBuilder, SkRandom* random) { |
joshualitt | 6517134 | 2014-10-09 07:25:36 -0700 | [diff] [blame] | 268 | int state = 0; |
bsalomon | d79c549 | 2015-04-27 10:07:04 -0700 | [diff] [blame] | 269 | for (int i = 1; i <= GrPipelineBuilder::kLast_Flag; i <<= 1) { |
joshualitt | 6517134 | 2014-10-09 07:25:36 -0700 | [diff] [blame] | 270 | state |= random->nextBool() * i; |
| 271 | } |
joshualitt | 6c89110 | 2015-05-13 08:51:49 -0700 | [diff] [blame] | 272 | |
| 273 | // If we don't have an MSAA rendertarget then we have to disable useHWAA |
| 274 | if ((state | GrPipelineBuilder::kHWAntialias_Flag) && |
vbuzinov | dded696 | 2015-06-12 08:59:45 -0700 | [diff] [blame] | 275 | !pipelineBuilder->getRenderTarget()->isUnifiedMultisampled()) { |
joshualitt | 6c89110 | 2015-05-13 08:51:49 -0700 | [diff] [blame] | 276 | state &= ~GrPipelineBuilder::kHWAntialias_Flag; |
| 277 | } |
egdaniel | 8dd688b | 2015-01-22 10:16:09 -0800 | [diff] [blame] | 278 | pipelineBuilder->enableState(state); |
joshualitt | 6517134 | 2014-10-09 07:25:36 -0700 | [diff] [blame] | 279 | } |
| 280 | |
joshualitt | 6517134 | 2014-10-09 07:25:36 -0700 | [diff] [blame] | 281 | // right now, the only thing we seem to care about in drawState's stencil is 'doesWrite()' |
egdaniel | 8dd688b | 2015-01-22 10:16:09 -0800 | [diff] [blame] | 282 | static void set_random_stencil(GrPipelineBuilder* pipelineBuilder, SkRandom* random) { |
joshualitt | 6517134 | 2014-10-09 07:25:36 -0700 | [diff] [blame] | 283 | GR_STATIC_CONST_SAME_STENCIL(kDoesWriteStencil, |
| 284 | kReplace_StencilOp, |
| 285 | kReplace_StencilOp, |
| 286 | kAlways_StencilFunc, |
| 287 | 0xffff, |
| 288 | 0xffff, |
| 289 | 0xffff); |
| 290 | GR_STATIC_CONST_SAME_STENCIL(kDoesNotWriteStencil, |
| 291 | kKeep_StencilOp, |
| 292 | kKeep_StencilOp, |
| 293 | kNever_StencilFunc, |
| 294 | 0xffff, |
| 295 | 0xffff, |
| 296 | 0xffff); |
| 297 | |
| 298 | if (random->nextBool()) { |
egdaniel | 8dd688b | 2015-01-22 10:16:09 -0800 | [diff] [blame] | 299 | pipelineBuilder->setStencil(kDoesWriteStencil); |
joshualitt | 6517134 | 2014-10-09 07:25:36 -0700 | [diff] [blame] | 300 | } else { |
egdaniel | 8dd688b | 2015-01-22 10:16:09 -0800 | [diff] [blame] | 301 | pipelineBuilder->setStencil(kDoesNotWriteStencil); |
joshualitt | 6517134 | 2014-10-09 07:25:36 -0700 | [diff] [blame] | 302 | } |
| 303 | } |
joshualitt | 249af15 | 2014-09-15 11:41:13 -0700 | [diff] [blame] | 304 | |
robertphillips | 0dfa62c | 2015-11-16 06:23:31 -0800 | [diff] [blame] | 305 | bool GrDrawingManager::ProgramUnitTest(GrContext* context, int maxStages) { |
robertphillips | a13e202 | 2015-11-11 12:01:09 -0800 | [diff] [blame] | 306 | GrDrawingManager* drawingManager = context->drawingManager(); |
| 307 | |
joshualitt | 6517134 | 2014-10-09 07:25:36 -0700 | [diff] [blame] | 308 | // setup dummy textures |
bsalomon | f2703d8 | 2014-10-28 14:33:06 -0700 | [diff] [blame] | 309 | GrSurfaceDesc dummyDesc; |
bsalomon | bea0150 | 2015-07-16 10:00:28 -0700 | [diff] [blame] | 310 | dummyDesc.fFlags = kRenderTarget_GrSurfaceFlag; |
bsalomon@google.com | fec0bc3 | 2013-02-07 14:43:04 +0000 | [diff] [blame] | 311 | dummyDesc.fConfig = kSkia8888_GrPixelConfig; |
bsalomon@google.com | d472620 | 2012-08-03 14:34:46 +0000 | [diff] [blame] | 312 | dummyDesc.fWidth = 34; |
| 313 | dummyDesc.fHeight = 18; |
bsalomon | 4061b12 | 2015-05-29 10:26:19 -0700 | [diff] [blame] | 314 | SkAutoTUnref<GrTexture> dummyTexture1( |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 315 | context->textureProvider()->createTexture(dummyDesc, false, nullptr, 0)); |
bsalomon | f2703d8 | 2014-10-28 14:33:06 -0700 | [diff] [blame] | 316 | dummyDesc.fFlags = kNone_GrSurfaceFlags; |
bsalomon@google.com | d472620 | 2012-08-03 14:34:46 +0000 | [diff] [blame] | 317 | dummyDesc.fConfig = kAlpha_8_GrPixelConfig; |
| 318 | dummyDesc.fWidth = 16; |
| 319 | dummyDesc.fHeight = 22; |
bsalomon | 4061b12 | 2015-05-29 10:26:19 -0700 | [diff] [blame] | 320 | SkAutoTUnref<GrTexture> dummyTexture2( |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 321 | context->textureProvider()->createTexture(dummyDesc, false, nullptr, 0)); |
bsalomon@google.com | d472620 | 2012-08-03 14:34:46 +0000 | [diff] [blame] | 322 | |
bsalomon | e904c09 | 2014-07-17 10:50:59 -0700 | [diff] [blame] | 323 | if (!dummyTexture1 || ! dummyTexture2) { |
joshualitt | 6517134 | 2014-10-09 07:25:36 -0700 | [diff] [blame] | 324 | SkDebugf("Could not allocate dummy textures"); |
bsalomon | e904c09 | 2014-07-17 10:50:59 -0700 | [diff] [blame] | 325 | return false; |
| 326 | } |
| 327 | |
joshualitt | 6517134 | 2014-10-09 07:25:36 -0700 | [diff] [blame] | 328 | GrTexture* dummyTextures[] = {dummyTexture1.get(), dummyTexture2.get()}; |
| 329 | |
joshualitt | 54e0c12 | 2014-11-19 09:38:51 -0800 | [diff] [blame] | 330 | // dummy scissor state |
bsalomon | 3e79124 | 2014-12-17 13:43:13 -0800 | [diff] [blame] | 331 | GrScissorState scissor; |
joshualitt | 54e0c12 | 2014-11-19 09:38:51 -0800 | [diff] [blame] | 332 | |
joshualitt | 6c89110 | 2015-05-13 08:51:49 -0700 | [diff] [blame] | 333 | // wide open clip |
joshualitt | 44701df | 2015-02-23 14:44:57 -0800 | [diff] [blame] | 334 | GrClip clip; |
bsalomon@google.com | c3841b9 | 2012-08-02 18:11:43 +0000 | [diff] [blame] | 335 | |
commit-bot@chromium.org | e0e7cfe | 2013-09-09 20:09:12 +0000 | [diff] [blame] | 336 | SkRandom random; |
joshualitt | 6c89110 | 2015-05-13 08:51:49 -0700 | [diff] [blame] | 337 | static const int NUM_TESTS = 2048; |
| 338 | for (int t = 0; t < NUM_TESTS; t++) { |
joshualitt | 6517134 | 2014-10-09 07:25:36 -0700 | [diff] [blame] | 339 | // setup random render target(can fail) |
bsalomon | 4061b12 | 2015-05-29 10:26:19 -0700 | [diff] [blame] | 340 | SkAutoTUnref<GrRenderTarget> rt(random_render_target( |
robertphillips | a13e202 | 2015-11-11 12:01:09 -0800 | [diff] [blame] | 341 | context->textureProvider(), &random, context->caps())); |
joshualitt | 2c93efe | 2014-11-06 12:57:13 -0800 | [diff] [blame] | 342 | if (!rt.get()) { |
joshualitt | 6517134 | 2014-10-09 07:25:36 -0700 | [diff] [blame] | 343 | SkDebugf("Could not allocate render target"); |
| 344 | return false; |
bsalomon@google.com | c3841b9 | 2012-08-02 18:11:43 +0000 | [diff] [blame] | 345 | } |
bsalomon@google.com | c3841b9 | 2012-08-02 18:11:43 +0000 | [diff] [blame] | 346 | |
egdaniel | 8dd688b | 2015-01-22 10:16:09 -0800 | [diff] [blame] | 347 | GrPipelineBuilder pipelineBuilder; |
| 348 | pipelineBuilder.setRenderTarget(rt.get()); |
joshualitt | 44701df | 2015-02-23 14:44:57 -0800 | [diff] [blame] | 349 | pipelineBuilder.setClip(clip); |
bsalomon@google.com | c3841b9 | 2012-08-02 18:11:43 +0000 | [diff] [blame] | 350 | |
bsalomon | abd30f5 | 2015-08-13 13:34:48 -0700 | [diff] [blame] | 351 | SkAutoTUnref<GrDrawBatch> batch(GrRandomDrawBatch(&random, context)); |
joshualitt | 6c89110 | 2015-05-13 08:51:49 -0700 | [diff] [blame] | 352 | SkASSERT(batch); |
egdaniel | c064824 | 2014-09-22 13:17:02 -0700 | [diff] [blame] | 353 | |
cdalton | c94cd7c | 2015-11-12 12:11:04 -0800 | [diff] [blame] | 354 | GrProcessorTestData ptd(&random, context, context->caps(), rt, dummyTextures); |
joshualitt | 0067ff5 | 2015-07-08 14:26:19 -0700 | [diff] [blame] | 355 | set_random_color_coverage_stages(&pipelineBuilder, &ptd, maxStages); |
| 356 | set_random_xpf(&pipelineBuilder, &ptd); |
egdaniel | 8dd688b | 2015-01-22 10:16:09 -0800 | [diff] [blame] | 357 | set_random_state(&pipelineBuilder, &random); |
| 358 | set_random_stencil(&pipelineBuilder, &random); |
joshualitt | d909759 | 2014-10-07 08:37:36 -0700 | [diff] [blame] | 359 | |
joshualitt | f5883a6 | 2016-01-13 07:47:38 -0800 | [diff] [blame] | 360 | SkAutoTUnref<GrDrawContext> drawContext(context->drawContext(rt)); |
| 361 | if (!drawContext) { |
| 362 | SkDebugf("Could not allocate drawContext"); |
| 363 | return false; |
| 364 | } |
robertphillips | 0dfa62c | 2015-11-16 06:23:31 -0800 | [diff] [blame] | 365 | |
joshualitt | f5883a6 | 2016-01-13 07:47:38 -0800 | [diff] [blame] | 366 | drawContext->internal_drawBatch(pipelineBuilder, batch); |
bsalomon@google.com | c3841b9 | 2012-08-02 18:11:43 +0000 | [diff] [blame] | 367 | } |
joshualitt | 6c89110 | 2015-05-13 08:51:49 -0700 | [diff] [blame] | 368 | // Flush everything, test passes if flush is successful(ie, no asserts are hit, no crashes) |
robertphillips | a13e202 | 2015-11-11 12:01:09 -0800 | [diff] [blame] | 369 | drawingManager->flush(); |
bsalomon | b5b6032 | 2015-09-14 12:26:33 -0700 | [diff] [blame] | 370 | |
| 371 | // Validate that GrFPs work correctly without an input. |
| 372 | GrSurfaceDesc rtDesc; |
| 373 | rtDesc.fWidth = kRenderTargetWidth; |
| 374 | rtDesc.fHeight = kRenderTargetHeight; |
| 375 | rtDesc.fFlags = kRenderTarget_GrSurfaceFlag; |
| 376 | rtDesc.fConfig = kRGBA_8888_GrPixelConfig; |
| 377 | SkAutoTUnref<GrRenderTarget> rt( |
robertphillips | a13e202 | 2015-11-11 12:01:09 -0800 | [diff] [blame] | 378 | context->textureProvider()->createTexture(rtDesc, false)->asRenderTarget()); |
bsalomon | b5b6032 | 2015-09-14 12:26:33 -0700 | [diff] [blame] | 379 | int fpFactoryCnt = GrProcessorTestFactory<GrFragmentProcessor>::Count(); |
| 380 | for (int i = 0; i < fpFactoryCnt; ++i) { |
| 381 | // Since FP factories internally randomize, call each 10 times. |
| 382 | for (int j = 0; j < 10; ++j) { |
| 383 | SkAutoTUnref<GrDrawBatch> batch(GrRandomDrawBatch(&random, context)); |
| 384 | SkASSERT(batch); |
cdalton | c94cd7c | 2015-11-12 12:11:04 -0800 | [diff] [blame] | 385 | GrProcessorTestData ptd(&random, context, context->caps(), rt, dummyTextures); |
bsalomon | b5b6032 | 2015-09-14 12:26:33 -0700 | [diff] [blame] | 386 | GrPipelineBuilder builder; |
| 387 | builder.setXPFactory(GrPorterDuffXPFactory::Create(SkXfermode::kSrc_Mode))->unref(); |
| 388 | builder.setRenderTarget(rt); |
| 389 | builder.setClip(clip); |
| 390 | |
| 391 | SkAutoTUnref<const GrFragmentProcessor> fp( |
| 392 | GrProcessorTestFactory<GrFragmentProcessor>::CreateIdx(i, &ptd)); |
| 393 | SkAutoTUnref<const GrFragmentProcessor> blockFP( |
| 394 | BlockInputFragmentProcessor::Create(fp)); |
| 395 | builder.addColorFragmentProcessor(blockFP); |
| 396 | |
joshualitt | f5883a6 | 2016-01-13 07:47:38 -0800 | [diff] [blame] | 397 | SkAutoTUnref<GrDrawContext> drawContext(context->drawContext(rt)); |
| 398 | if (!drawContext) { |
| 399 | SkDebugf("Could not allocate a drawcontext"); |
| 400 | return false; |
| 401 | } |
robertphillips | 0dfa62c | 2015-11-16 06:23:31 -0800 | [diff] [blame] | 402 | |
joshualitt | f5883a6 | 2016-01-13 07:47:38 -0800 | [diff] [blame] | 403 | drawContext->internal_drawBatch(builder, batch); |
robertphillips | a13e202 | 2015-11-11 12:01:09 -0800 | [diff] [blame] | 404 | drawingManager->flush(); |
bsalomon | b5b6032 | 2015-09-14 12:26:33 -0700 | [diff] [blame] | 405 | } |
| 406 | } |
| 407 | |
bsalomon@google.com | c3841b9 | 2012-08-02 18:11:43 +0000 | [diff] [blame] | 408 | return true; |
| 409 | } |
bsalomon@google.com | a8e686e | 2011-08-16 15:45:58 +0000 | [diff] [blame] | 410 | |
kkinnunen | 3e980c3 | 2015-12-23 01:33:00 -0800 | [diff] [blame] | 411 | static int get_glprograms_max_stages(GrContext* context) { |
| 412 | GrGLGpu* gpu = static_cast<GrGLGpu*>(context->getGpu()); |
| 413 | /* |
| 414 | * For the time being, we only support the test with desktop GL or for android on |
| 415 | * ARM platforms |
| 416 | * TODO When we run ES 3.00 GLSL in more places, test again |
| 417 | */ |
| 418 | if (kGL_GrGLStandard == gpu->glStandard() || |
| 419 | kARM_GrGLVendor == gpu->ctxInfo().vendor()) { |
| 420 | return 6; |
| 421 | } else if (kTegra3_GrGLRenderer == gpu->ctxInfo().renderer() || |
| 422 | kOther_GrGLRenderer == gpu->ctxInfo().renderer()) { |
| 423 | return 1; |
| 424 | } |
| 425 | return 0; |
| 426 | } |
| 427 | |
| 428 | static void test_glprograms_native(skiatest::Reporter* reporter, GrContext* context) { |
| 429 | int maxStages = get_glprograms_max_stages(context); |
| 430 | if (maxStages == 0) { |
| 431 | return; |
| 432 | } |
| 433 | REPORTER_ASSERT(reporter, GrDrawingManager::ProgramUnitTest(context, maxStages)); |
| 434 | } |
| 435 | |
| 436 | static void test_glprograms_other_contexts(skiatest::Reporter* reporter, GrContext* context) { |
| 437 | int maxStages = get_glprograms_max_stages(context); |
| 438 | #ifdef SK_BUILD_FOR_WIN |
| 439 | // Some long shaders run out of temporary registers in the D3D compiler on ANGLE and |
| 440 | // command buffer. |
| 441 | maxStages = SkTMin(maxStages, 2); |
| 442 | #endif |
| 443 | if (maxStages == 0) { |
| 444 | return; |
| 445 | } |
| 446 | REPORTER_ASSERT(reporter, GrDrawingManager::ProgramUnitTest(context, maxStages)); |
| 447 | } |
| 448 | |
| 449 | DEF_GPUTEST(GLPrograms, reporter, /*factory*/) { |
bsalomon | 3318ee7 | 2015-03-16 11:56:29 -0700 | [diff] [blame] | 450 | // Set a locale that would cause shader compilation to fail because of , as decimal separator. |
| 451 | // skbug 3330 |
| 452 | #ifdef SK_BUILD_FOR_WIN |
| 453 | GrAutoLocaleSetter als("sv-SE"); |
| 454 | #else |
| 455 | GrAutoLocaleSetter als("sv_SE.UTF-8"); |
| 456 | #endif |
| 457 | |
joshualitt | 6c89110 | 2015-05-13 08:51:49 -0700 | [diff] [blame] | 458 | // We suppress prints to avoid spew |
bsalomon | 682c269 | 2015-05-22 14:01:46 -0700 | [diff] [blame] | 459 | GrContextOptions opts; |
joshualitt | 6c89110 | 2015-05-13 08:51:49 -0700 | [diff] [blame] | 460 | opts.fSuppressPrints = true; |
| 461 | GrContextFactory debugFactory(opts); |
kkinnunen | 3e980c3 | 2015-12-23 01:33:00 -0800 | [diff] [blame] | 462 | skiatest::RunWithGPUTestContexts(test_glprograms_native, skiatest::kNative_GPUTestContexts, |
| 463 | reporter, &debugFactory); |
| 464 | skiatest::RunWithGPUTestContexts(test_glprograms_other_contexts, |
| 465 | skiatest::kOther_GPUTestContexts, reporter, &debugFactory); |
bsalomon@google.com | a8e686e | 2011-08-16 15:45:58 +0000 | [diff] [blame] | 466 | } |
| 467 | |
bsalomon@google.com | cf8fb1f | 2012-08-02 14:03:32 +0000 | [diff] [blame] | 468 | #endif |