blob: 8e7d800814446a61a9c8c4ccef128891498e5582 [file] [log] [blame]
bsalomon@google.coma8e686e2011-08-16 15:45:58 +00001/*
2 * Copyright 2011 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
bsalomon@google.comd4726202012-08-03 14:34:46 +00008// This is a GPU-backend specific test. It relies on static intializers to work
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +00009
bsalomon@google.com2a48c3a2012-08-03 14:54:45 +000010#include "SkTypes.h"
11
12#if SK_SUPPORT_GPU && SK_ALLOW_STATIC_GLOBAL_INITIALIZERS
13
bsalomon6f7f2012015-03-16 14:00:52 -070014#include "GrAutoLocaleSetter.h"
joshualitt6c891102015-05-13 08:51:49 -070015#include "GrBatchTest.h"
bsalomon@google.com67b915d2013-02-04 16:13:32 +000016#include "GrContextFactory.h"
robertphillips391395d2016-03-02 09:26:36 -080017#include "GrDrawContextPriv.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:
robertphillips9cdb9922016-02-03 12:25:40 -080047 void emitCode(EmitArgs& args) override {
joshualitt6c891102015-05-13 08:51:49 -070048 // pass through
egdaniel4ca2e602015-11-18 08:01:26 -080049 GrGLSLFragmentBuilder* fragBuilder = args.fFragBuilder;
bsalomonb5b60322015-09-14 12:26:33 -070050 if (args.fInputColor) {
egdaniel4ca2e602015-11-18 08:01:26 -080051 fragBuilder->codeAppendf("%s = %s;\n", args.fOutputColor, args.fInputColor);
bsalomonb5b60322015-09-14 12:26:33 -070052 } else {
egdaniel4ca2e602015-11-18 08:01:26 -080053 fragBuilder->codeAppendf("%s = vec4(1.0);\n", args.fOutputColor);
bsalomonb5b60322015-09-14 12:26:33 -070054 }
joshualitt6c891102015-05-13 08:51:49 -070055 }
joshualitt65171342014-10-09 07:25:36 -070056
jvanverthcfc18862015-04-28 08:48:20 -070057 static void GenKey(const GrProcessor& processor, const GrGLSLCaps&, GrProcessorKeyBuilder* b) {
joshualitt65171342014-10-09 07:25:36 -070058 for (uint32_t i = 0; i < kMaxKeySize; i++) {
59 b->add32(i);
joshualittd9097592014-10-07 08:37:36 -070060 }
joshualittd9097592014-10-07 08:37:36 -070061 }
62
joshualitt65171342014-10-09 07:25:36 -070063private:
egdaniel64c47282015-11-13 06:54:19 -080064 typedef GrGLSLFragmentProcessor INHERITED;
joshualitt65171342014-10-09 07:25:36 -070065};
66
joshualitteb2a6762014-12-04 11:35:33 -080067class BigKeyProcessor : public GrFragmentProcessor {
68public:
69 static GrFragmentProcessor* Create() {
bsalomon02141732015-10-21 06:57:30 -070070 return new BigKeyProcessor;
joshualitteb2a6762014-12-04 11:35:33 -080071 }
72
mtklein36352bf2015-03-25 18:17:31 -070073 const char* name() const override { return "Big Ole Key"; }
joshualitteb2a6762014-12-04 11:35:33 -080074
egdaniel57d3b032015-11-13 11:57:27 -080075 GrGLSLFragmentProcessor* onCreateGLSLInstance() const override {
robertphillips9cdb9922016-02-03 12:25:40 -080076 return new GLBigKeyProcessor;
joshualitteb2a6762014-12-04 11:35:33 -080077 }
78
79private:
80 BigKeyProcessor() {
81 this->initClassID<BigKeyProcessor>();
82 }
egdaniel57d3b032015-11-13 11:57:27 -080083 virtual void onGetGLSLProcessorKey(const GrGLSLCaps& caps,
84 GrProcessorKeyBuilder* b) const override {
wangyix4b3050b2015-08-04 07:59:37 -070085 GLBigKeyProcessor::GenKey(*this, caps, b);
86 }
mtklein36352bf2015-03-25 18:17:31 -070087 bool onIsEqual(const GrFragmentProcessor&) const override { return true; }
88 void onComputeInvariantOutput(GrInvariantOutput* inout) const override { }
joshualitteb2a6762014-12-04 11:35:33 -080089
90 GR_DECLARE_FRAGMENT_PROCESSOR_TEST;
91
92 typedef GrFragmentProcessor INHERITED;
93};
94
95GR_DEFINE_FRAGMENT_PROCESSOR_TEST(BigKeyProcessor);
96
bsalomonc21b09e2015-08-28 18:46:56 -070097const GrFragmentProcessor* BigKeyProcessor::TestCreate(GrProcessorTestData*) {
joshualitteb2a6762014-12-04 11:35:33 -080098 return BigKeyProcessor::Create();
99}
100
bsalomonb5b60322015-09-14 12:26:33 -0700101//////////////////////////////////////////////////////////////////////////////
102
103class BlockInputFragmentProcessor : public GrFragmentProcessor {
104public:
105 static GrFragmentProcessor* Create(const GrFragmentProcessor* fp) {
106 return new BlockInputFragmentProcessor(fp);
107 }
108
109 const char* name() const override { return "Block Input"; }
110
egdaniel57d3b032015-11-13 11:57:27 -0800111 GrGLSLFragmentProcessor* onCreateGLSLInstance() const override { return new GLFP; }
bsalomonb5b60322015-09-14 12:26:33 -0700112
113private:
egdaniel64c47282015-11-13 06:54:19 -0800114 class GLFP : public GrGLSLFragmentProcessor {
bsalomonb5b60322015-09-14 12:26:33 -0700115 public:
116 void emitCode(EmitArgs& args) override {
bsalomon38ddbad2015-09-24 06:00:00 -0700117 this->emitChild(0, nullptr, args);
bsalomonb5b60322015-09-14 12:26:33 -0700118 }
119
120 private:
egdaniel64c47282015-11-13 06:54:19 -0800121 typedef GrGLSLFragmentProcessor INHERITED;
bsalomonb5b60322015-09-14 12:26:33 -0700122 };
123
124 BlockInputFragmentProcessor(const GrFragmentProcessor* child) {
125 this->initClassID<BlockInputFragmentProcessor>();
126 this->registerChildProcessor(child);
127 }
128
egdaniel57d3b032015-11-13 11:57:27 -0800129 void onGetGLSLProcessorKey(const GrGLSLCaps& caps, GrProcessorKeyBuilder* b) const override {}
bsalomonb5b60322015-09-14 12:26:33 -0700130
131 bool onIsEqual(const GrFragmentProcessor&) const override { return true; }
132
133 void onComputeInvariantOutput(GrInvariantOutput* inout) const override {
134 inout->setToOther(kRGBA_GrColorComponentFlags, GrColor_WHITE,
135 GrInvariantOutput::kWillNot_ReadInput);
136 this->childProcessor(0).computeInvariantOutput(inout);
137 }
138
139 typedef GrFragmentProcessor INHERITED;
140};
141
142//////////////////////////////////////////////////////////////////////////////
143
joshualitt65171342014-10-09 07:25:36 -0700144/*
145 * Begin test code
146 */
147static const int kRenderTargetHeight = 1;
148static const int kRenderTargetWidth = 1;
149
bsalomon4061b122015-05-29 10:26:19 -0700150static GrRenderTarget* random_render_target(GrTextureProvider* textureProvider, SkRandom* random,
bsalomon4b91f762015-05-19 09:29:46 -0700151 const GrCaps* caps) {
joshualitt65171342014-10-09 07:25:36 -0700152 // setup render target
153 GrTextureParams params;
bsalomonf2703d82014-10-28 14:33:06 -0700154 GrSurfaceDesc texDesc;
joshualitt65171342014-10-09 07:25:36 -0700155 texDesc.fWidth = kRenderTargetWidth;
156 texDesc.fHeight = kRenderTargetHeight;
bsalomonf2703d82014-10-28 14:33:06 -0700157 texDesc.fFlags = kRenderTarget_GrSurfaceFlag;
joshualitt65171342014-10-09 07:25:36 -0700158 texDesc.fConfig = kRGBA_8888_GrPixelConfig;
159 texDesc.fOrigin = random->nextBool() == true ? kTopLeft_GrSurfaceOrigin :
160 kBottomLeft_GrSurfaceOrigin;
joshualitt15732062015-05-13 12:15:14 -0700161 texDesc.fSampleCnt = random->nextBool() == true ? SkTMin(4, caps->maxSampleCount()) : 0;
joshualitt6c891102015-05-13 08:51:49 -0700162
bsalomon8718aaf2015-02-19 07:24:21 -0800163 GrUniqueKey key;
164 static const GrUniqueKey::Domain kDomain = GrUniqueKey::GenerateDomain();
joshualitt6c891102015-05-13 08:51:49 -0700165 GrUniqueKey::Builder builder(&key, kDomain, 2);
bsalomon24db3b12015-01-23 04:24:04 -0800166 builder[0] = texDesc.fOrigin;
joshualitt6c891102015-05-13 08:51:49 -0700167 builder[1] = texDesc.fSampleCnt;
bsalomon24db3b12015-01-23 04:24:04 -0800168 builder.finish();
joshualitt65171342014-10-09 07:25:36 -0700169
bsalomon4061b122015-05-29 10:26:19 -0700170 GrTexture* texture = textureProvider->findAndRefTextureByUniqueKey(key);
bsalomond27726e2014-10-12 05:40:00 -0700171 if (!texture) {
bsalomon5ec26ae2016-02-25 08:33:02 -0800172 texture = textureProvider->createTexture(texDesc, SkBudgeted::kYes);
bsalomon37f9a262015-02-02 13:00:10 -0800173 if (texture) {
bsalomon4061b122015-05-29 10:26:19 -0700174 textureProvider->assignUniqueKeyToTexture(key, texture);
joshualittd9097592014-10-07 08:37:36 -0700175 }
joshualittd9097592014-10-07 08:37:36 -0700176 }
halcanary96fcdcc2015-08-27 07:41:13 -0700177 return texture ? texture->asRenderTarget() : nullptr;
bsalomon@google.com91207482013-02-12 21:45:24 +0000178}
179
joshualitt0067ff52015-07-08 14:26:19 -0700180static void set_random_xpf(GrPipelineBuilder* pipelineBuilder, GrProcessorTestData* d) {
bsalomonb5b60322015-09-14 12:26:33 -0700181 SkAutoTUnref<const GrXPFactory> xpf(GrProcessorTestFactory<GrXPFactory>::Create(d));
egdanielc2304142014-12-11 13:15:13 -0800182 SkASSERT(xpf);
egdaniel8dd688b2015-01-22 10:16:09 -0800183 pipelineBuilder->setXPFactory(xpf.get());
egdanielc2304142014-12-11 13:15:13 -0800184}
185
wangyix059dffa2015-09-10 06:57:05 -0700186static const GrFragmentProcessor* create_random_proc_tree(GrProcessorTestData* d,
187 int minLevels, int maxLevels) {
188 SkASSERT(1 <= minLevels);
189 SkASSERT(minLevels <= maxLevels);
190
191 // Return a leaf node if maxLevels is 1 or if we randomly chose to terminate.
192 // If returning a leaf node, make sure that it doesn't have children (e.g. another
193 // GrComposeEffect)
194 const float terminateProbability = 0.3f;
195 if (1 == minLevels) {
196 bool terminate = (1 == maxLevels) || (d->fRandom->nextF() < terminateProbability);
197 if (terminate) {
198 const GrFragmentProcessor* fp;
199 while (true) {
bsalomonb5b60322015-09-14 12:26:33 -0700200 fp = GrProcessorTestFactory<GrFragmentProcessor>::Create(d);
wangyix059dffa2015-09-10 06:57:05 -0700201 SkASSERT(fp);
202 if (0 == fp->numChildProcessors()) {
203 break;
204 }
205 fp->unref();
206 }
207 return fp;
208 }
209 }
210 // If we didn't terminate, choose either the left or right subtree to fulfill
211 // the minLevels requirement of this tree; the other child can have as few levels as it wants.
212 // Also choose a random xfer mode that's supported by CreateFrom2Procs().
213 if (minLevels > 1) {
214 --minLevels;
215 }
216 SkAutoTUnref<const GrFragmentProcessor> minLevelsChild(create_random_proc_tree(d, minLevels,
217 maxLevels - 1));
218 SkAutoTUnref<const GrFragmentProcessor> otherChild(create_random_proc_tree(d, 1,
219 maxLevels - 1));
220 SkXfermode::Mode mode = static_cast<SkXfermode::Mode>(d->fRandom->nextRangeU(0,
221 SkXfermode::kLastCoeffMode));
222 const GrFragmentProcessor* fp;
223 if (d->fRandom->nextF() < 0.5f) {
224 fp = GrXfermodeFragmentProcessor::CreateFromTwoProcessors(minLevelsChild, otherChild, mode);
225 SkASSERT(fp);
226 } else {
227 fp = GrXfermodeFragmentProcessor::CreateFromTwoProcessors(otherChild, minLevelsChild, mode);
228 SkASSERT(fp);
229 }
230 return fp;
231}
232
joshualitt0067ff52015-07-08 14:26:19 -0700233static void set_random_color_coverage_stages(GrPipelineBuilder* pipelineBuilder,
234 GrProcessorTestData* d, int maxStages) {
wangyix059dffa2015-09-10 06:57:05 -0700235 // Randomly choose to either create a linear pipeline of procs or create one proc tree
236 const float procTreeProbability = 0.5f;
237 if (d->fRandom->nextF() < procTreeProbability) {
238 // A full tree with 5 levels (31 nodes) may exceed the max allowed length of the gl
239 // processor key; maxTreeLevels should be a number from 1 to 4 inclusive.
240 const int maxTreeLevels = 4;
bsalomonae59b772014-11-19 08:23:49 -0800241 SkAutoTUnref<const GrFragmentProcessor> fp(
wangyix059dffa2015-09-10 06:57:05 -0700242 create_random_proc_tree(d, 2, maxTreeLevels));
243 pipelineBuilder->addColorFragmentProcessor(fp);
244 } else {
245 int numProcs = d->fRandom->nextULessThan(maxStages + 1);
246 int numColorProcs = d->fRandom->nextULessThan(numProcs + 1);
joshualitt65171342014-10-09 07:25:36 -0700247
wangyix059dffa2015-09-10 06:57:05 -0700248 for (int s = 0; s < numProcs;) {
249 SkAutoTUnref<const GrFragmentProcessor> fp(
bsalomonae4738f2015-09-15 15:33:27 -0700250 GrProcessorTestFactory<GrFragmentProcessor>::Create(d));
wangyix059dffa2015-09-10 06:57:05 -0700251 SkASSERT(fp);
252
253 // finally add the stage to the correct pipeline in the drawstate
254 if (s < numColorProcs) {
255 pipelineBuilder->addColorFragmentProcessor(fp);
256 } else {
257 pipelineBuilder->addCoverageFragmentProcessor(fp);
258 }
259 ++s;
joshualitt65171342014-10-09 07:25:36 -0700260 }
joshualitt65171342014-10-09 07:25:36 -0700261 }
262}
263
egdaniel8dd688b2015-01-22 10:16:09 -0800264static void set_random_state(GrPipelineBuilder* pipelineBuilder, SkRandom* random) {
joshualitt65171342014-10-09 07:25:36 -0700265 int state = 0;
bsalomond79c5492015-04-27 10:07:04 -0700266 for (int i = 1; i <= GrPipelineBuilder::kLast_Flag; i <<= 1) {
joshualitt65171342014-10-09 07:25:36 -0700267 state |= random->nextBool() * i;
268 }
joshualitt6c891102015-05-13 08:51:49 -0700269
270 // If we don't have an MSAA rendertarget then we have to disable useHWAA
271 if ((state | GrPipelineBuilder::kHWAntialias_Flag) &&
vbuzinovdded6962015-06-12 08:59:45 -0700272 !pipelineBuilder->getRenderTarget()->isUnifiedMultisampled()) {
joshualitt6c891102015-05-13 08:51:49 -0700273 state &= ~GrPipelineBuilder::kHWAntialias_Flag;
274 }
egdaniel8dd688b2015-01-22 10:16:09 -0800275 pipelineBuilder->enableState(state);
joshualitt65171342014-10-09 07:25:36 -0700276}
277
joshualitt65171342014-10-09 07:25:36 -0700278// right now, the only thing we seem to care about in drawState's stencil is 'doesWrite()'
egdaniel8dd688b2015-01-22 10:16:09 -0800279static void set_random_stencil(GrPipelineBuilder* pipelineBuilder, SkRandom* random) {
joshualitt65171342014-10-09 07:25:36 -0700280 GR_STATIC_CONST_SAME_STENCIL(kDoesWriteStencil,
281 kReplace_StencilOp,
282 kReplace_StencilOp,
283 kAlways_StencilFunc,
284 0xffff,
285 0xffff,
286 0xffff);
287 GR_STATIC_CONST_SAME_STENCIL(kDoesNotWriteStencil,
288 kKeep_StencilOp,
289 kKeep_StencilOp,
290 kNever_StencilFunc,
291 0xffff,
292 0xffff,
293 0xffff);
294
295 if (random->nextBool()) {
egdaniel8dd688b2015-01-22 10:16:09 -0800296 pipelineBuilder->setStencil(kDoesWriteStencil);
joshualitt65171342014-10-09 07:25:36 -0700297 } else {
egdaniel8dd688b2015-01-22 10:16:09 -0800298 pipelineBuilder->setStencil(kDoesNotWriteStencil);
joshualitt65171342014-10-09 07:25:36 -0700299 }
300}
joshualitt249af152014-09-15 11:41:13 -0700301
robertphillips0dfa62c2015-11-16 06:23:31 -0800302bool GrDrawingManager::ProgramUnitTest(GrContext* context, int maxStages) {
robertphillipsa13e2022015-11-11 12:01:09 -0800303 GrDrawingManager* drawingManager = context->drawingManager();
304
joshualitt65171342014-10-09 07:25:36 -0700305 // setup dummy textures
bsalomonf2703d82014-10-28 14:33:06 -0700306 GrSurfaceDesc dummyDesc;
bsalomonbea01502015-07-16 10:00:28 -0700307 dummyDesc.fFlags = kRenderTarget_GrSurfaceFlag;
bsalomon@google.comfec0bc32013-02-07 14:43:04 +0000308 dummyDesc.fConfig = kSkia8888_GrPixelConfig;
bsalomon@google.comd4726202012-08-03 14:34:46 +0000309 dummyDesc.fWidth = 34;
310 dummyDesc.fHeight = 18;
bsalomon4061b122015-05-29 10:26:19 -0700311 SkAutoTUnref<GrTexture> dummyTexture1(
bsalomon5ec26ae2016-02-25 08:33:02 -0800312 context->textureProvider()->createTexture(dummyDesc, SkBudgeted::kNo, nullptr, 0));
bsalomonf2703d82014-10-28 14:33:06 -0700313 dummyDesc.fFlags = kNone_GrSurfaceFlags;
bsalomon@google.comd4726202012-08-03 14:34:46 +0000314 dummyDesc.fConfig = kAlpha_8_GrPixelConfig;
315 dummyDesc.fWidth = 16;
316 dummyDesc.fHeight = 22;
bsalomon4061b122015-05-29 10:26:19 -0700317 SkAutoTUnref<GrTexture> dummyTexture2(
bsalomon5ec26ae2016-02-25 08:33:02 -0800318 context->textureProvider()->createTexture(dummyDesc, SkBudgeted::kNo, nullptr, 0));
bsalomon@google.comd4726202012-08-03 14:34:46 +0000319
bsalomone904c092014-07-17 10:50:59 -0700320 if (!dummyTexture1 || ! dummyTexture2) {
joshualitt65171342014-10-09 07:25:36 -0700321 SkDebugf("Could not allocate dummy textures");
bsalomone904c092014-07-17 10:50:59 -0700322 return false;
323 }
324
joshualitt65171342014-10-09 07:25:36 -0700325 GrTexture* dummyTextures[] = {dummyTexture1.get(), dummyTexture2.get()};
326
joshualitt54e0c122014-11-19 09:38:51 -0800327 // dummy scissor state
bsalomon3e791242014-12-17 13:43:13 -0800328 GrScissorState scissor;
joshualitt54e0c122014-11-19 09:38:51 -0800329
joshualitt6c891102015-05-13 08:51:49 -0700330 // wide open clip
joshualitt44701df2015-02-23 14:44:57 -0800331 GrClip clip;
bsalomon@google.comc3841b92012-08-02 18:11:43 +0000332
commit-bot@chromium.orge0e7cfe2013-09-09 20:09:12 +0000333 SkRandom random;
bsalomonf3261af2016-04-05 10:57:13 -0700334 static const int NUM_TESTS = 1024;
joshualitt6c891102015-05-13 08:51:49 -0700335 for (int t = 0; t < NUM_TESTS; t++) {
joshualitt65171342014-10-09 07:25:36 -0700336 // setup random render target(can fail)
bsalomon4061b122015-05-29 10:26:19 -0700337 SkAutoTUnref<GrRenderTarget> rt(random_render_target(
robertphillipsa13e2022015-11-11 12:01:09 -0800338 context->textureProvider(), &random, context->caps()));
joshualitt2c93efe2014-11-06 12:57:13 -0800339 if (!rt.get()) {
joshualitt65171342014-10-09 07:25:36 -0700340 SkDebugf("Could not allocate render target");
341 return false;
bsalomon@google.comc3841b92012-08-02 18:11:43 +0000342 }
bsalomon@google.comc3841b92012-08-02 18:11:43 +0000343
egdaniel8dd688b2015-01-22 10:16:09 -0800344 GrPipelineBuilder pipelineBuilder;
345 pipelineBuilder.setRenderTarget(rt.get());
joshualitt44701df2015-02-23 14:44:57 -0800346 pipelineBuilder.setClip(clip);
bsalomon@google.comc3841b92012-08-02 18:11:43 +0000347
bsalomonabd30f52015-08-13 13:34:48 -0700348 SkAutoTUnref<GrDrawBatch> batch(GrRandomDrawBatch(&random, context));
joshualitt6c891102015-05-13 08:51:49 -0700349 SkASSERT(batch);
egdanielc0648242014-09-22 13:17:02 -0700350
cdaltonc94cd7c2015-11-12 12:11:04 -0800351 GrProcessorTestData ptd(&random, context, context->caps(), rt, dummyTextures);
joshualitt0067ff52015-07-08 14:26:19 -0700352 set_random_color_coverage_stages(&pipelineBuilder, &ptd, maxStages);
353 set_random_xpf(&pipelineBuilder, &ptd);
egdaniel8dd688b2015-01-22 10:16:09 -0800354 set_random_state(&pipelineBuilder, &random);
355 set_random_stencil(&pipelineBuilder, &random);
joshualittd9097592014-10-07 08:37:36 -0700356
joshualittf5883a62016-01-13 07:47:38 -0800357 SkAutoTUnref<GrDrawContext> drawContext(context->drawContext(rt));
358 if (!drawContext) {
359 SkDebugf("Could not allocate drawContext");
360 return false;
361 }
robertphillips0dfa62c2015-11-16 06:23:31 -0800362
robertphillips391395d2016-03-02 09:26:36 -0800363 drawContext->drawContextPriv().testingOnly_drawBatch(pipelineBuilder, batch);
bsalomon@google.comc3841b92012-08-02 18:11:43 +0000364 }
joshualitt6c891102015-05-13 08:51:49 -0700365 // Flush everything, test passes if flush is successful(ie, no asserts are hit, no crashes)
robertphillipsa13e2022015-11-11 12:01:09 -0800366 drawingManager->flush();
bsalomonb5b60322015-09-14 12:26:33 -0700367
368 // Validate that GrFPs work correctly without an input.
369 GrSurfaceDesc rtDesc;
370 rtDesc.fWidth = kRenderTargetWidth;
371 rtDesc.fHeight = kRenderTargetHeight;
372 rtDesc.fFlags = kRenderTarget_GrSurfaceFlag;
373 rtDesc.fConfig = kRGBA_8888_GrPixelConfig;
374 SkAutoTUnref<GrRenderTarget> rt(
bsalomon5ec26ae2016-02-25 08:33:02 -0800375 context->textureProvider()->createTexture(rtDesc, SkBudgeted::kNo)->asRenderTarget());
bsalomonb5b60322015-09-14 12:26:33 -0700376 int fpFactoryCnt = GrProcessorTestFactory<GrFragmentProcessor>::Count();
377 for (int i = 0; i < fpFactoryCnt; ++i) {
378 // Since FP factories internally randomize, call each 10 times.
379 for (int j = 0; j < 10; ++j) {
380 SkAutoTUnref<GrDrawBatch> batch(GrRandomDrawBatch(&random, context));
381 SkASSERT(batch);
cdaltonc94cd7c2015-11-12 12:11:04 -0800382 GrProcessorTestData ptd(&random, context, context->caps(), rt, dummyTextures);
bsalomonb5b60322015-09-14 12:26:33 -0700383 GrPipelineBuilder builder;
384 builder.setXPFactory(GrPorterDuffXPFactory::Create(SkXfermode::kSrc_Mode))->unref();
385 builder.setRenderTarget(rt);
386 builder.setClip(clip);
387
388 SkAutoTUnref<const GrFragmentProcessor> fp(
389 GrProcessorTestFactory<GrFragmentProcessor>::CreateIdx(i, &ptd));
390 SkAutoTUnref<const GrFragmentProcessor> blockFP(
391 BlockInputFragmentProcessor::Create(fp));
392 builder.addColorFragmentProcessor(blockFP);
393
joshualittf5883a62016-01-13 07:47:38 -0800394 SkAutoTUnref<GrDrawContext> drawContext(context->drawContext(rt));
395 if (!drawContext) {
396 SkDebugf("Could not allocate a drawcontext");
397 return false;
398 }
robertphillips0dfa62c2015-11-16 06:23:31 -0800399
robertphillips391395d2016-03-02 09:26:36 -0800400 drawContext->drawContextPriv().testingOnly_drawBatch(builder, batch);
robertphillipsa13e2022015-11-11 12:01:09 -0800401 drawingManager->flush();
bsalomonb5b60322015-09-14 12:26:33 -0700402 }
403 }
404
bsalomon@google.comc3841b92012-08-02 18:11:43 +0000405 return true;
406}
bsalomon@google.coma8e686e2011-08-16 15:45:58 +0000407
kkinnunen3e980c32015-12-23 01:33:00 -0800408static int get_glprograms_max_stages(GrContext* context) {
409 GrGLGpu* gpu = static_cast<GrGLGpu*>(context->getGpu());
410 /*
411 * For the time being, we only support the test with desktop GL or for android on
412 * ARM platforms
413 * TODO When we run ES 3.00 GLSL in more places, test again
414 */
415 if (kGL_GrGLStandard == gpu->glStandard() ||
416 kARM_GrGLVendor == gpu->ctxInfo().vendor()) {
417 return 6;
418 } else if (kTegra3_GrGLRenderer == gpu->ctxInfo().renderer() ||
419 kOther_GrGLRenderer == gpu->ctxInfo().renderer()) {
420 return 1;
421 }
422 return 0;
423}
424
bsalomonf2f1c172016-04-05 12:59:06 -0700425static void test_glprograms_native(skiatest::Reporter* reporter,
426 const sk_gpu_test::ContextInfo& ctxInfo) {
427 int maxStages = get_glprograms_max_stages(ctxInfo.fGrContext);
kkinnunen3e980c32015-12-23 01:33:00 -0800428 if (maxStages == 0) {
429 return;
430 }
bsalomonf2f1c172016-04-05 12:59:06 -0700431 REPORTER_ASSERT(reporter, GrDrawingManager::ProgramUnitTest(ctxInfo.fGrContext, maxStages));
kkinnunen3e980c32015-12-23 01:33:00 -0800432}
433
bsalomonf2f1c172016-04-05 12:59:06 -0700434static void test_glprograms_other_contexts(
435 skiatest::Reporter* reporter,
436 const sk_gpu_test::ContextInfo& ctxInfo) {
437 int maxStages = get_glprograms_max_stages(ctxInfo.fGrContext);
kkinnunen3e980c32015-12-23 01:33:00 -0800438#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 }
bsalomonf2f1c172016-04-05 12:59:06 -0700446 REPORTER_ASSERT(reporter, GrDrawingManager::ProgramUnitTest(ctxInfo.fGrContext, maxStages));
kkinnunen3e980c32015-12-23 01:33:00 -0800447}
448
bsalomon758586c2016-04-06 14:02:39 -0700449static bool is_native_gl_context_type(sk_gpu_test::GrContextFactory::ContextType type) {
450 return type == sk_gpu_test::GrContextFactory::kNativeGL_ContextType;
451}
452
453static bool is_other_rendering_gl_context_type(sk_gpu_test::GrContextFactory::ContextType type) {
454 return !is_native_gl_context_type(type) &&
455 kOpenGL_GrBackend == sk_gpu_test::GrContextFactory::ContextTypeBackend(type) &&
456 sk_gpu_test::GrContextFactory::IsRenderingContext(type);
457}
458
kkinnunen3e980c32015-12-23 01:33:00 -0800459DEF_GPUTEST(GLPrograms, reporter, /*factory*/) {
bsalomon3318ee72015-03-16 11:56:29 -0700460 // Set a locale that would cause shader compilation to fail because of , as decimal separator.
461 // skbug 3330
462#ifdef SK_BUILD_FOR_WIN
463 GrAutoLocaleSetter als("sv-SE");
464#else
465 GrAutoLocaleSetter als("sv_SE.UTF-8");
466#endif
467
joshualitt6c891102015-05-13 08:51:49 -0700468 // We suppress prints to avoid spew
bsalomon682c2692015-05-22 14:01:46 -0700469 GrContextOptions opts;
joshualitt6c891102015-05-13 08:51:49 -0700470 opts.fSuppressPrints = true;
bsalomon3724e572016-03-30 18:56:19 -0700471 sk_gpu_test::GrContextFactory debugFactory(opts);
bsalomon758586c2016-04-06 14:02:39 -0700472 skiatest::RunWithGPUTestContexts(test_glprograms_native, &is_native_gl_context_type,
kkinnunen3e980c32015-12-23 01:33:00 -0800473 reporter, &debugFactory);
474 skiatest::RunWithGPUTestContexts(test_glprograms_other_contexts,
bsalomon758586c2016-04-06 14:02:39 -0700475 &is_other_rendering_gl_context_type, reporter, &debugFactory);
bsalomon@google.coma8e686e2011-08-16 15:45:58 +0000476}
477
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000478#endif