blob: 9fa8dafda61f9bd9ab0d83d0622a9f2c5d093474 [file] [log] [blame]
bsalomon@google.coma8e686e2011-08-16 15:45:58 +00001
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.comd4726202012-08-03 14:34:46 +00009// This is a GPU-backend specific test. It relies on static intializers to work
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +000010
bsalomon@google.com2a48c3a2012-08-03 14:54:45 +000011#include "SkTypes.h"
12
13#if SK_SUPPORT_GPU && SK_ALLOW_STATIC_GLOBAL_INITIALIZERS
14
bsalomon6f7f2012015-03-16 14:00:52 -070015#include "GrAutoLocaleSetter.h"
joshualitt6c891102015-05-13 08:51:49 -070016#include "GrBatchTest.h"
bsalomon@google.com67b915d2013-02-04 16:13:32 +000017#include "GrContextFactory.h"
robertphillipsa13e2022015-11-11 12:01:09 -080018#include "GrDrawingManager.h"
egdaniel605dd0f2014-11-12 08:35:25 -080019#include "GrInvariantOutput.h"
egdaniel8dd688b2015-01-22 10:16:09 -080020#include "GrPipeline.h"
bsalomon4061b122015-05-29 10:26:19 -070021#include "GrResourceProvider.h"
joshualitt2c93efe2014-11-06 12:57:13 -080022#include "GrTest.h"
egdaniel95131432014-12-09 11:15:43 -080023#include "GrXferProcessor.h"
bsalomon@google.com2db3ded2013-05-22 14:34:04 +000024#include "SkChecksum.h"
tfarina@chromium.org223137f2012-11-21 22:38:36 +000025#include "SkRandom.h"
bsalomon@google.comc3841b92012-08-02 18:11:43 +000026#include "Test.h"
joshualitt74417822015-08-07 11:42:16 -070027
bsalomon16b99132015-08-13 14:55:50 -070028#include "batches/GrDrawBatch.h"
joshualitt74417822015-08-07 11:42:16 -070029
joshualitt2c93efe2014-11-06 12:57:13 -080030#include "effects/GrConfigConversionEffect.h"
egdaniel95131432014-12-09 11:15:43 -080031#include "effects/GrPorterDuffXferProcessor.h"
wangyix059dffa2015-09-10 06:57:05 -070032#include "effects/GrXfermodeFragmentProcessor.h"
joshualitt74417822015-08-07 11:42:16 -070033
jvanverth39edf762014-12-22 11:44:19 -080034#include "gl/GrGLGpu.h"
egdaniel64c47282015-11-13 06:54:19 -080035#include "glsl/GrGLSLFragmentProcessor.h"
egdaniel2d721d32015-11-11 13:06:05 -080036#include "glsl/GrGLSLFragmentShaderBuilder.h"
37#include "glsl/GrGLSLProgramBuilder.h"
bsalomon@google.comc3841b92012-08-02 18:11:43 +000038
joshualitt65171342014-10-09 07:25:36 -070039/*
bsalomon98b33eb2014-10-15 11:05:26 -070040 * A dummy processor which just tries to insert a massive key and verify that it can retrieve the
joshualitt65171342014-10-09 07:25:36 -070041 * whole thing correctly
42 */
43static const uint32_t kMaxKeySize = 1024;
44
egdaniel64c47282015-11-13 06:54:19 -080045class GLBigKeyProcessor : public GrGLSLFragmentProcessor {
joshualitt65171342014-10-09 07:25:36 -070046public:
joshualitteb2a6762014-12-04 11:35:33 -080047 GLBigKeyProcessor(const GrProcessor&) {}
joshualittd9097592014-10-07 08:37:36 -070048
wangyix7c157a92015-07-22 15:08:53 -070049 virtual void emitCode(EmitArgs& args) override {
joshualitt6c891102015-05-13 08:51:49 -070050 // pass through
egdaniel4ca2e602015-11-18 08:01:26 -080051 GrGLSLFragmentBuilder* fragBuilder = args.fFragBuilder;
bsalomonb5b60322015-09-14 12:26:33 -070052 if (args.fInputColor) {
egdaniel4ca2e602015-11-18 08:01:26 -080053 fragBuilder->codeAppendf("%s = %s;\n", args.fOutputColor, args.fInputColor);
bsalomonb5b60322015-09-14 12:26:33 -070054 } else {
egdaniel4ca2e602015-11-18 08:01:26 -080055 fragBuilder->codeAppendf("%s = vec4(1.0);\n", args.fOutputColor);
bsalomonb5b60322015-09-14 12:26:33 -070056 }
joshualitt6c891102015-05-13 08:51:49 -070057 }
joshualitt65171342014-10-09 07:25:36 -070058
jvanverthcfc18862015-04-28 08:48:20 -070059 static void GenKey(const GrProcessor& processor, const GrGLSLCaps&, GrProcessorKeyBuilder* b) {
joshualitt65171342014-10-09 07:25:36 -070060 for (uint32_t i = 0; i < kMaxKeySize; i++) {
61 b->add32(i);
joshualittd9097592014-10-07 08:37:36 -070062 }
joshualittd9097592014-10-07 08:37:36 -070063 }
64
joshualitt65171342014-10-09 07:25:36 -070065private:
egdaniel64c47282015-11-13 06:54:19 -080066 typedef GrGLSLFragmentProcessor INHERITED;
joshualitt65171342014-10-09 07:25:36 -070067};
68
joshualitteb2a6762014-12-04 11:35:33 -080069class BigKeyProcessor : public GrFragmentProcessor {
70public:
71 static GrFragmentProcessor* Create() {
bsalomon02141732015-10-21 06:57:30 -070072 return new BigKeyProcessor;
joshualitteb2a6762014-12-04 11:35:33 -080073 }
74
mtklein36352bf2015-03-25 18:17:31 -070075 const char* name() const override { return "Big Ole Key"; }
joshualitteb2a6762014-12-04 11:35:33 -080076
egdaniel57d3b032015-11-13 11:57:27 -080077 GrGLSLFragmentProcessor* onCreateGLSLInstance() const override {
halcanary385fe4d2015-08-26 13:07:48 -070078 return new GLBigKeyProcessor(*this);
joshualitteb2a6762014-12-04 11:35:33 -080079 }
80
81private:
82 BigKeyProcessor() {
83 this->initClassID<BigKeyProcessor>();
84 }
egdaniel57d3b032015-11-13 11:57:27 -080085 virtual void onGetGLSLProcessorKey(const GrGLSLCaps& caps,
86 GrProcessorKeyBuilder* b) const override {
wangyix4b3050b2015-08-04 07:59:37 -070087 GLBigKeyProcessor::GenKey(*this, caps, b);
88 }
mtklein36352bf2015-03-25 18:17:31 -070089 bool onIsEqual(const GrFragmentProcessor&) const override { return true; }
90 void onComputeInvariantOutput(GrInvariantOutput* inout) const override { }
joshualitteb2a6762014-12-04 11:35:33 -080091
92 GR_DECLARE_FRAGMENT_PROCESSOR_TEST;
93
94 typedef GrFragmentProcessor INHERITED;
95};
96
97GR_DEFINE_FRAGMENT_PROCESSOR_TEST(BigKeyProcessor);
98
bsalomonc21b09e2015-08-28 18:46:56 -070099const GrFragmentProcessor* BigKeyProcessor::TestCreate(GrProcessorTestData*) {
joshualitteb2a6762014-12-04 11:35:33 -0800100 return BigKeyProcessor::Create();
101}
102
bsalomonb5b60322015-09-14 12:26:33 -0700103//////////////////////////////////////////////////////////////////////////////
104
105class BlockInputFragmentProcessor : public GrFragmentProcessor {
106public:
107 static GrFragmentProcessor* Create(const GrFragmentProcessor* fp) {
108 return new BlockInputFragmentProcessor(fp);
109 }
110
111 const char* name() const override { return "Block Input"; }
112
egdaniel57d3b032015-11-13 11:57:27 -0800113 GrGLSLFragmentProcessor* onCreateGLSLInstance() const override { return new GLFP; }
bsalomonb5b60322015-09-14 12:26:33 -0700114
115private:
egdaniel64c47282015-11-13 06:54:19 -0800116 class GLFP : public GrGLSLFragmentProcessor {
bsalomonb5b60322015-09-14 12:26:33 -0700117 public:
118 void emitCode(EmitArgs& args) override {
bsalomon38ddbad2015-09-24 06:00:00 -0700119 this->emitChild(0, nullptr, args);
bsalomonb5b60322015-09-14 12:26:33 -0700120 }
121
122 private:
egdaniel64c47282015-11-13 06:54:19 -0800123 typedef GrGLSLFragmentProcessor INHERITED;
bsalomonb5b60322015-09-14 12:26:33 -0700124 };
125
126 BlockInputFragmentProcessor(const GrFragmentProcessor* child) {
127 this->initClassID<BlockInputFragmentProcessor>();
128 this->registerChildProcessor(child);
129 }
130
egdaniel57d3b032015-11-13 11:57:27 -0800131 void onGetGLSLProcessorKey(const GrGLSLCaps& caps, GrProcessorKeyBuilder* b) const override {}
bsalomonb5b60322015-09-14 12:26:33 -0700132
133 bool onIsEqual(const GrFragmentProcessor&) const override { return true; }
134
135 void onComputeInvariantOutput(GrInvariantOutput* inout) const override {
136 inout->setToOther(kRGBA_GrColorComponentFlags, GrColor_WHITE,
137 GrInvariantOutput::kWillNot_ReadInput);
138 this->childProcessor(0).computeInvariantOutput(inout);
139 }
140
141 typedef GrFragmentProcessor INHERITED;
142};
143
144//////////////////////////////////////////////////////////////////////////////
145
joshualitt65171342014-10-09 07:25:36 -0700146/*
147 * Begin test code
148 */
149static const int kRenderTargetHeight = 1;
150static const int kRenderTargetWidth = 1;
151
bsalomon4061b122015-05-29 10:26:19 -0700152static GrRenderTarget* random_render_target(GrTextureProvider* textureProvider, SkRandom* random,
bsalomon4b91f762015-05-19 09:29:46 -0700153 const GrCaps* caps) {
joshualitt65171342014-10-09 07:25:36 -0700154 // setup render target
155 GrTextureParams params;
bsalomonf2703d82014-10-28 14:33:06 -0700156 GrSurfaceDesc texDesc;
joshualitt65171342014-10-09 07:25:36 -0700157 texDesc.fWidth = kRenderTargetWidth;
158 texDesc.fHeight = kRenderTargetHeight;
bsalomonf2703d82014-10-28 14:33:06 -0700159 texDesc.fFlags = kRenderTarget_GrSurfaceFlag;
joshualitt65171342014-10-09 07:25:36 -0700160 texDesc.fConfig = kRGBA_8888_GrPixelConfig;
161 texDesc.fOrigin = random->nextBool() == true ? kTopLeft_GrSurfaceOrigin :
162 kBottomLeft_GrSurfaceOrigin;
joshualitt15732062015-05-13 12:15:14 -0700163 texDesc.fSampleCnt = random->nextBool() == true ? SkTMin(4, caps->maxSampleCount()) : 0;
joshualitt6c891102015-05-13 08:51:49 -0700164
bsalomon8718aaf2015-02-19 07:24:21 -0800165 GrUniqueKey key;
166 static const GrUniqueKey::Domain kDomain = GrUniqueKey::GenerateDomain();
joshualitt6c891102015-05-13 08:51:49 -0700167 GrUniqueKey::Builder builder(&key, kDomain, 2);
bsalomon24db3b12015-01-23 04:24:04 -0800168 builder[0] = texDesc.fOrigin;
joshualitt6c891102015-05-13 08:51:49 -0700169 builder[1] = texDesc.fSampleCnt;
bsalomon24db3b12015-01-23 04:24:04 -0800170 builder.finish();
joshualitt65171342014-10-09 07:25:36 -0700171
bsalomon4061b122015-05-29 10:26:19 -0700172 GrTexture* texture = textureProvider->findAndRefTextureByUniqueKey(key);
bsalomond27726e2014-10-12 05:40:00 -0700173 if (!texture) {
bsalomon4061b122015-05-29 10:26:19 -0700174 texture = textureProvider->createTexture(texDesc, true);
bsalomon37f9a262015-02-02 13:00:10 -0800175 if (texture) {
bsalomon4061b122015-05-29 10:26:19 -0700176 textureProvider->assignUniqueKeyToTexture(key, texture);
joshualittd9097592014-10-07 08:37:36 -0700177 }
joshualittd9097592014-10-07 08:37:36 -0700178 }
halcanary96fcdcc2015-08-27 07:41:13 -0700179 return texture ? texture->asRenderTarget() : nullptr;
bsalomon@google.com91207482013-02-12 21:45:24 +0000180}
181
joshualitt0067ff52015-07-08 14:26:19 -0700182static void set_random_xpf(GrPipelineBuilder* pipelineBuilder, GrProcessorTestData* d) {
bsalomonb5b60322015-09-14 12:26:33 -0700183 SkAutoTUnref<const GrXPFactory> xpf(GrProcessorTestFactory<GrXPFactory>::Create(d));
egdanielc2304142014-12-11 13:15:13 -0800184 SkASSERT(xpf);
egdaniel8dd688b2015-01-22 10:16:09 -0800185 pipelineBuilder->setXPFactory(xpf.get());
egdanielc2304142014-12-11 13:15:13 -0800186}
187
wangyix059dffa2015-09-10 06:57:05 -0700188static const GrFragmentProcessor* create_random_proc_tree(GrProcessorTestData* d,
189 int minLevels, int maxLevels) {
190 SkASSERT(1 <= minLevels);
191 SkASSERT(minLevels <= maxLevels);
192
193 // Return a leaf node if maxLevels is 1 or if we randomly chose to terminate.
194 // If returning a leaf node, make sure that it doesn't have children (e.g. another
195 // GrComposeEffect)
196 const float terminateProbability = 0.3f;
197 if (1 == minLevels) {
198 bool terminate = (1 == maxLevels) || (d->fRandom->nextF() < terminateProbability);
199 if (terminate) {
200 const GrFragmentProcessor* fp;
201 while (true) {
bsalomonb5b60322015-09-14 12:26:33 -0700202 fp = GrProcessorTestFactory<GrFragmentProcessor>::Create(d);
wangyix059dffa2015-09-10 06:57:05 -0700203 SkASSERT(fp);
204 if (0 == fp->numChildProcessors()) {
205 break;
206 }
207 fp->unref();
208 }
209 return fp;
210 }
211 }
212 // If we didn't terminate, choose either the left or right subtree to fulfill
213 // the minLevels requirement of this tree; the other child can have as few levels as it wants.
214 // Also choose a random xfer mode that's supported by CreateFrom2Procs().
215 if (minLevels > 1) {
216 --minLevels;
217 }
218 SkAutoTUnref<const GrFragmentProcessor> minLevelsChild(create_random_proc_tree(d, minLevels,
219 maxLevels - 1));
220 SkAutoTUnref<const GrFragmentProcessor> otherChild(create_random_proc_tree(d, 1,
221 maxLevels - 1));
222 SkXfermode::Mode mode = static_cast<SkXfermode::Mode>(d->fRandom->nextRangeU(0,
223 SkXfermode::kLastCoeffMode));
224 const GrFragmentProcessor* fp;
225 if (d->fRandom->nextF() < 0.5f) {
226 fp = GrXfermodeFragmentProcessor::CreateFromTwoProcessors(minLevelsChild, otherChild, mode);
227 SkASSERT(fp);
228 } else {
229 fp = GrXfermodeFragmentProcessor::CreateFromTwoProcessors(otherChild, minLevelsChild, mode);
230 SkASSERT(fp);
231 }
232 return fp;
233}
234
joshualitt0067ff52015-07-08 14:26:19 -0700235static void set_random_color_coverage_stages(GrPipelineBuilder* pipelineBuilder,
236 GrProcessorTestData* d, int maxStages) {
wangyix059dffa2015-09-10 06:57:05 -0700237 // Randomly choose to either create a linear pipeline of procs or create one proc tree
238 const float procTreeProbability = 0.5f;
239 if (d->fRandom->nextF() < procTreeProbability) {
240 // A full tree with 5 levels (31 nodes) may exceed the max allowed length of the gl
241 // processor key; maxTreeLevels should be a number from 1 to 4 inclusive.
242 const int maxTreeLevels = 4;
bsalomonae59b772014-11-19 08:23:49 -0800243 SkAutoTUnref<const GrFragmentProcessor> fp(
wangyix059dffa2015-09-10 06:57:05 -0700244 create_random_proc_tree(d, 2, maxTreeLevels));
245 pipelineBuilder->addColorFragmentProcessor(fp);
246 } else {
247 int numProcs = d->fRandom->nextULessThan(maxStages + 1);
248 int numColorProcs = d->fRandom->nextULessThan(numProcs + 1);
joshualitt65171342014-10-09 07:25:36 -0700249
wangyix059dffa2015-09-10 06:57:05 -0700250 for (int s = 0; s < numProcs;) {
251 SkAutoTUnref<const GrFragmentProcessor> fp(
bsalomonae4738f2015-09-15 15:33:27 -0700252 GrProcessorTestFactory<GrFragmentProcessor>::Create(d));
wangyix059dffa2015-09-10 06:57:05 -0700253 SkASSERT(fp);
254
255 // finally add the stage to the correct pipeline in the drawstate
256 if (s < numColorProcs) {
257 pipelineBuilder->addColorFragmentProcessor(fp);
258 } else {
259 pipelineBuilder->addCoverageFragmentProcessor(fp);
260 }
261 ++s;
joshualitt65171342014-10-09 07:25:36 -0700262 }
joshualitt65171342014-10-09 07:25:36 -0700263 }
264}
265
egdaniel8dd688b2015-01-22 10:16:09 -0800266static void set_random_state(GrPipelineBuilder* pipelineBuilder, SkRandom* random) {
joshualitt65171342014-10-09 07:25:36 -0700267 int state = 0;
bsalomond79c5492015-04-27 10:07:04 -0700268 for (int i = 1; i <= GrPipelineBuilder::kLast_Flag; i <<= 1) {
joshualitt65171342014-10-09 07:25:36 -0700269 state |= random->nextBool() * i;
270 }
joshualitt6c891102015-05-13 08:51:49 -0700271
272 // If we don't have an MSAA rendertarget then we have to disable useHWAA
273 if ((state | GrPipelineBuilder::kHWAntialias_Flag) &&
vbuzinovdded6962015-06-12 08:59:45 -0700274 !pipelineBuilder->getRenderTarget()->isUnifiedMultisampled()) {
joshualitt6c891102015-05-13 08:51:49 -0700275 state &= ~GrPipelineBuilder::kHWAntialias_Flag;
276 }
egdaniel8dd688b2015-01-22 10:16:09 -0800277 pipelineBuilder->enableState(state);
joshualitt65171342014-10-09 07:25:36 -0700278}
279
joshualitt65171342014-10-09 07:25:36 -0700280// right now, the only thing we seem to care about in drawState's stencil is 'doesWrite()'
egdaniel8dd688b2015-01-22 10:16:09 -0800281static void set_random_stencil(GrPipelineBuilder* pipelineBuilder, SkRandom* random) {
joshualitt65171342014-10-09 07:25:36 -0700282 GR_STATIC_CONST_SAME_STENCIL(kDoesWriteStencil,
283 kReplace_StencilOp,
284 kReplace_StencilOp,
285 kAlways_StencilFunc,
286 0xffff,
287 0xffff,
288 0xffff);
289 GR_STATIC_CONST_SAME_STENCIL(kDoesNotWriteStencil,
290 kKeep_StencilOp,
291 kKeep_StencilOp,
292 kNever_StencilFunc,
293 0xffff,
294 0xffff,
295 0xffff);
296
297 if (random->nextBool()) {
egdaniel8dd688b2015-01-22 10:16:09 -0800298 pipelineBuilder->setStencil(kDoesWriteStencil);
joshualitt65171342014-10-09 07:25:36 -0700299 } else {
egdaniel8dd688b2015-01-22 10:16:09 -0800300 pipelineBuilder->setStencil(kDoesNotWriteStencil);
joshualitt65171342014-10-09 07:25:36 -0700301 }
302}
joshualitt249af152014-09-15 11:41:13 -0700303
robertphillips0dfa62c2015-11-16 06:23:31 -0800304bool GrDrawingManager::ProgramUnitTest(GrContext* context, int maxStages) {
robertphillipsa13e2022015-11-11 12:01:09 -0800305 GrDrawingManager* drawingManager = context->drawingManager();
306
joshualitt65171342014-10-09 07:25:36 -0700307 // setup dummy textures
bsalomonf2703d82014-10-28 14:33:06 -0700308 GrSurfaceDesc dummyDesc;
bsalomonbea01502015-07-16 10:00:28 -0700309 dummyDesc.fFlags = kRenderTarget_GrSurfaceFlag;
bsalomon@google.comfec0bc32013-02-07 14:43:04 +0000310 dummyDesc.fConfig = kSkia8888_GrPixelConfig;
bsalomon@google.comd4726202012-08-03 14:34:46 +0000311 dummyDesc.fWidth = 34;
312 dummyDesc.fHeight = 18;
bsalomon4061b122015-05-29 10:26:19 -0700313 SkAutoTUnref<GrTexture> dummyTexture1(
halcanary96fcdcc2015-08-27 07:41:13 -0700314 context->textureProvider()->createTexture(dummyDesc, false, nullptr, 0));
bsalomonf2703d82014-10-28 14:33:06 -0700315 dummyDesc.fFlags = kNone_GrSurfaceFlags;
bsalomon@google.comd4726202012-08-03 14:34:46 +0000316 dummyDesc.fConfig = kAlpha_8_GrPixelConfig;
317 dummyDesc.fWidth = 16;
318 dummyDesc.fHeight = 22;
bsalomon4061b122015-05-29 10:26:19 -0700319 SkAutoTUnref<GrTexture> dummyTexture2(
halcanary96fcdcc2015-08-27 07:41:13 -0700320 context->textureProvider()->createTexture(dummyDesc, false, nullptr, 0));
bsalomon@google.comd4726202012-08-03 14:34:46 +0000321
bsalomone904c092014-07-17 10:50:59 -0700322 if (!dummyTexture1 || ! dummyTexture2) {
joshualitt65171342014-10-09 07:25:36 -0700323 SkDebugf("Could not allocate dummy textures");
bsalomone904c092014-07-17 10:50:59 -0700324 return false;
325 }
326
joshualitt65171342014-10-09 07:25:36 -0700327 GrTexture* dummyTextures[] = {dummyTexture1.get(), dummyTexture2.get()};
328
joshualitt54e0c122014-11-19 09:38:51 -0800329 // dummy scissor state
bsalomon3e791242014-12-17 13:43:13 -0800330 GrScissorState scissor;
joshualitt54e0c122014-11-19 09:38:51 -0800331
joshualitt6c891102015-05-13 08:51:49 -0700332 // wide open clip
joshualitt44701df2015-02-23 14:44:57 -0800333 GrClip clip;
bsalomon@google.comc3841b92012-08-02 18:11:43 +0000334
commit-bot@chromium.orge0e7cfe2013-09-09 20:09:12 +0000335 SkRandom random;
joshualitt6c891102015-05-13 08:51:49 -0700336 static const int NUM_TESTS = 2048;
337 for (int t = 0; t < NUM_TESTS; t++) {
joshualitt65171342014-10-09 07:25:36 -0700338 // setup random render target(can fail)
bsalomon4061b122015-05-29 10:26:19 -0700339 SkAutoTUnref<GrRenderTarget> rt(random_render_target(
robertphillipsa13e2022015-11-11 12:01:09 -0800340 context->textureProvider(), &random, context->caps()));
joshualitt2c93efe2014-11-06 12:57:13 -0800341 if (!rt.get()) {
joshualitt65171342014-10-09 07:25:36 -0700342 SkDebugf("Could not allocate render target");
343 return false;
bsalomon@google.comc3841b92012-08-02 18:11:43 +0000344 }
bsalomon@google.comc3841b92012-08-02 18:11:43 +0000345
egdaniel8dd688b2015-01-22 10:16:09 -0800346 GrPipelineBuilder pipelineBuilder;
347 pipelineBuilder.setRenderTarget(rt.get());
joshualitt44701df2015-02-23 14:44:57 -0800348 pipelineBuilder.setClip(clip);
bsalomon@google.comc3841b92012-08-02 18:11:43 +0000349
bsalomonabd30f52015-08-13 13:34:48 -0700350 SkAutoTUnref<GrDrawBatch> batch(GrRandomDrawBatch(&random, context));
joshualitt6c891102015-05-13 08:51:49 -0700351 SkASSERT(batch);
egdanielc0648242014-09-22 13:17:02 -0700352
cdaltonc94cd7c2015-11-12 12:11:04 -0800353 GrProcessorTestData ptd(&random, context, context->caps(), rt, dummyTextures);
joshualitt0067ff52015-07-08 14:26:19 -0700354 set_random_color_coverage_stages(&pipelineBuilder, &ptd, maxStages);
355 set_random_xpf(&pipelineBuilder, &ptd);
egdaniel8dd688b2015-01-22 10:16:09 -0800356 set_random_state(&pipelineBuilder, &random);
357 set_random_stencil(&pipelineBuilder, &random);
joshualittd9097592014-10-07 08:37:36 -0700358
robertphillips0dfa62c2015-11-16 06:23:31 -0800359 GrTestTarget tt;
robertphillips504ce5d2015-11-16 11:02:05 -0800360 context->getTestTarget(&tt, rt);
robertphillips0dfa62c2015-11-16 06:23:31 -0800361
362 tt.target()->drawBatch(pipelineBuilder, batch);
bsalomon@google.comc3841b92012-08-02 18:11:43 +0000363 }
joshualitt6c891102015-05-13 08:51:49 -0700364 // Flush everything, test passes if flush is successful(ie, no asserts are hit, no crashes)
robertphillipsa13e2022015-11-11 12:01:09 -0800365 drawingManager->flush();
bsalomonb5b60322015-09-14 12:26:33 -0700366
367 // Validate that GrFPs work correctly without an input.
368 GrSurfaceDesc rtDesc;
369 rtDesc.fWidth = kRenderTargetWidth;
370 rtDesc.fHeight = kRenderTargetHeight;
371 rtDesc.fFlags = kRenderTarget_GrSurfaceFlag;
372 rtDesc.fConfig = kRGBA_8888_GrPixelConfig;
373 SkAutoTUnref<GrRenderTarget> rt(
robertphillipsa13e2022015-11-11 12:01:09 -0800374 context->textureProvider()->createTexture(rtDesc, false)->asRenderTarget());
bsalomonb5b60322015-09-14 12:26:33 -0700375 int fpFactoryCnt = GrProcessorTestFactory<GrFragmentProcessor>::Count();
376 for (int i = 0; i < fpFactoryCnt; ++i) {
377 // Since FP factories internally randomize, call each 10 times.
378 for (int j = 0; j < 10; ++j) {
379 SkAutoTUnref<GrDrawBatch> batch(GrRandomDrawBatch(&random, context));
380 SkASSERT(batch);
cdaltonc94cd7c2015-11-12 12:11:04 -0800381 GrProcessorTestData ptd(&random, context, context->caps(), rt, dummyTextures);
bsalomonb5b60322015-09-14 12:26:33 -0700382 GrPipelineBuilder builder;
383 builder.setXPFactory(GrPorterDuffXPFactory::Create(SkXfermode::kSrc_Mode))->unref();
384 builder.setRenderTarget(rt);
385 builder.setClip(clip);
386
387 SkAutoTUnref<const GrFragmentProcessor> fp(
388 GrProcessorTestFactory<GrFragmentProcessor>::CreateIdx(i, &ptd));
389 SkAutoTUnref<const GrFragmentProcessor> blockFP(
390 BlockInputFragmentProcessor::Create(fp));
391 builder.addColorFragmentProcessor(blockFP);
392
robertphillips0dfa62c2015-11-16 06:23:31 -0800393 GrTestTarget tt;
robertphillips504ce5d2015-11-16 11:02:05 -0800394 context->getTestTarget(&tt, rt);
robertphillips0dfa62c2015-11-16 06:23:31 -0800395
396 tt.target()->drawBatch(builder, batch);
robertphillipsa13e2022015-11-11 12:01:09 -0800397 drawingManager->flush();
bsalomonb5b60322015-09-14 12:26:33 -0700398 }
399 }
400
bsalomon@google.comc3841b92012-08-02 18:11:43 +0000401 return true;
402}
bsalomon@google.coma8e686e2011-08-16 15:45:58 +0000403
tfarina@chromium.org4ee16bf2014-01-10 22:08:27 +0000404DEF_GPUTEST(GLPrograms, reporter, factory) {
bsalomon3318ee72015-03-16 11:56:29 -0700405 // Set a locale that would cause shader compilation to fail because of , as decimal separator.
406 // skbug 3330
407#ifdef SK_BUILD_FOR_WIN
408 GrAutoLocaleSetter als("sv-SE");
409#else
410 GrAutoLocaleSetter als("sv_SE.UTF-8");
411#endif
412
joshualitt6c891102015-05-13 08:51:49 -0700413 // We suppress prints to avoid spew
bsalomon682c2692015-05-22 14:01:46 -0700414 GrContextOptions opts;
joshualitt6c891102015-05-13 08:51:49 -0700415 opts.fSuppressPrints = true;
416 GrContextFactory debugFactory(opts);
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000417 for (int type = 0; type < GrContextFactory::kLastGLContextType; ++type) {
joshualitt6c891102015-05-13 08:51:49 -0700418 GrContext* context = debugFactory.get(static_cast<GrContextFactory::GLContextType>(type));
bsalomon49f085d2014-09-05 13:34:00 -0700419 if (context) {
bsalomon861e1032014-12-16 07:33:49 -0800420 GrGLGpu* gpu = static_cast<GrGLGpu*>(context->getGpu());
joshualitt9e87fa72014-10-09 13:12:35 -0700421
422 /*
423 * For the time being, we only support the test with desktop GL or for android on
424 * ARM platforms
425 * TODO When we run ES 3.00 GLSL in more places, test again
426 */
427 int maxStages;
428 if (kGL_GrGLStandard == gpu->glStandard() ||
429 kARM_GrGLVendor == gpu->ctxInfo().vendor()) {
430 maxStages = 6;
431 } else if (kTegra3_GrGLRenderer == gpu->ctxInfo().renderer() ||
432 kOther_GrGLRenderer == gpu->ctxInfo().renderer()) {
433 maxStages = 1;
434 } else {
435 return;
436 }
bsalomon@google.com042a2862013-02-04 18:39:24 +0000437#if SK_ANGLE
438 // Some long shaders run out of temporary registers in the D3D compiler on ANGLE.
439 if (type == GrContextFactory::kANGLE_GLContextType) {
egdaniel305a8892015-02-17 11:18:38 -0800440 maxStages = 2;
bsalomon@google.com042a2862013-02-04 18:39:24 +0000441 }
442#endif
hendrikw885bf092015-08-27 10:38:39 -0700443#if SK_COMMAND_BUFFER
444 // Some long shaders run out of temporary registers in the D3D compiler on ANGLE.
445 // TODO(hendrikw): This only needs to happen with the ANGLE comand buffer backend.
446 if (type == GrContextFactory::kCommandBuffer_GLContextType) {
447 maxStages = 2;
448 }
449#endif
robertphillips0dfa62c2015-11-16 06:23:31 -0800450 REPORTER_ASSERT(reporter, GrDrawingManager::ProgramUnitTest(context, maxStages));
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000451 }
452 }
bsalomon@google.coma8e686e2011-08-16 15:45:58 +0000453}
454
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000455#endif