blob: afc853de906a9b4969eb663394add8df8e40f165 [file] [log] [blame]
scroggo478652e2015-03-25 07:11:02 -07001/*
2 * Copyright 2013 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
mtklein748ca3b2015-01-15 10:56:12 -08008#include "DMJsonWriter.h"
9#include "DMSrcSink.h"
mtklein748ca3b2015-01-15 10:56:12 -080010#include "ProcStats.h"
halcanary7d571242016-02-24 17:59:16 -080011#include "Resources.h"
mtklein748ca3b2015-01-15 10:56:12 -080012#include "SkBBHFactory.h"
mtklein62bd1a62015-01-27 14:46:26 -080013#include "SkChecksum.h"
Brian Osman53136aa2017-07-20 15:43:35 -040014#include "SkChromeTracingTracer.h"
scroggocc2feb12015-08-14 08:32:46 -070015#include "SkCodec.h"
mtklein27c3fdd2016-02-26 14:43:21 -080016#include "SkColorPriv.h"
msarett888dc162016-05-23 10:21:17 -070017#include "SkColorSpace.h"
Mike Klein919cc452017-03-18 15:36:52 +000018#include "SkColorSpacePriv.h"
caryclark17f0b6d2014-07-22 10:15:34 -070019#include "SkCommonFlags.h"
kkinnunen3e980c32015-12-23 01:33:00 -080020#include "SkCommonFlagsConfig.h"
csmartdalton008b9d82017-02-22 12:00:42 -070021#include "SkCommonFlagsPathRenderer.h"
brianosman3c579dc2016-04-19 09:18:11 -070022#include "SkData.h"
Hal Canaryc7d295e2017-07-20 15:36:00 -040023#include "SkDocument.h"
Brian Salomondcbb9d92017-07-19 10:53:20 -040024#include "SkDebugfTracer.h"
Brian Osman53136aa2017-07-20 15:43:35 -040025#include "SkEventTracingPriv.h"
caryclark83ca6282015-06-10 09:31:09 -070026#include "SkFontMgr.h"
mtklein@google.comd36522d2013-10-16 13:02:15 +000027#include "SkGraphics.h"
mtklein27c3fdd2016-02-26 14:43:21 -080028#include "SkHalf.h"
halcanary4dbbd042016-06-07 17:21:10 -070029#include "SkLeanWindows.h"
mtklein748ca3b2015-01-15 10:56:12 -080030#include "SkMD5.h"
mtklein1b249332015-07-07 12:21:21 -070031#include "SkMutex.h"
mtklein1d0f1642014-09-08 08:05:18 -070032#include "SkOSFile.h"
Ben Wagnerbf111d72016-11-07 18:05:29 -050033#include "SkOSPath.h"
mtklein27c3fdd2016-02-26 14:43:21 -080034#include "SkPM4fPriv.h"
Mike Klein13b6afd2017-06-12 12:45:41 -040035#include "SkPngEncoder.h"
Brian Salomondcbb9d92017-07-19 10:53:20 -040036#include "SkScan.h"
mtklein246ba3a2016-02-23 10:39:36 -080037#include "SkSpinlock.h"
mtkleina82f5622015-02-20 12:30:19 -080038#include "SkTHash.h"
mtklein406654b2014-09-03 15:34:37 -070039#include "SkTaskGroup.h"
mtkleinde6fc2b2015-03-12 06:28:54 -070040#include "SkThreadUtils.h"
commit-bot@chromium.org0dc5bd12014-02-26 16:31:22 +000041#include "Test.h"
mtklein748ca3b2015-01-15 10:56:12 -080042#include "Timer.h"
Mike Kleinadacaef2017-02-06 09:26:14 -050043#include "ios_utils.h"
brianosman3c579dc2016-04-19 09:18:11 -070044#include "picture_utils.h"
caryclark83ca6282015-06-10 09:31:09 -070045#include "sk_tool_utils.h"
mtklein@google.comd36522d2013-10-16 13:02:15 +000046
scroggo19b91532016-10-24 09:03:26 -070047#include <vector>
48
halcanary7a14b312015-10-01 07:28:13 -070049#ifdef SK_PDF_IMAGE_STATS
50extern void SkPDFImageDumpStats();
51#endif
52
mtkleina5114d72015-08-24 13:27:01 -070053#include "png.h"
54
bungeman60e0fee2015-08-26 05:15:46 -070055#include <stdlib.h>
56
scroggo27a58342015-10-28 08:56:41 -070057#ifndef SK_BUILD_FOR_WIN32
58 #include <unistd.h>
59#endif
60
Mike Reed7c26ca72017-07-05 15:45:52 -040061extern bool gSkForceRasterPipelineBlitter;
62
Ben Wagner32fa5102017-08-10 21:25:55 -040063DECLARE_bool(undefok);
djsollen54416de2015-04-03 07:24:48 -070064DEFINE_string(src, "tests gm skp image", "Source types to test.");
mtklein748ca3b2015-01-15 10:56:12 -080065DEFINE_bool(nameByHash, false,
66 "If true, write to FLAGS_writePath[0]/<hash>.png instead of "
djsollen54416de2015-04-03 07:24:48 -070067 "to FLAGS_writePath[0]/<config>/<sourceType>/<sourceOptions>/<name>.png");
mtklein748ca3b2015-01-15 10:56:12 -080068DEFINE_bool2(pathOpsExtended, x, false, "Run extended pathOps tests.");
mtkleind603b222015-02-17 11:13:33 -080069DEFINE_string(matrix, "1 0 0 1",
70 "2x2 scale+skew matrix to apply or upright when using "
71 "'matrix' or 'upright' in config.");
mtklein82d28432015-01-15 12:46:02 -080072DEFINE_bool(gpu_threading, false, "Allow GPU work to run on multiple threads?");
mtklein@google.comd36522d2013-10-16 13:02:15 +000073
mtkleina2ef6422015-01-15 13:44:22 -080074DEFINE_string(blacklist, "",
Chris Daltonecf78ac2017-08-15 15:43:08 -060075 "Space-separated config/src/srcOptions/name quadruples to blacklist. "
76 "'_' matches anything. '~' negates the match. E.g. \n"
djsollen54416de2015-04-03 07:24:48 -070077 "'--blacklist gpu skp _ _' will blacklist all SKPs drawn into the gpu config.\n"
Chris Daltonecf78ac2017-08-15 15:43:08 -060078 "'--blacklist gpu skp _ _ 8888 gm _ aarects' will also blacklist the aarects GM on 8888.\n"
79 "'--blacklist ~8888 svg _ svgparse_' blocks non-8888 SVGs that contain \"svgparse_\" in "
80 "the name.");
mtkleina2ef6422015-01-15 13:44:22 -080081
mtklein62bd1a62015-01-27 14:46:26 -080082DEFINE_string2(readPath, r, "", "If set check for equality with golden results in this directory.");
83
borenet09ed4802015-04-03 14:15:33 -070084DEFINE_string(uninterestingHashesFile, "",
85 "File containing a list of uninteresting hashes. If a result hashes to something in "
86 "this list, no image is written for that result.");
87
mtklein6393c062015-04-27 08:45:01 -070088DEFINE_int32(shards, 1, "We're splitting source data into this many shards.");
89DEFINE_int32(shard, 0, "Which shard do I run?");
90
halcanary45420a92016-06-02 12:41:14 -070091DEFINE_string(mskps, "", "Directory to read mskps from, or a single mskp file.");
Mike Reed7c26ca72017-07-05 15:45:52 -040092DEFINE_bool(forceRasterPipeline, false, "sets gSkForceRasterPipelineBlitter");
halcanary45420a92016-06-02 12:41:14 -070093
csmartdalton008b9d82017-02-22 12:00:42 -070094#if SK_SUPPORT_GPU
95DEFINE_pathrenderer_flag;
96#endif
97
Derek Sollenbergeredfe3df2017-07-19 15:25:24 -040098DEFINE_bool(ignoreSigInt, false, "ignore SIGINT signals during test execution");
99
Mike Klein97d6a7a2017-07-24 10:37:19 -0400100DEFINE_string(dont_write, "", "File extensions to skip writing to --writePath."); // See skia:6821
101
mtklein748ca3b2015-01-15 10:56:12 -0800102using namespace DM;
bsalomon3724e572016-03-30 18:56:19 -0700103using sk_gpu_test::GrContextFactory;
bsalomon273c0f52016-03-31 10:59:06 -0700104using sk_gpu_test::GLTestContext;
bsalomonf2f1c172016-04-05 12:59:06 -0700105using sk_gpu_test::ContextInfo;
mtklein@google.comd36522d2013-10-16 13:02:15 +0000106
mtklein748ca3b2015-01-15 10:56:12 -0800107/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
108
benjaminwagnerec4d4d72016-03-25 12:59:53 -0700109static const double kStartMs = SkTime::GetMSecs();
mtkleinc41fd922016-03-08 09:01:39 -0800110
111static FILE* gVLog;
112
113template <typename... Args>
114static void vlog(const char* fmt, Args&&... args) {
115 if (gVLog) {
116 fprintf(gVLog, "%s\t", HumanizeMs(SkTime::GetMSecs() - kStartMs).c_str());
117 fprintf(gVLog, fmt, args...);
118 fflush(gVLog);
119 }
120}
121
122template <typename... Args>
123static void info(const char* fmt, Args&&... args) {
124 vlog(fmt, args...);
125 if (!FLAGS_quiet) {
126 printf(fmt, args...);
127 }
128}
129static void info(const char* fmt) {
130 if (!FLAGS_quiet) {
131 printf("%s", fmt); // Clang warns printf(fmt) is insecure.
132 }
133}
134
reed086eea92016-05-04 17:12:46 -0700135SK_DECLARE_STATIC_MUTEX(gFailuresMutex);
mtklein748ca3b2015-01-15 10:56:12 -0800136static SkTArray<SkString> gFailures;
137
mtklein3eed7dd2016-02-24 19:07:07 -0800138static void fail(const SkString& err) {
mtklein748ca3b2015-01-15 10:56:12 -0800139 SkAutoMutexAcquire lock(gFailuresMutex);
140 SkDebugf("\n\nFAILURE: %s\n\n", err.c_str());
141 gFailures.push_back(err);
halcanary9e398f72015-01-10 11:18:04 -0800142}
143
mtklein0f7748a2016-07-25 15:27:29 -0700144struct Running {
145 SkString id;
146 SkThreadID thread;
147
148 void dump() const {
149 info("\t%s\n", id.c_str());
150 }
151};
mtkleinb37cb412015-03-18 05:27:14 -0700152
mtklein246ba3a2016-02-23 10:39:36 -0800153// We use a spinlock to make locking this in a signal handler _somewhat_ safe.
Mike Klein03a95ad2017-06-23 12:36:32 -0400154static SkSpinlock gMutex;
155static int gPending;
mtklein0f7748a2016-07-25 15:27:29 -0700156static SkTArray<Running> gRunning;
mtklein748ca3b2015-01-15 10:56:12 -0800157
mtklein3eed7dd2016-02-24 19:07:07 -0800158static void done(const char* config, const char* src, const char* srcOptions, const char* name) {
159 SkString id = SkStringPrintf("%s %s %s %s", config, src, srcOptions, name);
mtkleinc41fd922016-03-08 09:01:39 -0800160 vlog("done %s\n", id.c_str());
mtkleinafae30a2016-02-24 12:28:32 -0800161 int pending;
mtkleinb37cb412015-03-18 05:27:14 -0700162 {
mtkleinf10637f2016-06-10 13:56:35 -0700163 SkAutoMutexAcquire lock(gMutex);
mtkleinb37cb412015-03-18 05:27:14 -0700164 for (int i = 0; i < gRunning.count(); i++) {
mtklein0f7748a2016-07-25 15:27:29 -0700165 if (gRunning[i].id == id) {
mtkleinb37cb412015-03-18 05:27:14 -0700166 gRunning.removeShuffle(i);
167 break;
168 }
169 }
mtkleinafae30a2016-02-24 12:28:32 -0800170 pending = --gPending;
reed50bc0512015-05-19 14:13:31 -0700171 }
Mike Klein03a95ad2017-06-23 12:36:32 -0400172
173 // We write out dm.json file and print out a progress update every once in a while.
174 // Notice this also handles the final dm.json and progress update when pending == 0.
mtkleina17241b2015-01-23 05:48:00 -0800175 if (pending % 500 == 0) {
176 JsonWriter::DumpJson();
Mike Klein03a95ad2017-06-23 12:36:32 -0400177
178 int curr = sk_tools::getCurrResidentSetSizeMB(),
179 peak = sk_tools::getMaxResidentSetSizeMB();
180 SkString elapsed = HumanizeMs(SkTime::GetMSecs() - kStartMs);
181
182 SkAutoMutexAcquire lock(gMutex);
183 info("\n%dMB RAM, %dMB peak, %s elapsed, %d queued, %d active:\n",
184 curr, peak, elapsed.c_str(), gPending - gRunning.count(), gRunning.count());
185 for (auto& task : gRunning) {
186 task.dump();
187 }
mtkleina17241b2015-01-23 05:48:00 -0800188 }
mtklein@google.comd36522d2013-10-16 13:02:15 +0000189}
190
mtklein3eed7dd2016-02-24 19:07:07 -0800191static void start(const char* config, const char* src, const char* srcOptions, const char* name) {
192 SkString id = SkStringPrintf("%s %s %s %s", config, src, srcOptions, name);
mtkleinc41fd922016-03-08 09:01:39 -0800193 vlog("start %s\n", id.c_str());
mtkleinf10637f2016-06-10 13:56:35 -0700194 SkAutoMutexAcquire lock(gMutex);
mtklein0f7748a2016-07-25 15:27:29 -0700195 gRunning.push_back({id,SkGetThreadID()});
mtkleinb37cb412015-03-18 05:27:14 -0700196}
197
Mike Klein3cc2d202016-10-24 11:39:43 -0400198static void find_culprit() {
199 // Assumes gMutex is locked.
200 SkThreadID thisThread = SkGetThreadID();
201 for (auto& task : gRunning) {
202 if (task.thread == thisThread) {
203 info("Likely culprit:\n");
204 task.dump();
mtklein0f7748a2016-07-25 15:27:29 -0700205 }
206 }
Mike Klein3cc2d202016-10-24 11:39:43 -0400207}
mtklein0f7748a2016-07-25 15:27:29 -0700208
mtklein246ba3a2016-02-23 10:39:36 -0800209#if defined(SK_BUILD_FOR_WIN32)
mtklein5b64dab2016-06-09 08:59:48 -0700210 static LONG WINAPI crash_handler(EXCEPTION_POINTERS* e) {
mtkleinf8557292016-02-29 06:35:28 -0800211 static const struct {
212 const char* name;
robertphillips75467862016-03-01 14:10:23 -0800213 DWORD code;
mtkleinf8557292016-02-29 06:35:28 -0800214 } kExceptions[] = {
215 #define _(E) {#E, E}
216 _(EXCEPTION_ACCESS_VIOLATION),
217 _(EXCEPTION_BREAKPOINT),
218 _(EXCEPTION_INT_DIVIDE_BY_ZERO),
219 _(EXCEPTION_STACK_OVERFLOW),
220 // TODO: more?
221 #undef _
222 };
223
mtkleinf10637f2016-06-10 13:56:35 -0700224 SkAutoMutexAcquire lock(gMutex);
mtklein5b64dab2016-06-09 08:59:48 -0700225
226 const DWORD code = e->ExceptionRecord->ExceptionCode;
227 info("\nCaught exception %u", code);
228 for (const auto& exception : kExceptions) {
229 if (exception.code == code) {
230 info(" %s", exception.name);
mtkleinf8557292016-02-29 06:35:28 -0800231 }
mtkleinf8557292016-02-29 06:35:28 -0800232 }
mtklein5b64dab2016-06-09 08:59:48 -0700233 info(", was running:\n");
234 for (auto& task : gRunning) {
mtklein0f7748a2016-07-25 15:27:29 -0700235 task.dump();
mtklein5b64dab2016-06-09 08:59:48 -0700236 }
mtklein0f7748a2016-07-25 15:27:29 -0700237 find_culprit();
mtklein5b64dab2016-06-09 08:59:48 -0700238 fflush(stdout);
239
mtkleinf8557292016-02-29 06:35:28 -0800240 // Execute default exception handler... hopefully, exit.
241 return EXCEPTION_EXECUTE_HANDLER;
mtklein246ba3a2016-02-23 10:39:36 -0800242 }
243
Mike Klein3cc2d202016-10-24 11:39:43 -0400244 static void setup_crash_handler() {
245 SetUnhandledExceptionFilter(crash_handler);
246 }
247#else
mtklein246ba3a2016-02-23 10:39:36 -0800248 #include <signal.h>
Mike Klein3cc2d202016-10-24 11:39:43 -0400249 #if !defined(SK_BUILD_FOR_ANDROID)
250 #include <execinfo.h>
Brian Salomondcbb9d92017-07-19 10:53:20 -0400251
252#endif
Mike Klein3cc2d202016-10-24 11:39:43 -0400253
254 static constexpr int max_of() { return 0; }
255 template <typename... Rest>
256 static constexpr int max_of(int x, Rest... rest) {
257 return x > max_of(rest...) ? x : max_of(rest...);
258 }
259
260 static void (*previous_handler[max_of(SIGABRT,SIGBUS,SIGFPE,SIGILL,SIGSEGV)+1])(int);
mtkleinf8557292016-02-29 06:35:28 -0800261
mtklein5b64dab2016-06-09 08:59:48 -0700262 static void crash_handler(int sig) {
mtkleinf10637f2016-06-10 13:56:35 -0700263 SkAutoMutexAcquire lock(gMutex);
mtklein5b64dab2016-06-09 08:59:48 -0700264
265 info("\nCaught signal %d [%s], was running:\n", sig, strsignal(sig));
266 for (auto& task : gRunning) {
mtklein0f7748a2016-07-25 15:27:29 -0700267 task.dump();
mtklein5b64dab2016-06-09 08:59:48 -0700268 }
mtklein0f7748a2016-07-25 15:27:29 -0700269 find_culprit();
mtklein5b64dab2016-06-09 08:59:48 -0700270
Mike Klein3cc2d202016-10-24 11:39:43 -0400271 #if !defined(SK_BUILD_FOR_ANDROID)
mtklein5b64dab2016-06-09 08:59:48 -0700272 void* stack[64];
273 int count = backtrace(stack, SK_ARRAY_COUNT(stack));
274 char** symbols = backtrace_symbols(stack, count);
275 info("\nStack trace:\n");
276 for (int i = 0; i < count; i++) {
277 info(" %s\n", symbols[i]);
278 }
Mike Klein3cc2d202016-10-24 11:39:43 -0400279 #endif
mtklein5b64dab2016-06-09 08:59:48 -0700280 fflush(stdout);
281
Mike Klein3cc2d202016-10-24 11:39:43 -0400282 signal(sig, previous_handler[sig]);
283 raise(sig);
mtklein5b64dab2016-06-09 08:59:48 -0700284 }
285
mtklein246ba3a2016-02-23 10:39:36 -0800286 static void setup_crash_handler() {
287 const int kSignals[] = { SIGABRT, SIGBUS, SIGFPE, SIGILL, SIGSEGV };
288 for (int sig : kSignals) {
Mike Klein3cc2d202016-10-24 11:39:43 -0400289 previous_handler[sig] = signal(sig, crash_handler);
mtklein246ba3a2016-02-23 10:39:36 -0800290 }
Derek Sollenbergeredfe3df2017-07-19 15:25:24 -0400291
292 if (FLAGS_ignoreSigInt) {
293 signal(SIGINT, SIG_IGN);
294 }
mtklein246ba3a2016-02-23 10:39:36 -0800295 }
296#endif
297
mtklein748ca3b2015-01-15 10:56:12 -0800298/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
mtklein114c3cd2015-01-15 10:15:02 -0800299
mtklein62bd1a62015-01-27 14:46:26 -0800300struct Gold : public SkString {
mtkleina82f5622015-02-20 12:30:19 -0800301 Gold() : SkString("") {}
mtklein3eed7dd2016-02-24 19:07:07 -0800302 Gold(const SkString& sink, const SkString& src,
303 const SkString& srcOptions, const SkString& name,
304 const SkString& md5)
mtklein62bd1a62015-01-27 14:46:26 -0800305 : SkString("") {
306 this->append(sink);
307 this->append(src);
djsollen54416de2015-04-03 07:24:48 -0700308 this->append(srcOptions);
mtklein62bd1a62015-01-27 14:46:26 -0800309 this->append(name);
310 this->append(md5);
mtklein62bd1a62015-01-27 14:46:26 -0800311 }
mtkleinc8d1dd42015-10-15 12:23:01 -0700312 struct Hash {
313 uint32_t operator()(const Gold& g) const {
314 return SkGoodHash()((const SkString&)g);
315 }
316 };
mtklein62bd1a62015-01-27 14:46:26 -0800317};
mtkleina82f5622015-02-20 12:30:19 -0800318static SkTHashSet<Gold, Gold::Hash> gGold;
mtklein62bd1a62015-01-27 14:46:26 -0800319
320static void add_gold(JsonWriter::BitmapResult r) {
djsollen54416de2015-04-03 07:24:48 -0700321 gGold.add(Gold(r.config, r.sourceType, r.sourceOptions, r.name, r.md5));
mtklein62bd1a62015-01-27 14:46:26 -0800322}
323
324static void gather_gold() {
325 if (!FLAGS_readPath.isEmpty()) {
326 SkString path(FLAGS_readPath[0]);
327 path.append("/dm.json");
328 if (!JsonWriter::ReadJson(path.c_str(), add_gold)) {
329 fail(SkStringPrintf("Couldn't read %s for golden results.", path.c_str()));
330 }
331 }
332}
333
334/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
335
mtklein935f1b12016-03-16 08:37:19 -0700336#if defined(SK_BUILD_FOR_WIN32)
337 static const char* kNewline = "\r\n";
338#else
339 static const char* kNewline = "\n";
340#endif
341
borenet09ed4802015-04-03 14:15:33 -0700342static SkTHashSet<SkString> gUninterestingHashes;
343
344static void gather_uninteresting_hashes() {
345 if (!FLAGS_uninterestingHashesFile.isEmpty()) {
bungeman38d909e2016-08-02 14:40:46 -0700346 sk_sp<SkData> data(SkData::MakeFromFileName(FLAGS_uninterestingHashesFile[0]));
mtkleincc334b32015-09-22 11:43:53 -0700347 if (!data) {
mtkleinc41fd922016-03-08 09:01:39 -0800348 info("WARNING: unable to read uninteresting hashes from %s\n",
349 FLAGS_uninterestingHashesFile[0]);
mtkleincc334b32015-09-22 11:43:53 -0700350 return;
351 }
Mike Klein45dcc0c2017-04-05 18:04:31 -0400352
353 // Copy to a string to make sure SkStrSplit has a terminating \0 to find.
354 SkString contents((const char*)data->data(), data->size());
355
borenet09ed4802015-04-03 14:15:33 -0700356 SkTArray<SkString> hashes;
Mike Klein45dcc0c2017-04-05 18:04:31 -0400357 SkStrSplit(contents.c_str(), kNewline, &hashes);
borenet09ed4802015-04-03 14:15:33 -0700358 for (const SkString& hash : hashes) {
359 gUninterestingHashes.add(hash);
360 }
mtkleinc41fd922016-03-08 09:01:39 -0800361 info("FYI: loaded %d distinct uninteresting hashes from %d lines\n",
362 gUninterestingHashes.count(), hashes.count());
borenet09ed4802015-04-03 14:15:33 -0700363 }
364}
365
366/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
367
Ben Wagner145dbcd2016-11-03 14:40:50 -0400368struct TaggedSrc : public std::unique_ptr<Src> {
mtklein3eed7dd2016-02-24 19:07:07 -0800369 SkString tag;
370 SkString options;
mtkleine0effd62015-07-29 06:37:28 -0700371};
372
Ben Wagner145dbcd2016-11-03 14:40:50 -0400373struct TaggedSink : public std::unique_ptr<Sink> {
kkinnunen3e980c32015-12-23 01:33:00 -0800374 SkString tag;
djsollen54416de2015-04-03 07:24:48 -0700375};
mtklein748ca3b2015-01-15 10:56:12 -0800376
377static const bool kMemcpyOK = true;
378
mtkleine0effd62015-07-29 06:37:28 -0700379static SkTArray<TaggedSrc, kMemcpyOK> gSrcs;
380static SkTArray<TaggedSink, kMemcpyOK> gSinks;
mtklein748ca3b2015-01-15 10:56:12 -0800381
mtklein6393c062015-04-27 08:45:01 -0700382static bool in_shard() {
383 static int N = 0;
384 return N++ % FLAGS_shards == FLAGS_shard;
385}
386
mtklein3eed7dd2016-02-24 19:07:07 -0800387static void push_src(const char* tag, ImplicitString options, Src* s) {
Ben Wagner145dbcd2016-11-03 14:40:50 -0400388 std::unique_ptr<Src> src(s);
mtklein6393c062015-04-27 08:45:01 -0700389 if (in_shard() &&
mtklein3eed7dd2016-02-24 19:07:07 -0800390 FLAGS_src.contains(tag) &&
mtklein748ca3b2015-01-15 10:56:12 -0800391 !SkCommandLineFlags::ShouldSkip(FLAGS_match, src->name().c_str())) {
mtkleine0effd62015-07-29 06:37:28 -0700392 TaggedSrc& s = gSrcs.push_back();
mtklein18300a32016-03-16 13:53:35 -0700393 s.reset(src.release());
mtklein748ca3b2015-01-15 10:56:12 -0800394 s.tag = tag;
djsollen54416de2015-04-03 07:24:48 -0700395 s.options = options;
mtklein114c3cd2015-01-15 10:15:02 -0800396 }
mtklein748ca3b2015-01-15 10:56:12 -0800397}
mtklein114c3cd2015-01-15 10:15:02 -0800398
msarett9e707a02015-09-01 14:57:57 -0700399static void push_codec_src(Path path, CodecSrc::Mode mode, CodecSrc::DstColorType dstColorType,
scroggoc5560be2016-02-03 09:42:42 -0800400 SkAlphaType dstAlphaType, float scale) {
scroggoe4499842016-02-25 11:03:47 -0800401 if (FLAGS_simpleCodec) {
scroggo19b91532016-10-24 09:03:26 -0700402 const bool simple = CodecSrc::kCodec_Mode == mode || CodecSrc::kAnimated_Mode == mode;
403 if (!simple || dstColorType != CodecSrc::kGetFromCanvas_DstColorType || scale != 1.0f) {
scroggoe4499842016-02-25 11:03:47 -0800404 // Only decode in the simple case.
405 return;
scroggo19b91532016-10-24 09:03:26 -0700406 }
scroggoe4499842016-02-25 11:03:47 -0800407 }
msarett9e707a02015-09-01 14:57:57 -0700408 SkString folder;
409 switch (mode) {
410 case CodecSrc::kCodec_Mode:
411 folder.append("codec");
412 break;
msarettbb25b532016-01-13 09:31:39 -0800413 case CodecSrc::kCodecZeroInit_Mode:
414 folder.append("codec_zero_init");
415 break;
msarett9e707a02015-09-01 14:57:57 -0700416 case CodecSrc::kScanline_Mode:
417 folder.append("scanline");
418 break;
msarett9e707a02015-09-01 14:57:57 -0700419 case CodecSrc::kStripe_Mode:
420 folder.append("stripe");
421 break;
msarett91c22b22016-02-22 12:27:46 -0800422 case CodecSrc::kCroppedScanline_Mode:
423 folder.append("crop");
424 break;
msarett9e707a02015-09-01 14:57:57 -0700425 case CodecSrc::kSubset_Mode:
msarett36c37962015-09-02 13:20:52 -0700426 folder.append("codec_subset");
msarett9e707a02015-09-01 14:57:57 -0700427 break;
scroggo19b91532016-10-24 09:03:26 -0700428 case CodecSrc::kAnimated_Mode:
429 folder.append("codec_animated");
430 break;
msarett9e707a02015-09-01 14:57:57 -0700431 }
432
433 switch (dstColorType) {
434 case CodecSrc::kGrayscale_Always_DstColorType:
435 folder.append("_kGray8");
436 break;
msarett34e0ec42016-04-22 16:27:24 -0700437 case CodecSrc::kNonNative8888_Always_DstColorType:
438 folder.append("_kNonNative");
439 break;
msarett9e707a02015-09-01 14:57:57 -0700440 default:
441 break;
442 }
443
scroggoc5560be2016-02-03 09:42:42 -0800444 switch (dstAlphaType) {
scroggoc5560be2016-02-03 09:42:42 -0800445 case kPremul_SkAlphaType:
446 folder.append("_premul");
447 break;
448 case kUnpremul_SkAlphaType:
449 folder.append("_unpremul");
450 break;
451 default:
452 break;
453 }
454
msarett9e707a02015-09-01 14:57:57 -0700455 if (1.0f != scale) {
456 folder.appendf("_%.3f", scale);
457 }
458
scroggoc5560be2016-02-03 09:42:42 -0800459 CodecSrc* src = new CodecSrc(path, mode, dstColorType, dstAlphaType, scale);
msarett9e707a02015-09-01 14:57:57 -0700460 push_src("image", folder, src);
461}
462
scroggof8dc9df2016-05-16 09:04:13 -0700463static void push_android_codec_src(Path path, CodecSrc::DstColorType dstColorType,
464 SkAlphaType dstAlphaType, int sampleSize) {
msarett3d9d7a72015-10-21 10:27:10 -0700465 SkString folder;
scroggof8dc9df2016-05-16 09:04:13 -0700466 folder.append("scaled_codec");
msarett3d9d7a72015-10-21 10:27:10 -0700467
468 switch (dstColorType) {
469 case CodecSrc::kGrayscale_Always_DstColorType:
470 folder.append("_kGray8");
471 break;
msarett34e0ec42016-04-22 16:27:24 -0700472 case CodecSrc::kNonNative8888_Always_DstColorType:
473 folder.append("_kNonNative");
474 break;
msarett3d9d7a72015-10-21 10:27:10 -0700475 default:
476 break;
477 }
478
scroggoc5560be2016-02-03 09:42:42 -0800479 switch (dstAlphaType) {
scroggoc5560be2016-02-03 09:42:42 -0800480 case kPremul_SkAlphaType:
481 folder.append("_premul");
482 break;
msarett9e9444c2016-02-03 12:39:10 -0800483 case kUnpremul_SkAlphaType:
484 folder.append("_unpremul");
485 break;
scroggoc5560be2016-02-03 09:42:42 -0800486 default:
487 break;
488 }
489
msarett3d9d7a72015-10-21 10:27:10 -0700490 if (1 != sampleSize) {
msarett4b0778e2015-11-13 09:59:11 -0800491 folder.appendf("_%.3f", 1.0f / (float) sampleSize);
msarett3d9d7a72015-10-21 10:27:10 -0700492 }
493
scroggof8dc9df2016-05-16 09:04:13 -0700494 AndroidCodecSrc* src = new AndroidCodecSrc(path, dstColorType, dstAlphaType, sampleSize);
msarett3d9d7a72015-10-21 10:27:10 -0700495 push_src("image", folder, src);
496}
497
msarett18976312016-03-09 14:20:58 -0800498static void push_image_gen_src(Path path, ImageGenSrc::Mode mode, SkAlphaType alphaType, bool isGpu)
499{
500 SkString folder;
501 switch (mode) {
502 case ImageGenSrc::kCodec_Mode:
503 folder.append("gen_codec");
504 break;
505 case ImageGenSrc::kPlatform_Mode:
506 folder.append("gen_platform");
507 break;
508 }
509
510 if (isGpu) {
511 folder.append("_gpu");
512 } else {
513 switch (alphaType) {
514 case kOpaque_SkAlphaType:
515 folder.append("_opaque");
516 break;
517 case kPremul_SkAlphaType:
518 folder.append("_premul");
519 break;
520 case kUnpremul_SkAlphaType:
521 folder.append("_unpremul");
522 break;
523 default:
524 break;
525 }
526 }
527
528 ImageGenSrc* src = new ImageGenSrc(path, mode, alphaType, isGpu);
529 push_src("image", folder, src);
530}
531
msarett438b2ad2015-04-09 12:43:10 -0700532static void push_codec_srcs(Path path) {
bungeman38d909e2016-08-02 14:40:46 -0700533 sk_sp<SkData> encoded(SkData::MakeFromFileName(path.c_str()));
msarett438b2ad2015-04-09 12:43:10 -0700534 if (!encoded) {
mtkleinc41fd922016-03-08 09:01:39 -0800535 info("Couldn't read %s.", path.c_str());
msarett438b2ad2015-04-09 12:43:10 -0700536 return;
537 }
Mike Reedede7bac2017-07-23 15:30:02 -0400538 std::unique_ptr<SkCodec> codec = SkCodec::MakeFromData(encoded);
halcanary96fcdcc2015-08-27 07:41:13 -0700539 if (nullptr == codec.get()) {
mtkleinc41fd922016-03-08 09:01:39 -0800540 info("Couldn't create codec for %s.", path.c_str());
msarett438b2ad2015-04-09 12:43:10 -0700541 return;
542 }
543
scroggo9366aff2016-05-20 08:38:54 -0700544 // native scaling is only supported by WEBP and JPEG
545 bool supportsNativeScaling = false;
msarett438b2ad2015-04-09 12:43:10 -0700546
msarett91c22b22016-02-22 12:27:46 -0800547 SkTArray<CodecSrc::Mode> nativeModes;
548 nativeModes.push_back(CodecSrc::kCodec_Mode);
549 nativeModes.push_back(CodecSrc::kCodecZeroInit_Mode);
msarett91c22b22016-02-22 12:27:46 -0800550 switch (codec->getEncodedFormat()) {
Hal Canarydb683012016-11-23 08:55:18 -0700551 case SkEncodedImageFormat::kJPEG:
msarett91c22b22016-02-22 12:27:46 -0800552 nativeModes.push_back(CodecSrc::kScanline_Mode);
553 nativeModes.push_back(CodecSrc::kStripe_Mode);
554 nativeModes.push_back(CodecSrc::kCroppedScanline_Mode);
scroggo9366aff2016-05-20 08:38:54 -0700555 supportsNativeScaling = true;
msarett91c22b22016-02-22 12:27:46 -0800556 break;
Hal Canarydb683012016-11-23 08:55:18 -0700557 case SkEncodedImageFormat::kWEBP:
msarett91c22b22016-02-22 12:27:46 -0800558 nativeModes.push_back(CodecSrc::kSubset_Mode);
scroggo9366aff2016-05-20 08:38:54 -0700559 supportsNativeScaling = true;
msarett91c22b22016-02-22 12:27:46 -0800560 break;
Hal Canarydb683012016-11-23 08:55:18 -0700561 case SkEncodedImageFormat::kDNG:
msarettb65e6042016-02-23 05:37:25 -0800562 break;
msarett91c22b22016-02-22 12:27:46 -0800563 default:
564 nativeModes.push_back(CodecSrc::kScanline_Mode);
msarett91c22b22016-02-22 12:27:46 -0800565 break;
566 }
msarett9e707a02015-09-01 14:57:57 -0700567
msarett91c22b22016-02-22 12:27:46 -0800568 SkTArray<CodecSrc::DstColorType> colorTypes;
569 colorTypes.push_back(CodecSrc::kGetFromCanvas_DstColorType);
msarett34e0ec42016-04-22 16:27:24 -0700570 colorTypes.push_back(CodecSrc::kNonNative8888_Always_DstColorType);
msarett36c37962015-09-02 13:20:52 -0700571 switch (codec->getInfo().colorType()) {
572 case kGray_8_SkColorType:
msarett91c22b22016-02-22 12:27:46 -0800573 colorTypes.push_back(CodecSrc::kGrayscale_Always_DstColorType);
msarett36c37962015-09-02 13:20:52 -0700574 break;
575 default:
msarett36c37962015-09-02 13:20:52 -0700576 break;
577 }
msarett9e707a02015-09-01 14:57:57 -0700578
scroggoc5560be2016-02-03 09:42:42 -0800579 SkTArray<SkAlphaType> alphaModes;
580 alphaModes.push_back(kPremul_SkAlphaType);
scroggof2c96a22016-05-20 11:08:27 -0700581 if (codec->getInfo().alphaType() != kOpaque_SkAlphaType) {
582 alphaModes.push_back(kUnpremul_SkAlphaType);
scroggoc5560be2016-02-03 09:42:42 -0800583 }
msarettb714fb02016-01-22 14:46:42 -0800584
585 for (CodecSrc::Mode mode : nativeModes) {
scroggo9366aff2016-05-20 08:38:54 -0700586 for (CodecSrc::DstColorType colorType : colorTypes) {
587 for (SkAlphaType alphaType : alphaModes) {
scroggof2c96a22016-05-20 11:08:27 -0700588 // Only test kCroppedScanline_Mode when the alpha type is premul. The test is
scroggo9366aff2016-05-20 08:38:54 -0700589 // slow and won't be interestingly different with different alpha types.
590 if (CodecSrc::kCroppedScanline_Mode == mode &&
scroggof2c96a22016-05-20 11:08:27 -0700591 kPremul_SkAlphaType != alphaType) {
scroggo9366aff2016-05-20 08:38:54 -0700592 continue;
593 }
msarett91c22b22016-02-22 12:27:46 -0800594
scroggo9366aff2016-05-20 08:38:54 -0700595 push_codec_src(path, mode, colorType, alphaType, 1.0f);
msarettf3dc1882016-04-26 13:06:38 -0700596
scroggo9366aff2016-05-20 08:38:54 -0700597 // Skip kNonNative on different native scales. It won't be interestingly
598 // different.
599 if (supportsNativeScaling &&
600 CodecSrc::kNonNative8888_Always_DstColorType == colorType) {
601 // Native Scales
602 // SkJpegCodec natively supports scaling to the following:
603 for (auto scale : { 0.125f, 0.25f, 0.375f, 0.5f, 0.625f, 0.750f, 0.875f }) {
604 push_codec_src(path, mode, colorType, alphaType, scale);
605 }
scroggoc5560be2016-02-03 09:42:42 -0800606 }
msarett9e707a02015-09-01 14:57:57 -0700607 }
608 }
msarett0a242972015-06-11 14:27:27 -0700609 }
msarett36c37962015-09-02 13:20:52 -0700610
scroggo19b91532016-10-24 09:03:26 -0700611 {
612 std::vector<SkCodec::FrameInfo> frameInfos = codec->getFrameInfo();
613 if (frameInfos.size() > 1) {
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400614 for (auto dstCT : { CodecSrc::kNonNative8888_Always_DstColorType,
615 CodecSrc::kGetFromCanvas_DstColorType }) {
616 for (auto at : { kUnpremul_SkAlphaType, kPremul_SkAlphaType }) {
617 push_codec_src(path, CodecSrc::kAnimated_Mode, dstCT, at, 1.0f);
618 }
619 }
scroggo19b91532016-10-24 09:03:26 -0700620 }
621
622 }
623
scroggoe4499842016-02-25 11:03:47 -0800624 if (FLAGS_simpleCodec) {
625 return;
626 }
627
msarett3d9d7a72015-10-21 10:27:10 -0700628 const int sampleSizes[] = { 1, 2, 3, 4, 5, 6, 7, 8 };
msarett36c37962015-09-02 13:20:52 -0700629
msarett3d9d7a72015-10-21 10:27:10 -0700630 for (int sampleSize : sampleSizes) {
msarett91c22b22016-02-22 12:27:46 -0800631 for (CodecSrc::DstColorType colorType : colorTypes) {
scroggoc5560be2016-02-03 09:42:42 -0800632 for (SkAlphaType alphaType : alphaModes) {
msarettf3dc1882016-04-26 13:06:38 -0700633 // We can exercise all of the kNonNative support code in the swizzler with just a
634 // few sample sizes. Skip the rest.
635 if (CodecSrc::kNonNative8888_Always_DstColorType == colorType && sampleSize > 3) {
636 continue;
637 }
638
scroggof8dc9df2016-05-16 09:04:13 -0700639 push_android_codec_src(path, colorType, alphaType, sampleSize);
msarett3d9d7a72015-10-21 10:27:10 -0700640 }
msarett36c37962015-09-02 13:20:52 -0700641 }
642 }
msarett18976312016-03-09 14:20:58 -0800643
644 static const char* const rawExts[] = {
645 "arw", "cr2", "dng", "nef", "nrw", "orf", "raf", "rw2", "pef", "srw",
646 "ARW", "CR2", "DNG", "NEF", "NRW", "ORF", "RAF", "RW2", "PEF", "SRW",
647 };
648
649 // There is not currently a reason to test RAW images on image generator.
650 // If we want to enable these tests, we will need to fix skbug.com/5079.
651 for (const char* ext : rawExts) {
652 if (path.endsWith(ext)) {
653 return;
654 }
655 }
656
657 // Push image generator GPU test.
brianosmanc9ced392016-03-24 07:27:43 -0700658 push_image_gen_src(path, ImageGenSrc::kCodec_Mode, codec->getInfo().alphaType(), true);
msarett18976312016-03-09 14:20:58 -0800659
660 // Push image generator CPU tests.
661 for (SkAlphaType alphaType : alphaModes) {
662 push_image_gen_src(path, ImageGenSrc::kCodec_Mode, alphaType, false);
663
664#if defined(SK_BUILD_FOR_MAC) || defined(SK_BUILD_FOR_IOS)
Hal Canarydb683012016-11-23 08:55:18 -0700665 if (SkEncodedImageFormat::kWEBP != codec->getEncodedFormat() &&
666 SkEncodedImageFormat::kWBMP != codec->getEncodedFormat() &&
msarett18976312016-03-09 14:20:58 -0800667 kUnpremul_SkAlphaType != alphaType)
668 {
669 push_image_gen_src(path, ImageGenSrc::kPlatform_Mode, alphaType, false);
670 }
msarettfc0b6d12016-03-17 13:50:17 -0700671#elif defined(SK_BUILD_FOR_WIN)
Hal Canarydb683012016-11-23 08:55:18 -0700672 if (SkEncodedImageFormat::kWEBP != codec->getEncodedFormat() &&
673 SkEncodedImageFormat::kWBMP != codec->getEncodedFormat())
msarettfc0b6d12016-03-17 13:50:17 -0700674 {
675 push_image_gen_src(path, ImageGenSrc::kPlatform_Mode, alphaType, false);
676 }
msarett18976312016-03-09 14:20:58 -0800677#endif
678 }
msarett438b2ad2015-04-09 12:43:10 -0700679}
680
msarettd1227a72016-05-18 06:23:57 -0700681static void push_brd_src(Path path, CodecSrc::DstColorType dstColorType, BRDSrc::Mode mode,
682 uint32_t sampleSize) {
683 SkString folder("brd_android_codec");
msaretta5783ae2015-09-08 15:35:32 -0700684 switch (mode) {
685 case BRDSrc::kFullImage_Mode:
686 break;
687 case BRDSrc::kDivisor_Mode:
688 folder.append("_divisor");
689 break;
690 default:
691 SkASSERT(false);
692 return;
693 }
694
695 switch (dstColorType) {
696 case CodecSrc::kGetFromCanvas_DstColorType:
697 break;
msaretta5783ae2015-09-08 15:35:32 -0700698 case CodecSrc::kGrayscale_Always_DstColorType:
699 folder.append("_kGray");
700 break;
701 default:
702 SkASSERT(false);
703 return;
704 }
705
706 if (1 != sampleSize) {
msarett4b0778e2015-11-13 09:59:11 -0800707 folder.appendf("_%.3f", 1.0f / (float) sampleSize);
msaretta5783ae2015-09-08 15:35:32 -0700708 }
709
msarettd1227a72016-05-18 06:23:57 -0700710 BRDSrc* src = new BRDSrc(path, mode, dstColorType, sampleSize);
msaretta5783ae2015-09-08 15:35:32 -0700711 push_src("image", folder, src);
712}
713
714static void push_brd_srcs(Path path) {
Leon Scroggins IIIbace7a92017-07-05 11:39:27 -0400715 // Only run grayscale to one sampleSize and Mode. Though interesting
716 // to test grayscale, it should not reveal anything across various
scroggo24a9bd72016-05-20 06:02:42 -0700717 // sampleSizes and Modes
Leon Scroggins IIIbace7a92017-07-05 11:39:27 -0400718 // Arbitrarily choose Mode and sampleSize.
719 push_brd_src(path, CodecSrc::kGrayscale_Always_DstColorType, BRDSrc::kFullImage_Mode, 2);
scroggo24a9bd72016-05-20 06:02:42 -0700720
721
scroggo501b7342015-11-03 07:55:11 -0800722 // Test on a variety of sampleSizes, making sure to include:
723 // - 2, 4, and 8, which are natively supported by jpeg
724 // - multiples of 2 which are not divisible by 4 (analogous for 4)
725 // - larger powers of two, since BRD clients generally use powers of 2
726 // We will only produce output for the larger sizes on large images.
727 const uint32_t sampleSizes[] = { 1, 2, 3, 4, 5, 6, 7, 8, 12, 16, 24, 32, 64 };
msarett6efbe052015-09-11 09:01:16 -0700728
msaretta5783ae2015-09-08 15:35:32 -0700729 const BRDSrc::Mode modes[] = {
msarett26ad17b2015-10-22 07:29:19 -0700730 BRDSrc::kFullImage_Mode,
731 BRDSrc::kDivisor_Mode,
msaretta5783ae2015-09-08 15:35:32 -0700732 };
733
msarettd1227a72016-05-18 06:23:57 -0700734 for (uint32_t sampleSize : sampleSizes) {
scroggo24a9bd72016-05-20 06:02:42 -0700735 for (BRDSrc::Mode mode : modes) {
736 push_brd_src(path, CodecSrc::kGetFromCanvas_DstColorType, mode, sampleSize);
msaretta5783ae2015-09-08 15:35:32 -0700737 }
738 }
739}
740
741static bool brd_supported(const char* ext) {
msarett8c8f22a2015-04-01 06:58:48 -0700742 static const char* const exts[] = {
msaretta5783ae2015-09-08 15:35:32 -0700743 "jpg", "jpeg", "png", "webp",
744 "JPG", "JPEG", "PNG", "WEBP",
msarett8c8f22a2015-04-01 06:58:48 -0700745 };
746
747 for (uint32_t i = 0; i < SK_ARRAY_COUNT(exts); i++) {
748 if (0 == strcmp(exts[i], ext)) {
749 return true;
750 }
751 }
752 return false;
scroggo9b77ddd2015-03-19 06:03:39 -0700753}
754
fmalitaa2b9fdf2016-08-03 19:53:36 -0700755template <typename T>
756void gather_file_srcs(const SkCommandLineFlags::StringArray& flags, const char* ext) {
757 for (int i = 0; i < flags.count(); i++) {
758 const char* path = flags[i];
759 if (sk_isdir(path)) {
760 SkOSFile::Iter it(path, ext);
761 for (SkString file; it.next(&file); ) {
762 push_src(ext, "", new T(SkOSPath::Join(path, file.c_str())));
763 }
764 } else {
765 push_src(ext, "", new T(path));
766 }
767 }
768}
769
scroggo86737142016-02-03 12:19:11 -0800770static bool gather_srcs() {
mtklein748ca3b2015-01-15 10:56:12 -0800771 for (const skiagm::GMRegistry* r = skiagm::GMRegistry::Head(); r; r = r->next()) {
djsollen54416de2015-04-03 07:24:48 -0700772 push_src("gm", "", new GMSrc(r->factory()));
mtklein748ca3b2015-01-15 10:56:12 -0800773 }
scroggo86737142016-02-03 12:19:11 -0800774
fmalitaa2b9fdf2016-08-03 19:53:36 -0700775 gather_file_srcs<SKPSrc>(FLAGS_skps, "skp");
776 gather_file_srcs<MSKPSrc>(FLAGS_mskps, "mskp");
777#if defined(SK_XML)
778 gather_file_srcs<SVGSrc>(FLAGS_svgs, "svg");
779#endif
halcanary45420a92016-06-02 12:41:14 -0700780
scroggo86737142016-02-03 12:19:11 -0800781 SkTArray<SkString> images;
msarett69deca82016-04-29 09:38:40 -0700782 if (!CollectImages(FLAGS_images, &images)) {
scroggo86737142016-02-03 12:19:11 -0800783 return false;
784 }
785
786 for (auto image : images) {
787 push_codec_srcs(image);
scroggoe4499842016-02-25 11:03:47 -0800788 if (FLAGS_simpleCodec) {
789 continue;
790 }
791
mtklein21eaf3b2016-02-08 12:39:59 -0800792 const char* ext = strrchr(image.c_str(), '.');
793 if (ext && brd_supported(ext+1)) {
scroggo86737142016-02-03 12:19:11 -0800794 push_brd_srcs(image);
mtklein709d2c32015-01-15 08:30:25 -0800795 }
mtklein709d2c32015-01-15 08:30:25 -0800796 }
scroggo86737142016-02-03 12:19:11 -0800797
msarett69deca82016-04-29 09:38:40 -0700798 SkTArray<SkString> colorImages;
799 if (!CollectImages(FLAGS_colorImages, &colorImages)) {
800 return false;
801 }
802
803 for (auto colorImage : colorImages) {
msarett9ce3a542016-07-15 13:54:38 -0700804 ColorCodecSrc* src = new ColorCodecSrc(colorImage, ColorCodecSrc::kBaseline_Mode,
805 kN32_SkColorType);
msarettb8d1aac2016-08-04 12:22:06 -0700806 push_src("colorImage", "color_codec_baseline", src);
msarett888dc162016-05-23 10:21:17 -0700807
msarett9ce3a542016-07-15 13:54:38 -0700808 src = new ColorCodecSrc(colorImage, ColorCodecSrc::kDst_HPZR30w_Mode, kN32_SkColorType);
msarettb8d1aac2016-08-04 12:22:06 -0700809 push_src("colorImage", "color_codec_HPZR30w", src);
msarett9ce3a542016-07-15 13:54:38 -0700810 // TODO (msarett):
811 // Should we test this Dst in F16 mode (even though the Dst gamma is 2.2 instead of sRGB)?
msarett9876ac52016-06-01 14:47:18 -0700812
msarett9ce3a542016-07-15 13:54:38 -0700813 src = new ColorCodecSrc(colorImage, ColorCodecSrc::kDst_sRGB_Mode, kN32_SkColorType);
msarettb8d1aac2016-08-04 12:22:06 -0700814 push_src("colorImage", "color_codec_sRGB_kN32", src);
msarett9ce3a542016-07-15 13:54:38 -0700815 src = new ColorCodecSrc(colorImage, ColorCodecSrc::kDst_sRGB_Mode, kRGBA_F16_SkColorType);
msarettb8d1aac2016-08-04 12:22:06 -0700816 push_src("colorImage", "color_codec_sRGB_kF16", src);
msarett69deca82016-04-29 09:38:40 -0700817 }
818
scroggo86737142016-02-03 12:19:11 -0800819 return true;
mtklein709d2c32015-01-15 08:30:25 -0800820}
821
kkinnunen3e980c32015-12-23 01:33:00 -0800822static void push_sink(const SkCommandLineConfig& config, Sink* s) {
Ben Wagner145dbcd2016-11-03 14:40:50 -0400823 std::unique_ptr<Sink> sink(s);
kkinnunen3e980c32015-12-23 01:33:00 -0800824
mtkleine0effd62015-07-29 06:37:28 -0700825 // Try a simple Src as a canary. If it fails, skip this sink.
mtklein748ca3b2015-01-15 10:56:12 -0800826 struct : public Src {
mtkleine0effd62015-07-29 06:37:28 -0700827 Error draw(SkCanvas* c) const override {
828 c->drawRect(SkRect::MakeWH(1,1), SkPaint());
829 return "";
830 }
mtklein36352bf2015-03-25 18:17:31 -0700831 SkISize size() const override { return SkISize::Make(16, 16); }
mtkleine0effd62015-07-29 06:37:28 -0700832 Name name() const override { return "justOneRect"; }
833 } justOneRect;
mtklein114c3cd2015-01-15 10:15:02 -0800834
mtklein748ca3b2015-01-15 10:56:12 -0800835 SkBitmap bitmap;
836 SkDynamicMemoryWStream stream;
mtkleinb9eb4ac2015-02-02 18:26:03 -0800837 SkString log;
mtkleine0effd62015-07-29 06:37:28 -0700838 Error err = sink->draw(justOneRect, &bitmap, &stream, &log);
mtklein4089ef72015-03-05 08:40:28 -0800839 if (err.isFatal()) {
mtkleinc41fd922016-03-08 09:01:39 -0800840 info("Could not run %s: %s\n", config.getTag().c_str(), err.c_str());
mtklein05641a52015-04-21 10:49:13 -0700841 exit(1);
mtklein114c3cd2015-01-15 10:15:02 -0800842 }
843
mtkleine0effd62015-07-29 06:37:28 -0700844 TaggedSink& ts = gSinks.push_back();
mtklein18300a32016-03-16 13:53:35 -0700845 ts.reset(sink.release());
kkinnunen3e980c32015-12-23 01:33:00 -0800846 ts.tag = config.getTag();
mtklein748ca3b2015-01-15 10:56:12 -0800847}
848
849static bool gpu_supported() {
850#if SK_SUPPORT_GPU
851 return FLAGS_gpu;
852#else
853 return false;
854#endif
855}
kkinnunen9ebc3f02015-12-21 23:48:13 -0800856
csmartdalton008b9d82017-02-22 12:00:42 -0700857static Sink* create_sink(const GrContextOptions& grCtxOptions, const SkCommandLineConfig* config) {
kkinnunen3e980c32015-12-23 01:33:00 -0800858#if SK_SUPPORT_GPU
859 if (gpu_supported()) {
860 if (const SkCommandLineConfigGpu* gpuConfig = config->asConfigGpu()) {
bsalomon85b4b532016-04-05 11:06:27 -0700861 GrContextFactory::ContextType contextType = gpuConfig->getContextType();
csmartdaltone812d492017-02-21 12:36:05 -0700862 GrContextFactory::ContextOverrides contextOverrides = gpuConfig->getContextOverrides();
csmartdalton008b9d82017-02-22 12:00:42 -0700863 GrContextFactory testFactory(grCtxOptions);
csmartdaltone812d492017-02-21 12:36:05 -0700864 if (!testFactory.get(contextType, contextOverrides)) {
mtkleinc41fd922016-03-08 09:01:39 -0800865 info("WARNING: can not create GPU context for config '%s'. "
866 "GM tests will be skipped.\n", gpuConfig->getTag().c_str());
kkinnunen3e980c32015-12-23 01:33:00 -0800867 return nullptr;
868 }
csmartdaltone812d492017-02-21 12:36:05 -0700869 return new GPUSink(contextType, contextOverrides, gpuConfig->getSamples(),
brianosmand93c1202016-03-10 07:49:08 -0800870 gpuConfig->getUseDIText(), gpuConfig->getColorType(),
Brian Salomonce5ee602017-07-17 11:31:31 -0400871 gpuConfig->getAlphaType(), sk_ref_sp(gpuConfig->getColorSpace()),
872 FLAGS_gpu_threading);
kkinnunen3e980c32015-12-23 01:33:00 -0800873 }
874 }
875#endif
876
877#define SINK(t, sink, ...) if (config->getBackend().equals(t)) { return new sink(__VA_ARGS__); }
878
mtklein748ca3b2015-01-15 10:56:12 -0800879 if (FLAGS_cpu) {
Matt Sarett77a7a1b2017-02-07 13:56:11 -0500880 auto srgbColorSpace = SkColorSpace::MakeSRGB();
881 auto srgbLinearColorSpace = SkColorSpace::MakeSRGBLinear();
brianosmanb109b8c2016-06-16 13:03:24 -0700882
Matt Sarettd2228302017-03-02 08:53:46 -0500883 SINK("565", RasterSink, kRGB_565_SkColorType);
884 SINK("8888", RasterSink, kN32_SkColorType);
885 SINK("srgb", RasterSink, kN32_SkColorType, srgbColorSpace);
Matt Sarettd2228302017-03-02 08:53:46 -0500886 SINK("f16", RasterSink, kRGBA_F16_SkColorType, srgbLinearColorSpace);
Hal Canaryc7d295e2017-07-20 15:36:00 -0400887 SINK("pdf", PDFSink, false, SK_ScalarDefaultRasterDPI);
Matt Sarettd2228302017-03-02 08:53:46 -0500888 SINK("skp", SKPSink);
889 SINK("pipe", PipeSink);
890 SINK("svg", SVGSink);
891 SINK("null", NullSink);
892 SINK("xps", XPSSink);
Hal Canaryc7d295e2017-07-20 15:36:00 -0400893 SINK("pdfa", PDFSink, true, SK_ScalarDefaultRasterDPI);
894 SINK("pdf300", PDFSink, false, 300);
Hal Canary85c7fe82016-10-25 10:33:27 -0400895 SINK("jsdebug", DebugSink);
mtklein748ca3b2015-01-15 10:56:12 -0800896 }
897#undef SINK
halcanary96fcdcc2015-08-27 07:41:13 -0700898 return nullptr;
mtklein114c3cd2015-01-15 10:15:02 -0800899}
900
Mike Klein841101d2017-03-10 09:55:51 -0500901static sk_sp<SkColorSpace> adobe_rgb() {
902 return SkColorSpace::MakeRGB(SkColorSpace::kSRGB_RenderTargetGamma,
903 SkColorSpace::kAdobeRGB_Gamut);
904}
905
Mike Klein919cc452017-03-18 15:36:52 +0000906static sk_sp<SkColorSpace> rgb_to_gbr() {
907 float gbr[9];
908 gbr[0] = gSRGB_toXYZD50[1];
909 gbr[1] = gSRGB_toXYZD50[2];
910 gbr[2] = gSRGB_toXYZD50[0];
911 gbr[3] = gSRGB_toXYZD50[4];
912 gbr[4] = gSRGB_toXYZD50[5];
913 gbr[5] = gSRGB_toXYZD50[3];
914 gbr[6] = gSRGB_toXYZD50[7];
915 gbr[7] = gSRGB_toXYZD50[8];
916 gbr[8] = gSRGB_toXYZD50[6];
917 SkMatrix44 toXYZD50(SkMatrix44::kUninitialized_Constructor);
918 toXYZD50.set3x3RowMajorf(gbr);
919 return SkColorSpace::MakeRGB(SkColorSpace::kSRGB_RenderTargetGamma, toXYZD50);
920}
921
kkinnunen3e980c32015-12-23 01:33:00 -0800922static Sink* create_via(const SkString& tag, Sink* wrapped) {
923#define VIA(t, via, ...) if (tag.equals(t)) { return new via(__VA_ARGS__); }
Mike Klein919cc452017-03-18 15:36:52 +0000924 VIA("adobe", ViaCSXform, wrapped, adobe_rgb(), false);
925 VIA("gbr", ViaCSXform, wrapped, rgb_to_gbr(), true);
mtklein9c5052f2016-08-06 12:51:51 -0700926 VIA("lite", ViaLite, wrapped);
reed54dc4872016-09-13 08:09:45 -0700927 VIA("pipe", ViaPipe, wrapped);
halcanary96fcdcc2015-08-27 07:41:13 -0700928 VIA("twice", ViaTwice, wrapped);
Mike Reedbae888e2017-02-18 16:50:45 -0500929#ifdef TEST_VIA_SVG
Mike Reedf67c4592017-02-17 17:06:11 -0500930 VIA("svg", ViaSVG, wrapped);
Mike Reedbae888e2017-02-18 16:50:45 -0500931#endif
halcanary96fcdcc2015-08-27 07:41:13 -0700932 VIA("serialize", ViaSerialization, wrapped);
mtklein4a34ecb2016-01-08 10:19:35 -0800933 VIA("pic", ViaPicture, wrapped);
halcanary96fcdcc2015-08-27 07:41:13 -0700934 VIA("2ndpic", ViaSecondPicture, wrapped);
mtkleind31c13d2015-05-05 12:59:56 -0700935 VIA("sp", ViaSingletonPictures, wrapped);
reedbabc3de2016-07-08 08:43:27 -0700936 VIA("defer", ViaDefer, wrapped);
halcanary96fcdcc2015-08-27 07:41:13 -0700937 VIA("tiles", ViaTiles, 256, 256, nullptr, wrapped);
mtklein7edca212015-01-21 13:18:51 -0800938 VIA("tiles_rt", ViaTiles, 256, 256, new SkRTreeFactory, wrapped);
mtklein748ca3b2015-01-15 10:56:12 -0800939
mtkleind603b222015-02-17 11:13:33 -0800940 if (FLAGS_matrix.count() == 4) {
mtklein748ca3b2015-01-15 10:56:12 -0800941 SkMatrix m;
mtkleind603b222015-02-17 11:13:33 -0800942 m.reset();
943 m.setScaleX((SkScalar)atof(FLAGS_matrix[0]));
944 m.setSkewX ((SkScalar)atof(FLAGS_matrix[1]));
945 m.setSkewY ((SkScalar)atof(FLAGS_matrix[2]));
946 m.setScaleY((SkScalar)atof(FLAGS_matrix[3]));
947 VIA("matrix", ViaMatrix, m, wrapped);
948 VIA("upright", ViaUpright, m, wrapped);
mtklein748ca3b2015-01-15 10:56:12 -0800949 }
tomhudson64de1e12015-03-05 08:01:07 -0800950
mtklein748ca3b2015-01-15 10:56:12 -0800951#undef VIA
halcanary96fcdcc2015-08-27 07:41:13 -0700952 return nullptr;
mtklein114c3cd2015-01-15 10:15:02 -0800953}
954
Ben Wagnerf28d4722017-08-11 17:33:22 -0400955static bool gather_sinks(const GrContextOptions& grCtxOptions, bool defaultConfigs) {
kkinnunen3e980c32015-12-23 01:33:00 -0800956 SkCommandLineConfigArray configs;
957 ParseConfigs(FLAGS_config, &configs);
958 for (int i = 0; i < configs.count(); i++) {
959 const SkCommandLineConfig& config = *configs[i];
csmartdalton008b9d82017-02-22 12:00:42 -0700960 Sink* sink = create_sink(grCtxOptions, &config);
kkinnunen3e980c32015-12-23 01:33:00 -0800961 if (sink == nullptr) {
mtkleinc41fd922016-03-08 09:01:39 -0800962 info("Skipping config %s: Don't understand '%s'.\n", config.getTag().c_str(),
963 config.getTag().c_str());
kkinnunen3e980c32015-12-23 01:33:00 -0800964 continue;
965 }
mtklein748ca3b2015-01-15 10:56:12 -0800966
kkinnunen3e980c32015-12-23 01:33:00 -0800967 const SkTArray<SkString>& parts = config.getViaParts();
968 for (int j = parts.count(); j-- > 0;) {
969 const SkString& part = parts[j];
970 Sink* next = create_via(part, sink);
halcanary96fcdcc2015-08-27 07:41:13 -0700971 if (next == nullptr) {
mtkleinc41fd922016-03-08 09:01:39 -0800972 info("Skipping config %s: Don't understand '%s'.\n", config.getTag().c_str(),
973 part.c_str());
mtklein748ca3b2015-01-15 10:56:12 -0800974 delete sink;
halcanary96fcdcc2015-08-27 07:41:13 -0700975 sink = nullptr;
mtklein748ca3b2015-01-15 10:56:12 -0800976 break;
977 }
978 sink = next;
979 }
980 if (sink) {
981 push_sink(config, sink);
mtklein114c3cd2015-01-15 10:15:02 -0800982 }
983 }
brianosman05c987c2016-05-09 13:42:16 -0700984
985 // If no configs were requested (just running tests, perhaps?), then we're okay.
Ben Wagnerf28d4722017-08-11 17:33:22 -0400986 if (configs.count() == 0 ||
987 // If we're using the default configs, we're okay.
988 defaultConfigs ||
Ben Wagner32fa5102017-08-10 21:25:55 -0400989 // If we've been told to ignore undefined flags, we're okay.
990 FLAGS_undefok ||
991 // Otherwise, make sure that all specified configs have become sinks.
992 configs.count() == gSinks.count()) {
993 return true;
994 }
995 info("Invalid --config. Use --undefok to bypass this warning.\n");
996 return false;
mtklein114c3cd2015-01-15 10:15:02 -0800997}
mtklein709d2c32015-01-15 08:30:25 -0800998
mtkleina5114d72015-08-24 13:27:01 -0700999static bool dump_png(SkBitmap bitmap, const char* path, const char* md5) {
Mike Klein13b6afd2017-06-12 12:45:41 -04001000 SkPixmap pm;
1001 if (!bitmap.peekPixels(&pm)) {
1002 return false; // Ought to never happen... we're already read-back at this point.
mtkleina5114d72015-08-24 13:27:01 -07001003 }
Mike Klein13b6afd2017-06-12 12:45:41 -04001004 SkFILEWStream dst{path};
mtkleina5114d72015-08-24 13:27:01 -07001005
mtkleind69ece62015-09-10 10:37:44 -07001006 SkString description;
1007 description.append("Key: ");
1008 for (int i = 0; i < FLAGS_key.count(); i++) {
1009 description.appendf("%s ", FLAGS_key[i]);
1010 }
1011 description.append("Properties: ");
1012 for (int i = 0; i < FLAGS_properties.count(); i++) {
1013 description.appendf("%s ", FLAGS_properties[i]);
1014 }
1015 description.appendf("MD5: %s", md5);
1016
Mike Klein13b6afd2017-06-12 12:45:41 -04001017 const char* comments[] = {
1018 "Author", "DM dump_png()",
1019 "Description", description.c_str(),
1020 };
1021 size_t lengths[] = {
1022 strlen(comments[0])+1, strlen(comments[1])+1,
1023 strlen(comments[2])+1, strlen(comments[3])+1,
1024 };
mtkleina5114d72015-08-24 13:27:01 -07001025
Mike Klein13b6afd2017-06-12 12:45:41 -04001026 SkPngEncoder::Options options;
1027 options.fComments = SkDataTable::MakeCopyArrays((const void**)comments, lengths, 4);
1028 options.fFilterFlags = SkPngEncoder::FilterFlag::kNone;
1029 options.fZLibLevel = 1;
1030 options.fUnpremulBehavior = pm.colorSpace() ? SkTransferFunctionBehavior::kRespect
1031 : SkTransferFunctionBehavior::kIgnore;
1032 return SkPngEncoder::Encode(&dst, pm, options);
mtkleina5114d72015-08-24 13:27:01 -07001033}
1034
mtkleina2ef6422015-01-15 13:44:22 -08001035static bool match(const char* needle, const char* haystack) {
Chris Daltonecf78ac2017-08-15 15:43:08 -06001036 if ('~' == needle[0]) {
1037 return !match(needle + 1, haystack);
1038 }
1039 if (0 == strcmp("_", needle)) {
1040 return true;
1041 }
1042 return nullptr != strstr(haystack, needle);
mtkleina2ef6422015-01-15 13:44:22 -08001043}
1044
mtklein3eed7dd2016-02-24 19:07:07 -08001045static bool is_blacklisted(const char* sink, const char* src,
1046 const char* srcOptions, const char* name) {
mtklein0d243ff2015-04-03 07:51:00 -07001047 for (int i = 0; i < FLAGS_blacklist.count() - 3; i += 4) {
mtkleina2ef6422015-01-15 13:44:22 -08001048 if (match(FLAGS_blacklist[i+0], sink) &&
djsollen54416de2015-04-03 07:24:48 -07001049 match(FLAGS_blacklist[i+1], src) &&
1050 match(FLAGS_blacklist[i+2], srcOptions) &&
1051 match(FLAGS_blacklist[i+3], name)) {
mtklein3eed7dd2016-02-24 19:07:07 -08001052 return true;
mtkleina2ef6422015-01-15 13:44:22 -08001053 }
1054 }
mtklein3eed7dd2016-02-24 19:07:07 -08001055 return false;
mtkleina2ef6422015-01-15 13:44:22 -08001056}
1057
mtkleincd50bca2016-01-05 06:20:20 -08001058// Even when a Task Sink reports to be non-threadsafe (e.g. GPU), we know things like
1059// .png encoding are definitely thread safe. This lets us offload that work to CPU threads.
1060static SkTaskGroup gDefinitelyThreadSafeWork;
1061
mtklein748ca3b2015-01-15 10:56:12 -08001062// The finest-grained unit of work we can run: draw a single Src into a single Sink,
1063// report any errors, and perhaps write out the output: a .png of the bitmap, or a raw stream.
1064struct Task {
mtkleine0effd62015-07-29 06:37:28 -07001065 Task(const TaggedSrc& src, const TaggedSink& sink) : src(src), sink(sink) {}
1066 const TaggedSrc& src;
1067 const TaggedSink& sink;
mtklein748ca3b2015-01-15 10:56:12 -08001068
mtklein21eaf3b2016-02-08 12:39:59 -08001069 static void Run(const Task& task) {
1070 SkString name = task.src->name();
mtkleine0effd62015-07-29 06:37:28 -07001071
mtkleinb9eb4ac2015-02-02 18:26:03 -08001072 SkString log;
mtklein3eed7dd2016-02-24 19:07:07 -08001073 if (!FLAGS_dryRun) {
mtklein748ca3b2015-01-15 10:56:12 -08001074 SkBitmap bitmap;
1075 SkDynamicMemoryWStream stream;
mtklein3eed7dd2016-02-24 19:07:07 -08001076 start(task.sink.tag.c_str(), task.src.tag.c_str(),
1077 task.src.options.c_str(), name.c_str());
mtklein21eaf3b2016-02-08 12:39:59 -08001078 Error err = task.sink->draw(*task.src, &bitmap, &stream, &log);
mtkleinb3b13b72016-03-07 13:20:52 -08001079 if (!log.isEmpty()) {
mtkleinc41fd922016-03-08 09:01:39 -08001080 info("%s %s %s %s:\n%s\n", task.sink.tag.c_str()
1081 , task.src.tag.c_str()
1082 , task.src.options.c_str()
1083 , name.c_str()
1084 , log.c_str());
mtkleinb3b13b72016-03-07 13:20:52 -08001085 }
mtklein748ca3b2015-01-15 10:56:12 -08001086 if (!err.isEmpty()) {
mtklein4089ef72015-03-05 08:40:28 -08001087 if (err.isFatal()) {
djsollen54416de2015-04-03 07:24:48 -07001088 fail(SkStringPrintf("%s %s %s %s: %s",
mtklein21eaf3b2016-02-08 12:39:59 -08001089 task.sink.tag.c_str(),
1090 task.src.tag.c_str(),
1091 task.src.options.c_str(),
mtklein4089ef72015-03-05 08:40:28 -08001092 name.c_str(),
1093 err.c_str()));
mtkleinb37cb412015-03-18 05:27:14 -07001094 } else {
mtklein3eed7dd2016-02-24 19:07:07 -08001095 done(task.sink.tag.c_str(), task.src.tag.c_str(),
1096 task.src.options.c_str(), name.c_str());
mtkleinba6ada72016-01-21 09:39:35 -08001097 return;
mtklein4089ef72015-03-05 08:40:28 -08001098 }
mtklein748ca3b2015-01-15 10:56:12 -08001099 }
mtklein62bd1a62015-01-27 14:46:26 -08001100
mtkleincd50bca2016-01-05 06:20:20 -08001101 // We're likely switching threads here, so we must capture by value, [=] or [foo,bar].
Hal Canary0b833192017-03-14 14:35:02 -04001102 SkStreamAsset* data = stream.detachAsStream().release();
mtkleincd50bca2016-01-05 06:20:20 -08001103 gDefinitelyThreadSafeWork.add([task,name,bitmap,data]{
Ben Wagner145dbcd2016-11-03 14:40:50 -04001104 std::unique_ptr<SkStreamAsset> ownedData(data);
mtkleincd50bca2016-01-05 06:20:20 -08001105
mtkleincd50bca2016-01-05 06:20:20 -08001106 SkString md5;
1107 if (!FLAGS_writePath.isEmpty() || !FLAGS_readPath.isEmpty()) {
1108 SkMD5 hash;
1109 if (data->getLength()) {
1110 hash.writeStream(data, data->getLength());
1111 data->rewind();
mtklein38408462015-07-08 07:25:27 -07001112 } else {
mtkleincd50bca2016-01-05 06:20:20 -08001113 // If we're BGRA (Linux, Windows), swizzle over to RGBA (Mac, Android).
1114 // This helps eliminate multiple 0-pixel-diff hashes on gold.skia.org.
1115 // (Android's general slow speed breaks the tie arbitrarily in RGBA's favor.)
1116 // We might consider promoting 565 to RGBA too.
1117 if (bitmap.colorType() == kBGRA_8888_SkColorType) {
1118 SkBitmap swizzle;
Matt Sarett68b8e3d2017-04-28 11:15:22 -04001119 SkAssertResult(sk_tool_utils::copy_to(&swizzle, kRGBA_8888_SkColorType,
1120 bitmap));
mtkleincd50bca2016-01-05 06:20:20 -08001121 hash.write(swizzle.getPixels(), swizzle.getSize());
1122 } else {
1123 hash.write(bitmap.getPixels(), bitmap.getSize());
1124 }
1125 }
1126 SkMD5::Digest digest;
1127 hash.finish(digest);
1128 for (int i = 0; i < 16; i++) {
1129 md5.appendf("%02x", digest.data[i]);
mtklein38408462015-07-08 07:25:27 -07001130 }
mtklein62bd1a62015-01-27 14:46:26 -08001131 }
mtklein62bd1a62015-01-27 14:46:26 -08001132
mtkleincd50bca2016-01-05 06:20:20 -08001133 if (!FLAGS_readPath.isEmpty() &&
mtklein3eed7dd2016-02-24 19:07:07 -08001134 !gGold.contains(Gold(task.sink.tag, task.src.tag,
1135 task.src.options, name, md5))) {
mtkleincd50bca2016-01-05 06:20:20 -08001136 fail(SkStringPrintf("%s not found for %s %s %s %s in %s",
1137 md5.c_str(),
mtklein21eaf3b2016-02-08 12:39:59 -08001138 task.sink.tag.c_str(),
1139 task.src.tag.c_str(),
1140 task.src.options.c_str(),
mtkleincd50bca2016-01-05 06:20:20 -08001141 name.c_str(),
1142 FLAGS_readPath[0]));
mtklein748ca3b2015-01-15 10:56:12 -08001143 }
mtkleincd50bca2016-01-05 06:20:20 -08001144
1145 if (!FLAGS_writePath.isEmpty()) {
mtklein21eaf3b2016-02-08 12:39:59 -08001146 const char* ext = task.sink->fileExtension();
Mike Klein97d6a7a2017-07-24 10:37:19 -04001147 if (!FLAGS_dont_write.contains(ext)) {
1148 if (data->getLength()) {
1149 WriteToDisk(task, md5, ext, data, data->getLength(), nullptr);
1150 SkASSERT(bitmap.drawsNothing());
1151 } else if (!bitmap.drawsNothing()) {
1152 WriteToDisk(task, md5, ext, nullptr, 0, &bitmap);
1153 }
mtkleincd50bca2016-01-05 06:20:20 -08001154 }
1155 }
1156 });
mtklein748ca3b2015-01-15 10:56:12 -08001157 }
mtklein3eed7dd2016-02-24 19:07:07 -08001158 done(task.sink.tag.c_str(), task.src.tag.c_str(), task.src.options.c_str(), name.c_str());
mtklein748ca3b2015-01-15 10:56:12 -08001159 }
1160
1161 static void WriteToDisk(const Task& task,
mtklein62bd1a62015-01-27 14:46:26 -08001162 SkString md5,
1163 const char* ext,
mtklein748ca3b2015-01-15 10:56:12 -08001164 SkStream* data, size_t len,
mtklein62bd1a62015-01-27 14:46:26 -08001165 const SkBitmap* bitmap) {
mtklein409d4702016-02-29 07:38:01 -08001166 bool gammaCorrect = false;
1167 if (bitmap) {
Brian Osman7039f742016-11-01 15:56:16 -04001168 gammaCorrect = SkToBool(bitmap->info().colorSpace());
mtklein409d4702016-02-29 07:38:01 -08001169 }
1170
mtklein748ca3b2015-01-15 10:56:12 -08001171 JsonWriter::BitmapResult result;
djsollen54416de2015-04-03 07:24:48 -07001172 result.name = task.src->name();
mtklein3eed7dd2016-02-24 19:07:07 -08001173 result.config = task.sink.tag;
djsollen54416de2015-04-03 07:24:48 -07001174 result.sourceType = task.src.tag;
1175 result.sourceOptions = task.src.options;
1176 result.ext = ext;
mtklein409d4702016-02-29 07:38:01 -08001177 result.gammaCorrect = gammaCorrect;
djsollen54416de2015-04-03 07:24:48 -07001178 result.md5 = md5;
mtklein748ca3b2015-01-15 10:56:12 -08001179 JsonWriter::AddBitmapResult(result);
1180
mtkleinb0531a72015-04-07 13:38:48 -07001181 // If an MD5 is uninteresting, we want it noted in the JSON file,
1182 // but don't want to dump it out as a .png (or whatever ext is).
1183 if (gUninterestingHashes.contains(md5)) {
1184 return;
1185 }
1186
mtklein748ca3b2015-01-15 10:56:12 -08001187 const char* dir = FLAGS_writePath[0];
1188 if (0 == strcmp(dir, "@")) { // Needed for iOS.
1189 dir = FLAGS_resourcePath[0];
1190 }
1191 sk_mkdir(dir);
1192
1193 SkString path;
1194 if (FLAGS_nameByHash) {
1195 path = SkOSPath::Join(dir, result.md5.c_str());
1196 path.append(".");
1197 path.append(ext);
1198 if (sk_exists(path.c_str())) {
1199 return; // Content-addressed. If it exists already, we're done.
1200 }
1201 } else {
kkinnunen3e980c32015-12-23 01:33:00 -08001202 path = SkOSPath::Join(dir, task.sink.tag.c_str());
mtklein748ca3b2015-01-15 10:56:12 -08001203 sk_mkdir(path.c_str());
msarett9e707a02015-09-01 14:57:57 -07001204 path = SkOSPath::Join(path.c_str(), task.src.tag.c_str());
mtklein748ca3b2015-01-15 10:56:12 -08001205 sk_mkdir(path.c_str());
msarett9e707a02015-09-01 14:57:57 -07001206 if (strcmp(task.src.options.c_str(), "") != 0) {
1207 path = SkOSPath::Join(path.c_str(), task.src.options.c_str());
djsollen54416de2015-04-03 07:24:48 -07001208 sk_mkdir(path.c_str());
1209 }
mtklein748ca3b2015-01-15 10:56:12 -08001210 path = SkOSPath::Join(path.c_str(), task.src->name().c_str());
1211 path.append(".");
1212 path.append(ext);
1213 }
1214
mtklein748ca3b2015-01-15 10:56:12 -08001215 if (bitmap) {
mtkleina5114d72015-08-24 13:27:01 -07001216 if (!dump_png(*bitmap, path.c_str(), result.md5.c_str())) {
mtklein748ca3b2015-01-15 10:56:12 -08001217 fail(SkStringPrintf("Can't encode PNG to %s.\n", path.c_str()));
1218 return;
1219 }
1220 } else {
mtkleina5114d72015-08-24 13:27:01 -07001221 SkFILEWStream file(path.c_str());
1222 if (!file.isValid()) {
1223 fail(SkStringPrintf("Can't open %s for writing.\n", path.c_str()));
1224 return;
1225 }
mtklein748ca3b2015-01-15 10:56:12 -08001226 if (!file.writeStream(data, len)) {
1227 fail(SkStringPrintf("Can't write to %s.\n", path.c_str()));
1228 return;
1229 }
1230 }
1231 }
1232};
1233
mtklein748ca3b2015-01-15 10:56:12 -08001234/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
1235
1236// Unit tests don't fit so well into the Src/Sink model, so we give them special treatment.
1237
mtklein21eaf3b2016-02-08 12:39:59 -08001238static SkTDArray<skiatest::Test> gParallelTests, gSerialTests;
mtklein748ca3b2015-01-15 10:56:12 -08001239
1240static void gather_tests() {
mtklein6c5fed22015-01-20 13:47:23 -08001241 if (!FLAGS_src.contains("tests")) {
mtklein748ca3b2015-01-15 10:56:12 -08001242 return;
1243 }
mtklein6393c062015-04-27 08:45:01 -07001244 for (const skiatest::TestRegistry* r = skiatest::TestRegistry::Head(); r; r = r->next()) {
1245 if (!in_shard()) {
1246 continue;
1247 }
halcanary87f3ba42015-01-20 09:30:20 -08001248 // Despite its name, factory() is returning a reference to
1249 // link-time static const POD data.
1250 const skiatest::Test& test = r->factory();
1251 if (SkCommandLineFlags::ShouldSkip(FLAGS_match, test.name)) {
mtklein748ca3b2015-01-15 10:56:12 -08001252 continue;
1253 }
halcanary87f3ba42015-01-20 09:30:20 -08001254 if (test.needsGpu && gpu_supported()) {
mtklein21eaf3b2016-02-08 12:39:59 -08001255 (FLAGS_gpu_threading ? gParallelTests : gSerialTests).push(test);
halcanary87f3ba42015-01-20 09:30:20 -08001256 } else if (!test.needsGpu && FLAGS_cpu) {
mtklein21eaf3b2016-02-08 12:39:59 -08001257 gParallelTests.push(test);
mtklein82d28432015-01-15 12:46:02 -08001258 }
mtklein748ca3b2015-01-15 10:56:12 -08001259 }
1260}
1261
csmartdalton008b9d82017-02-22 12:00:42 -07001262static void run_test(skiatest::Test test, const GrContextOptions& grCtxOptions) {
halcanary87f3ba42015-01-20 09:30:20 -08001263 struct : public skiatest::Reporter {
mtklein36352bf2015-03-25 18:17:31 -07001264 void reportFailed(const skiatest::Failure& failure) override {
halcanary87f3ba42015-01-20 09:30:20 -08001265 fail(failure.toString());
1266 JsonWriter::AddTestFailure(failure);
1267 }
mtklein36352bf2015-03-25 18:17:31 -07001268 bool allowExtendedTest() const override {
halcanary87f3ba42015-01-20 09:30:20 -08001269 return FLAGS_pathOpsExtended;
1270 }
mtklein36352bf2015-03-25 18:17:31 -07001271 bool verbose() const override { return FLAGS_veryVerbose; }
halcanary87f3ba42015-01-20 09:30:20 -08001272 } reporter;
djsollen824996a2015-06-12 12:06:22 -07001273
mtklein3eed7dd2016-02-24 19:07:07 -08001274 if (!FLAGS_dryRun && !is_blacklisted("_", "tests", "_", test.name)) {
mtklein21eaf3b2016-02-08 12:39:59 -08001275 start("unit", "test", "", test.name);
csmartdalton008b9d82017-02-22 12:00:42 -07001276 GrContextFactory factory(grCtxOptions);
Mike Kleinb323a5e2017-07-24 15:21:31 -04001277 test.run(&reporter, &factory);
mtklein748ca3b2015-01-15 10:56:12 -08001278 }
mtklein3eed7dd2016-02-24 19:07:07 -08001279 done("unit", "test", "", test.name);
mtklein748ca3b2015-01-15 10:56:12 -08001280}
1281
1282/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
1283
caryclark83ca6282015-06-10 09:31:09 -07001284#define PORTABLE_FONT_PREFIX "Toy Liberation "
1285
mbocee6a9912016-05-31 11:42:36 -07001286static sk_sp<SkTypeface> create_from_name(const char familyName[], SkFontStyle style) {
caryclark83ca6282015-06-10 09:31:09 -07001287 if (familyName && strlen(familyName) > sizeof(PORTABLE_FONT_PREFIX)
1288 && !strncmp(familyName, PORTABLE_FONT_PREFIX, sizeof(PORTABLE_FONT_PREFIX) - 1)) {
caryclark1818acb2015-07-24 12:09:25 -07001289 return sk_tool_utils::create_portable_typeface(familyName, style);
caryclark83ca6282015-06-10 09:31:09 -07001290 }
halcanary96fcdcc2015-08-27 07:41:13 -07001291 return nullptr;
caryclark83ca6282015-06-10 09:31:09 -07001292}
1293
1294#undef PORTABLE_FONT_PREFIX
1295
mbocee6a9912016-05-31 11:42:36 -07001296extern sk_sp<SkTypeface> (*gCreateTypefaceDelegate)(const char [], SkFontStyle );
caryclark83ca6282015-06-10 09:31:09 -07001297
Mike Kleinbe28ee22017-02-06 12:46:20 -05001298int main(int argc, char** argv) {
1299 SkCommandLineFlags::Parse(argc, argv);
Brian Osman53136aa2017-07-20 15:43:35 -04001300
Brian Osmanbc8150f2017-07-24 11:38:01 -04001301 initializeEventTracingForTools();
Brian Osman53136aa2017-07-20 15:43:35 -04001302
Mike Klein135a1b12017-08-15 13:13:59 -04001303#if !defined(GOOGLE3) && defined(SK_BUILD_FOR_IOS)
Mike Kleinadacaef2017-02-06 09:26:14 -05001304 cd_Documents();
1305#endif
bsalomon71de3532016-04-26 14:27:21 -07001306 setbuf(stdout, nullptr);
mtklein246ba3a2016-02-23 10:39:36 -08001307 setup_crash_handler();
mtkleinafae30a2016-02-24 12:28:32 -08001308
Yuqian Liba62b4a2016-12-14 13:46:53 -05001309 gSkUseAnalyticAA = FLAGS_analyticAA;
Yuqian Lidf60e362017-07-25 11:26:31 -04001310 gSkUseDeltaAA = FLAGS_deltaAA;
liyuqian38911a72016-10-04 11:23:22 -07001311
Yuqian Li550148b2017-01-13 10:13:13 -05001312 if (FLAGS_forceAnalyticAA) {
1313 gSkForceAnalyticAA = true;
1314 }
Mike Reed7c26ca72017-07-05 15:45:52 -04001315 if (FLAGS_forceRasterPipeline) {
1316 gSkForceRasterPipelineBlitter = true;
1317 }
Yuqian Li550148b2017-01-13 10:13:13 -05001318
Mike Kleine9f187b2017-06-26 13:23:12 -04001319 // The bots like having a verbose.log to upload, so always touch the file even if --verbose.
1320 if (!FLAGS_writePath.isEmpty()) {
mtklein51c8cfc2016-03-11 12:59:09 -08001321 sk_mkdir(FLAGS_writePath[0]);
mtkleina1ce2162016-07-22 12:23:46 -07001322 gVLog = fopen(SkOSPath::Join(FLAGS_writePath[0], "verbose.log").c_str(), "w");
mtkleinc41fd922016-03-08 09:01:39 -08001323 }
Mike Kleine9f187b2017-06-26 13:23:12 -04001324 if (FLAGS_verbose) {
1325 gVLog = stderr;
1326 }
mtkleinc41fd922016-03-08 09:01:39 -08001327
csmartdalton008b9d82017-02-22 12:00:42 -07001328 GrContextOptions grCtxOptions;
1329#if SK_SUPPORT_GPU
1330 grCtxOptions.fGpuPathRenderers = CollectGpuPathRenderersFromFlags();
1331#endif
1332
mtklein5286f022016-01-22 08:18:14 -08001333 JsonWriter::DumpJson(); // It's handy for the bots to assume this is ~never missing.
commit-bot@chromium.org39e8d932014-05-29 20:14:48 +00001334 SkAutoGraphics ag;
mtklein406654b2014-09-03 15:34:37 -07001335 SkTaskGroup::Enabler enabled(FLAGS_threads);
caryclark83ca6282015-06-10 09:31:09 -07001336 gCreateTypefaceDelegate = &create_from_name;
commit-bot@chromium.orga65e2fd2014-05-30 17:23:31 +00001337
halcanary7d571242016-02-24 17:59:16 -08001338 {
1339 SkString testResourcePath = GetResourcePath("color_wheel.png");
1340 SkFILEStream testResource(testResourcePath.c_str());
1341 if (!testResource.isValid()) {
mtkleinc41fd922016-03-08 09:01:39 -08001342 info("Some resources are missing. Do you need to set --resourcePath?\n");
halcanary7d571242016-02-24 17:59:16 -08001343 }
1344 }
mtklein62bd1a62015-01-27 14:46:26 -08001345 gather_gold();
borenet09ed4802015-04-03 14:15:33 -07001346 gather_uninteresting_hashes();
mtklein62bd1a62015-01-27 14:46:26 -08001347
scroggo86737142016-02-03 12:19:11 -08001348 if (!gather_srcs()) {
1349 return 1;
1350 }
Ben Wagnerf28d4722017-08-11 17:33:22 -04001351 // TODO(dogben): This is a bit ugly. Find a cleaner way to do this.
1352 bool defaultConfigs = true;
1353 for (int i = 0; i < argc; i++) {
1354 static const char* kConfigArg = "--config";
1355 if (strcmp(argv[i], kConfigArg) == 0) {
1356 defaultConfigs = false;
1357 break;
1358 }
1359 }
1360 if (!gather_sinks(grCtxOptions, defaultConfigs)) {
brianosman05c987c2016-05-09 13:42:16 -07001361 return 1;
1362 }
mtklein748ca3b2015-01-15 10:56:12 -08001363 gather_tests();
mtklein21eaf3b2016-02-08 12:39:59 -08001364 gPending = gSrcs.count() * gSinks.count() + gParallelTests.count() + gSerialTests.count();
Brian Osmand0677bc2017-08-03 12:13:47 -04001365 info("%d srcs * %d sinks + %d tests == %d tasks\n",
mtkleinc41fd922016-03-08 09:01:39 -08001366 gSrcs.count(), gSinks.count(), gParallelTests.count() + gSerialTests.count(), gPending);
mtklein748ca3b2015-01-15 10:56:12 -08001367
mtklein21eaf3b2016-02-08 12:39:59 -08001368 // Kick off as much parallel work as we can, making note of any serial work we'll need to do.
1369 SkTaskGroup parallel;
1370 SkTArray<Task> serial;
1371
1372 for (auto& sink : gSinks)
1373 for (auto& src : gSrcs) {
mtklein3eed7dd2016-02-24 19:07:07 -08001374 if (src->veto(sink->flags()) ||
1375 is_blacklisted(sink.tag.c_str(), src.tag.c_str(),
1376 src.options.c_str(), src->name().c_str())) {
mtkleinf10637f2016-06-10 13:56:35 -07001377 SkAutoMutexAcquire lock(gMutex);
mtklein3eed7dd2016-02-24 19:07:07 -08001378 gPending--;
1379 continue;
1380 }
1381
mtklein21eaf3b2016-02-08 12:39:59 -08001382 Task task(src, sink);
1383 if (src->serial() || sink->serial()) {
1384 serial.push_back(task);
1385 } else {
1386 parallel.add([task] { Task::Run(task); });
mtklein748ca3b2015-01-15 10:56:12 -08001387 }
commit-bot@chromium.org38aeb0f2014-02-26 23:01:57 +00001388 }
mtklein21eaf3b2016-02-08 12:39:59 -08001389 for (auto test : gParallelTests) {
csmartdalton008b9d82017-02-22 12:00:42 -07001390 parallel.add([test, grCtxOptions] { run_test(test, grCtxOptions); });
mtklein55e88b22015-01-21 15:50:13 -08001391 }
mtklein21eaf3b2016-02-08 12:39:59 -08001392
1393 // With the parallel work running, run serial tasks and tests here on main thread.
1394 for (auto task : serial) { Task::Run(task); }
csmartdalton008b9d82017-02-22 12:00:42 -07001395 for (auto test : gSerialTests) { run_test(test, grCtxOptions); }
mtklein21eaf3b2016-02-08 12:39:59 -08001396
1397 // Wait for any remaining parallel work to complete (including any spun off of serial tasks).
1398 parallel.wait();
mtkleincd50bca2016-01-05 06:20:20 -08001399 gDefinitelyThreadSafeWork.wait();
1400
mtkleinda884c42016-02-24 18:00:23 -08001401 // We'd better have run everything.
1402 SkASSERT(gPending == 0);
mtkleine027f172016-02-26 15:53:06 -08001403 // Make sure we've flushed all our results to disk.
1404 JsonWriter::DumpJson();
mtkleinda884c42016-02-24 18:00:23 -08001405
mtklein748ca3b2015-01-15 10:56:12 -08001406 // At this point we're back in single-threaded land.
caryclarkf53ce802015-06-15 06:48:30 -07001407 sk_tool_utils::release_portable_typefaces();
mtklein@google.comd36522d2013-10-16 13:02:15 +00001408
mtklein748ca3b2015-01-15 10:56:12 -08001409 if (gFailures.count() > 0) {
mtkleinc41fd922016-03-08 09:01:39 -08001410 info("Failures:\n");
mtklein748ca3b2015-01-15 10:56:12 -08001411 for (int i = 0; i < gFailures.count(); i++) {
mtkleinc41fd922016-03-08 09:01:39 -08001412 info("\t%s\n", gFailures[i].c_str());
mtklein748ca3b2015-01-15 10:56:12 -08001413 }
mtkleinc41fd922016-03-08 09:01:39 -08001414 info("%d failures\n", gFailures.count());
mtklein748ca3b2015-01-15 10:56:12 -08001415 return 1;
mtklein114c3cd2015-01-15 10:15:02 -08001416 }
mtkleinafae30a2016-02-24 12:28:32 -08001417
1418#ifdef SK_PDF_IMAGE_STATS
halcanary7a14b312015-10-01 07:28:13 -07001419 SkPDFImageDumpStats();
mtkleinafae30a2016-02-24 12:28:32 -08001420#endif // SK_PDF_IMAGE_STATS
1421
Herb Derby5a523fe2017-01-26 16:48:28 -05001422 SkGraphics::PurgeAllCaches();
mtkleinc41fd922016-03-08 09:01:39 -08001423 info("Finished!\n");
Brian Osman53136aa2017-07-20 15:43:35 -04001424
mtklein748ca3b2015-01-15 10:56:12 -08001425 return 0;
mtklein@google.comd36522d2013-10-16 13:02:15 +00001426}
jcgregorio3b27ade2014-11-13 08:06:40 -08001427
kkinnunen179a8f52015-11-20 13:32:24 -08001428// TODO: currently many GPU tests are declared outside SK_SUPPORT_GPU guards.
1429// Thus we export the empty RunWithGPUTestContexts when SK_SUPPORT_GPU=0.
1430namespace skiatest {
bsalomon758586c2016-04-06 14:02:39 -07001431
1432#if SK_SUPPORT_GPU
1433bool IsGLContextType(sk_gpu_test::GrContextFactory::ContextType type) {
1434 return kOpenGL_GrBackend == GrContextFactory::ContextTypeBackend(type);
1435}
bsalomondc0fcd42016-04-11 14:21:33 -07001436bool IsVulkanContextType(sk_gpu_test::GrContextFactory::ContextType type) {
1437 return kVulkan_GrBackend == GrContextFactory::ContextTypeBackend(type);
1438}
bsalomon758586c2016-04-06 14:02:39 -07001439bool IsRenderingGLContextType(sk_gpu_test::GrContextFactory::ContextType type) {
1440 return IsGLContextType(type) && GrContextFactory::IsRenderingContext(type);
1441}
1442bool IsNullGLContextType(sk_gpu_test::GrContextFactory::ContextType type) {
1443 return type == GrContextFactory::kNullGL_ContextType;
1444}
1445#else
1446bool IsGLContextType(int) { return false; }
bsalomondc0fcd42016-04-11 14:21:33 -07001447bool IsVulkanContextType(int) { return false; }
bsalomon758586c2016-04-06 14:02:39 -07001448bool IsRenderingGLContextType(int) { return false; }
1449bool IsNullGLContextType(int) { return false; }
1450#endif
1451
1452void RunWithGPUTestContexts(GrContextTestFn* test, GrContextTypeFilterFn* contextTypeFilter,
bsalomonf2f1c172016-04-05 12:59:06 -07001453 Reporter* reporter, GrContextFactory* factory) {
kkinnunen179a8f52015-11-20 13:32:24 -08001454#if SK_SUPPORT_GPU
kkinnunen3e980c32015-12-23 01:33:00 -08001455
Brian Salomon6405e712017-03-20 08:54:16 -04001456#if defined(SK_BUILD_FOR_UNIX) || defined(SK_BUILD_FOR_WIN) || defined(SK_BUILD_FOR_MAC)
1457 static constexpr auto kNativeGLType = GrContextFactory::kGL_ContextType;
1458#else
1459 static constexpr auto kNativeGLType = GrContextFactory::kGLES_ContextType;
1460#endif
1461
bsalomon758586c2016-04-06 14:02:39 -07001462 for (int typeInt = 0; typeInt < GrContextFactory::kContextTypeCnt; ++typeInt) {
1463 GrContextFactory::ContextType contextType = (GrContextFactory::ContextType) typeInt;
Brian Osmanaa2219c2016-12-05 10:12:17 -05001464 // Use "native" instead of explicitly trying OpenGL and OpenGL ES. Do not use GLES on
bsalomon758586c2016-04-06 14:02:39 -07001465 // desktop since tests do not account for not fixing http://skbug.com/2809
1466 if (contextType == GrContextFactory::kGL_ContextType ||
1467 contextType == GrContextFactory::kGLES_ContextType) {
Brian Salomon6405e712017-03-20 08:54:16 -04001468 if (contextType != kNativeGLType) {
bsalomon758586c2016-04-06 14:02:39 -07001469 continue;
1470 }
1471 }
csmartdaltone812d492017-02-21 12:36:05 -07001472 ContextInfo ctxInfo = factory->getContextInfo(contextType,
1473 GrContextFactory::ContextOverrides::kDisableNVPR);
Brian Osmanaa2219c2016-12-05 10:12:17 -05001474 if (contextTypeFilter && !(*contextTypeFilter)(contextType)) {
1475 continue;
1476 }
Greg Daniela5cb7812017-06-16 09:45:32 -04001477 ReporterContext ctx(reporter, SkString(GrContextFactory::ContextTypeName(contextType)));
bsalomon8b7451a2016-05-11 06:33:06 -07001478 if (ctxInfo.grContext()) {
bsalomonf2f1c172016-04-05 12:59:06 -07001479 (*test)(reporter, ctxInfo);
Robert Phillipseaa90b22017-08-01 10:36:36 -04001480 ctxInfo.grContext()->flush();
kkinnunen5219fd92015-12-10 06:28:13 -08001481 }
bsalomonf2f1c172016-04-05 12:59:06 -07001482 ctxInfo = factory->getContextInfo(contextType,
csmartdaltone812d492017-02-21 12:36:05 -07001483 GrContextFactory::ContextOverrides::kRequireNVPRSupport);
bsalomon8b7451a2016-05-11 06:33:06 -07001484 if (ctxInfo.grContext()) {
bsalomonf2f1c172016-04-05 12:59:06 -07001485 (*test)(reporter, ctxInfo);
Robert Phillipseaa90b22017-08-01 10:36:36 -04001486 ctxInfo.grContext()->flush();
kkinnunen179a8f52015-11-20 13:32:24 -08001487 }
1488 }
1489#endif
1490}
kkinnunen179a8f52015-11-20 13:32:24 -08001491} // namespace skiatest