blob: 7790b99693362bbbc97e8f24cefb8f845dddd12c [file] [log] [blame]
Mike Klein735c7ba2019-03-25 12:57:58 -05001// Copyright 2019 Google LLC.
2// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
3
Mike Kleinc0bd9f92019-04-23 12:05:21 -05004#include "experimental/svg/model/SkSVGDOM.h"
5#include "gm/gm.h"
6#include "include/codec/SkCodec.h"
Robert Phillipse19babf2020-04-06 13:57:30 -04007#include "include/core/SkCanvas.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -05008#include "include/core/SkColorSpace.h"
9#include "include/core/SkGraphics.h"
10#include "include/core/SkPicture.h"
11#include "include/core/SkPictureRecorder.h"
12#include "include/docs/SkPDFDocument.h"
13#include "include/gpu/GrContextOptions.h"
Robert Phillips7b4e43c2020-07-01 16:59:17 -040014#include "include/gpu/GrDirectContext.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050015#include "include/private/SkTHash.h"
16#include "src/core/SkColorSpacePriv.h"
17#include "src/core/SkMD5.h"
18#include "src/core/SkOSFile.h"
19#include "src/gpu/GrContextPriv.h"
20#include "src/gpu/GrGpu.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050021#include "src/utils/SkOSPath.h"
Mike Kleinfee00792019-11-21 16:18:47 -060022#include "tests/Test.h"
Jim Van Verth8a9a3712019-05-31 10:49:12 -040023#include "tools/AutoreleasePool.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050024#include "tools/CrashHandler.h"
25#include "tools/HashAndEncode.h"
26#include "tools/ToolUtils.h"
27#include "tools/flags/CommandLineFlags.h"
28#include "tools/flags/CommonFlags.h"
29#include "tools/gpu/GrContextFactory.h"
30#include "tools/gpu/MemoryCache.h"
31#include "tools/trace/EventTracingPriv.h"
Mike Klein735c7ba2019-03-25 12:57:58 -050032#include <chrono>
33#include <functional>
34#include <stdio.h>
35#include <stdlib.h>
36
Brian Osmanca946562019-04-10 13:51:53 -040037#if defined(SK_ENABLE_SKOTTIE)
Mike Kleinc0bd9f92019-04-23 12:05:21 -050038 #include "modules/skottie/include/Skottie.h"
Brian Osman849f4d62019-11-26 08:58:26 -050039 #include "modules/skresources/include/SkResources.h"
Brian Osmanca946562019-04-10 13:51:53 -040040#endif
41
Mike Klein735c7ba2019-03-25 12:57:58 -050042using sk_gpu_test::GrContextFactory;
43
Mike Kleinfee00792019-11-21 16:18:47 -060044static DEFINE_bool(listGMs , false, "Print GM names and exit.");
45static DEFINE_bool(listTests, false, "Print unit test names and exit.");
46
Mike Klein735c7ba2019-03-25 12:57:58 -050047static DEFINE_string2(sources, s, "", "Which GMs, .skps, or images to draw.");
48static DEFINE_string2(backend, b, "", "Backend used to create a canvas to draw into.");
49
Mike Klein4daf6372019-04-03 11:19:45 -040050static DEFINE_string(ct , "8888", "The color type for any raster backend.");
51static DEFINE_string(at , "premul", "The alpha type for any raster backend.");
52static DEFINE_string(gamut , "srgb", "The color gamut for any raster backend.");
53static DEFINE_string(tf , "srgb", "The transfer function for any raster backend.");
54static DEFINE_bool (legacy, false, "Use a null SkColorSpace instead of --gamut and --tf?");
Mike Klein2a57e792020-01-14 12:47:52 -060055static DEFINE_bool (skvm , false, "Use SkVMBlitter when supported?");
Mike Klein31bfa832020-01-22 11:36:40 -060056static DEFINE_bool (dylib , false, "Use SkVM via dylib?");
Mike Klein735c7ba2019-03-25 12:57:58 -050057
58static DEFINE_int (samples , 0, "Samples per pixel in GPU backends.");
Mike Klein735c7ba2019-03-25 12:57:58 -050059static DEFINE_bool (stencils, true, "If false, avoid stencil buffers in GPU backends.");
60static DEFINE_bool (dit , false, "Use device-independent text in GPU backends.");
61static DEFINE_string(surf , "default", "Backing store for GPU backend surfaces.");
62
63static DEFINE_bool( preAbandonGpuContext, false, "Abandon the GrContext before drawing.");
64static DEFINE_bool( abandonGpuContext, false, "Abandon the GrContext after drawing.");
65static DEFINE_bool(releaseAndAbandonGpuContext, false,
66 "Release all GPU resources and abandon the GrContext after drawing.");
67
68static DEFINE_bool(decodeToDst, false,
69 "Decode images to destination format rather than suggested natural format.");
70
Mike Kleinc245bd92019-03-27 14:31:09 -050071static DEFINE_double(rasterDPI, SK_ScalarDefaultRasterDPI,
72 "DPI for rasterized content in vector backends like --backend pdf.");
73static DEFINE_bool(PDFA, false, "Create PDF/A with --backend pdf?");
74
Mike Klein735c7ba2019-03-25 12:57:58 -050075static DEFINE_bool (cpuDetect, true, "Detect CPU features for runtime optimizations?");
76static DEFINE_string2(writePath, w, "", "Write .pngs to this directory if set.");
Mike Kleined2cec42019-11-01 10:51:01 -050077static DEFINE_bool (quick, false, "Skip image hashing and encoding?");
Mike Klein735c7ba2019-03-25 12:57:58 -050078
Brian Osman5aa11fb2019-04-08 16:40:36 -040079static DEFINE_string(writeShaders, "", "Write GLSL shaders to this directory if set.");
80
Mike Klein735c7ba2019-03-25 12:57:58 -050081static DEFINE_string(key, "", "Metadata passed through to .png encoder and .json output.");
Mike Klein7b8bc532019-04-09 11:19:47 -050082static DEFINE_string(properties, "", "Metadata passed through to .png encoder and .json output.");
Mike Klein735c7ba2019-03-25 12:57:58 -050083
84template <typename T>
85struct FlagOption {
86 const char* label;
87 T value;
88};
89
90template <typename T, int N>
91static bool parse_flag(const CommandLineFlags::StringArray& flag,
92 const char* flag_name,
93 const FlagOption<T> (&array)[N],
94 T* value) {
95 for (auto entry : array) {
96 if (flag.contains(entry.label)) {
97 *value = entry.value;
98 return true;
99 }
100 }
101 fprintf(stderr, "Known values for --%s:\n", flag_name);
102 for (auto entry : array) {
103 fprintf(stderr, " --%s %s\n", flag_name, entry.label);
104 }
105 return false;
106}
107
Mike Kleina833cff2019-04-09 11:52:40 -0500108struct Result {
109 enum { Ok, Skip, Fail} status;
110 SkString failure;
111};
112static const Result ok = {Result::Ok, {}},
113 skip = {Result::Skip, {}};
114
Adlai Holler684838f2020-05-12 10:41:04 -0400115static Result fail(const char* why) {
116 return { Result::Fail, SkString(why) };
117}
Mike Kleina833cff2019-04-09 11:52:40 -0500118template <typename... Args>
Adlai Holler684838f2020-05-12 10:41:04 -0400119static Result fail(const char* whyFmt, Args... args) {
120 return { Result::Fail, SkStringPrintf(whyFmt, args...) };
Mike Kleina833cff2019-04-09 11:52:40 -0500121}
122
123
Mike Klein735c7ba2019-03-25 12:57:58 -0500124struct Source {
125 SkString name;
126 SkISize size;
Mike Kleina833cff2019-04-09 11:52:40 -0500127 std::function<Result(SkCanvas*)> draw;
128 std::function<void(GrContextOptions*)> tweak = [](GrContextOptions*){};
Mike Klein735c7ba2019-03-25 12:57:58 -0500129};
130
Mike Kleina833cff2019-04-09 11:52:40 -0500131static void init(Source* source, std::shared_ptr<skiagm::GM> gm) {
132 source->size = gm->getISize();
133 source->tweak = [gm](GrContextOptions* options) { gm->modifyGrContextOptions(options); };
134 source->draw = [gm](SkCanvas* canvas) {
Adlai Hollere3ad5272020-07-07 10:27:55 -0400135 auto direct = GrAsDirectContext(canvas->recordingContext());
Robert Phillipsb87b39b2020-07-01 14:45:24 -0400136
Mike Kleina833cff2019-04-09 11:52:40 -0500137 SkString err;
Robert Phillipsb87b39b2020-07-01 14:45:24 -0400138 switch (gm->gpuSetup(direct, canvas, &err)) {
Robert Phillips900630c2020-06-24 10:35:00 -0400139 case skiagm::DrawResult::kOk : break;
140 case skiagm::DrawResult::kSkip: return skip;
141 case skiagm::DrawResult::kFail: return fail(err.c_str());
142 }
143
Mike Kleina833cff2019-04-09 11:52:40 -0500144 switch (gm->draw(canvas, &err)) {
145 case skiagm::DrawResult::kOk: break;
146 case skiagm::DrawResult::kSkip: return skip;
147 case skiagm::DrawResult::kFail: return fail(err.c_str());
148 }
149 return ok;
Mike Klein735c7ba2019-03-25 12:57:58 -0500150 };
151}
152
Mike Kleina833cff2019-04-09 11:52:40 -0500153static void init(Source* source, sk_sp<SkPicture> pic) {
154 source->size = pic->cullRect().roundOut().size();
155 source->draw = [pic](SkCanvas* canvas) {
156 canvas->drawPicture(pic);
157 return ok;
Mike Klein735c7ba2019-03-25 12:57:58 -0500158 };
159}
160
Mike Kleina833cff2019-04-09 11:52:40 -0500161static void init(Source* source, std::shared_ptr<SkCodec> codec) {
162 source->size = codec->dimensions();
163 source->draw = [codec](SkCanvas* canvas) {
164 SkImageInfo info = codec->getInfo();
165 if (FLAGS_decodeToDst) {
Brian Salomon9241a6d2019-10-03 13:26:54 -0400166 info = canvas->imageInfo().makeDimensions(info.dimensions());
Mike Kleina833cff2019-04-09 11:52:40 -0500167 }
Mike Klein735c7ba2019-03-25 12:57:58 -0500168
Mike Kleina833cff2019-04-09 11:52:40 -0500169 SkBitmap bm;
170 bm.allocPixels(info);
171 switch (SkCodec::Result result = codec->getPixels(info, bm.getPixels(), bm.rowBytes())) {
172 case SkCodec::kSuccess:
173 case SkCodec::kErrorInInput:
174 case SkCodec::kIncompleteInput: canvas->drawBitmap(bm, 0,0);
175 break;
176 default: return fail("codec->getPixels() failed: %d\n", result);
177 }
178 return ok;
Mike Klein735c7ba2019-03-25 12:57:58 -0500179 };
180}
181
Mike Kleina833cff2019-04-09 11:52:40 -0500182static void init(Source* source, sk_sp<SkSVGDOM> svg) {
183 source->size = svg->containerSize().isEmpty() ? SkISize{1000,1000}
184 : svg->containerSize().toCeil();
185 source->draw = [svg](SkCanvas* canvas) {
186 svg->render(canvas);
187 return ok;
Mike Klein22924262019-04-02 14:14:56 -0400188 };
189}
190
Brian Osmanca946562019-04-10 13:51:53 -0400191#if defined(SK_ENABLE_SKOTTIE)
Mike Kleina833cff2019-04-09 11:52:40 -0500192static void init(Source* source, sk_sp<skottie::Animation> animation) {
193 source->size = {1000,1000};
194 source->draw = [animation](SkCanvas* canvas) {
195 canvas->clear(SK_ColorWHITE);
Mike Klein22924262019-04-02 14:14:56 -0400196
Mike Kleina833cff2019-04-09 11:52:40 -0500197 // Draw frames in a shuffled order to exercise nonlinear frame progression.
198 // The film strip will still be in time order, just drawn out of order.
199 const int order[] = { 4, 0, 3, 1, 2 };
200 const int tiles = SK_ARRAY_COUNT(order);
201 const float dim = 1000.0f / tiles;
Mike Klein22924262019-04-02 14:14:56 -0400202
Mike Kleina833cff2019-04-09 11:52:40 -0500203 const float dt = 1.0f / (tiles*tiles - 1);
Mike Klein22924262019-04-02 14:14:56 -0400204
Mike Kleina833cff2019-04-09 11:52:40 -0500205 for (int y : order)
206 for (int x : order) {
207 SkRect dst = {x*dim, y*dim, (x+1)*dim, (y+1)*dim};
Mike Klein22924262019-04-02 14:14:56 -0400208
Mike Kleina833cff2019-04-09 11:52:40 -0500209 SkAutoCanvasRestore _(canvas, true/*save now*/);
210 canvas->clipRect(dst, /*aa=*/true);
211 canvas->concat(SkMatrix::MakeRectToRect(SkRect::MakeSize(animation->size()),
212 dst,
213 SkMatrix::kCenter_ScaleToFit));
214 float t = (y*tiles + x) * dt;
215 animation->seek(t);
216 animation->render(canvas);
217 }
218 return ok;
Mike Klein6253d902019-03-27 15:09:12 -0500219 };
220}
Brian Osmanca946562019-04-10 13:51:53 -0400221#endif
Mike Klein6253d902019-03-27 15:09:12 -0500222
Mike Kleinfee00792019-11-21 16:18:47 -0600223static void init(Source* source, const skiatest::Test& test) {
224 source->size = {1,1};
225 source->draw = [test](SkCanvas* canvas) {
226 struct Reporter : public skiatest::Reporter {
227 SkString msg;
228
229 void reportFailed(const skiatest::Failure& failure) override {
Mike Klein484b63b2020-04-15 12:43:12 -0500230 msg += failure.toString();
231 msg += "\n";
Mike Kleinfee00792019-11-21 16:18:47 -0600232 }
233 } reporter;
234
235 test.run(&reporter, GrContextOptions{});
236
237 if (reporter.msg.isEmpty()) {
238 canvas->clear(SK_ColorGREEN);
239 return ok;
240 }
241
242 canvas->clear(SK_ColorRED);
243 return fail(reporter.msg.c_str());
244 };
245}
246
Mike Kleina5c27172019-04-02 10:26:48 -0400247static sk_sp<SkImage> draw_with_cpu(std::function<bool(SkCanvas*)> draw,
Mike Klein735c7ba2019-03-25 12:57:58 -0500248 SkImageInfo info) {
249 if (sk_sp<SkSurface> surface = SkSurface::MakeRaster(info)) {
Mike Kleina5c27172019-04-02 10:26:48 -0400250 if (draw(surface->getCanvas())) {
251 return surface->makeImageSnapshot();
252 }
Mike Klein735c7ba2019-03-25 12:57:58 -0500253 }
254 return nullptr;
255}
256
Mike Kleina5c27172019-04-02 10:26:48 -0400257static sk_sp<SkData> draw_as_skp(std::function<bool(SkCanvas*)> draw,
Mike Klein9b462092019-03-27 13:52:35 -0500258 SkImageInfo info) {
259 SkPictureRecorder recorder;
Mike Kleina5c27172019-04-02 10:26:48 -0400260 if (draw(recorder.beginRecording(info.width(), info.height()))) {
261 return recorder.finishRecordingAsPicture()->serialize();
262 }
263 return nullptr;
Mike Klein9b462092019-03-27 13:52:35 -0500264}
265
Mike Kleina5c27172019-04-02 10:26:48 -0400266static sk_sp<SkData> draw_as_pdf(std::function<bool(SkCanvas*)> draw,
Mike Kleinc245bd92019-03-27 14:31:09 -0500267 SkImageInfo info,
268 SkString name) {
269 SkPDF::Metadata metadata;
270 metadata.fTitle = name;
271 metadata.fCreator = "Skia/FM";
272 metadata.fRasterDPI = FLAGS_rasterDPI;
273 metadata.fPDFA = FLAGS_PDFA;
274
275 SkDynamicMemoryWStream stream;
276 if (sk_sp<SkDocument> doc = SkPDF::MakeDocument(&stream, metadata)) {
Mike Kleina5c27172019-04-02 10:26:48 -0400277 if (draw(doc->beginPage(info.width(), info.height()))) {
278 doc->endPage();
279 doc->close();
280 return stream.detachAsData();
281 }
Mike Kleinc245bd92019-03-27 14:31:09 -0500282 }
283 return nullptr;
284}
285
Mike Kleina5c27172019-04-02 10:26:48 -0400286static sk_sp<SkImage> draw_with_gpu(std::function<bool(SkCanvas*)> draw,
Mike Klein735c7ba2019-03-25 12:57:58 -0500287 SkImageInfo info,
288 GrContextFactory::ContextType api,
289 GrContextFactory* factory) {
290 enum class SurfaceType { kDefault, kBackendTexture, kBackendRenderTarget };
291 const FlagOption<SurfaceType> kSurfaceTypes[] = {
292 { "default", SurfaceType::kDefault },
293 { "betex" , SurfaceType::kBackendTexture },
294 { "bert" , SurfaceType::kBackendRenderTarget },
295 };
296 SurfaceType surfaceType;
297 if (!parse_flag(FLAGS_surf, "surf", kSurfaceTypes, &surfaceType)) {
298 return nullptr;
299 }
300
Chris Daltonb3c97452019-06-25 20:07:56 -0600301 auto overrides = GrContextFactory::ContextOverrides::kNone;
Mike Klein735c7ba2019-03-25 12:57:58 -0500302 if (!FLAGS_stencils) { overrides |= GrContextFactory::ContextOverrides::kAvoidStencilBuffers; }
303
Robert Phillips7b4e43c2020-07-01 16:59:17 -0400304 auto context = factory->getContextInfo(api, overrides).directContext();
Mike Klein735c7ba2019-03-25 12:57:58 -0500305
306 uint32_t flags = FLAGS_dit ? SkSurfaceProps::kUseDeviceIndependentFonts_Flag
307 : 0;
308 SkSurfaceProps props(flags, SkSurfaceProps::kLegacyFontHost_InitType);
309
310 sk_sp<SkSurface> surface;
311 GrBackendTexture backendTexture;
312 GrBackendRenderTarget backendRT;
313
314 switch (surfaceType) {
315 case SurfaceType::kDefault:
316 surface = SkSurface::MakeRenderTarget(context,
317 SkBudgeted::kNo,
318 info,
319 FLAGS_samples,
320 &props);
321 break;
322
323 case SurfaceType::kBackendTexture:
Robert Phillips5c7a25b2019-05-20 08:38:07 -0400324 backendTexture = context->createBackendTexture(info.width(),
325 info.height(),
326 info.colorType(),
327 GrMipMapped::kNo,
Emircan Uysaler23ca4e72019-06-24 10:53:09 -0400328 GrRenderable::kYes,
329 GrProtected::kNo);
Mike Klein735c7ba2019-03-25 12:57:58 -0500330 surface = SkSurface::MakeFromBackendTexture(context,
331 backendTexture,
332 kTopLeft_GrSurfaceOrigin,
333 FLAGS_samples,
334 info.colorType(),
335 info.refColorSpace(),
336 &props);
337 break;
338
339 case SurfaceType::kBackendRenderTarget:
340 backendRT = context->priv().getGpu()
341 ->createTestingOnlyBackendRenderTarget(info.width(),
342 info.height(),
343 SkColorTypeToGrColorType(info.colorType()));
344 surface = SkSurface::MakeFromBackendRenderTarget(context,
345 backendRT,
346 kBottomLeft_GrSurfaceOrigin,
347 info.colorType(),
348 info.refColorSpace(),
349 &props);
350 break;
351 }
352
353 if (!surface) {
354 fprintf(stderr, "Could not create GPU surface.\n");
355 return nullptr;
356 }
357
358 if (FLAGS_preAbandonGpuContext) {
359 factory->abandonContexts();
360 }
361
Mike Kleina5c27172019-04-02 10:26:48 -0400362 sk_sp<SkImage> image;
363 if (draw(surface->getCanvas())) {
364 image = surface->makeImageSnapshot();
365 }
Mike Klein735c7ba2019-03-25 12:57:58 -0500366
367 if (FLAGS_abandonGpuContext) {
368 factory->abandonContexts();
369 } else if (FLAGS_releaseAndAbandonGpuContext) {
370 factory->releaseResourcesAndAbandonContexts();
371 }
372
373 if (!context->abandoned()) {
374 surface.reset();
375 if (backendTexture.isValid()) {
Robert Phillips5c7a25b2019-05-20 08:38:07 -0400376 context->deleteBackendTexture(backendTexture);
Mike Klein735c7ba2019-03-25 12:57:58 -0500377 }
378 if (backendRT.isValid()) {
379 context->priv().getGpu()->deleteTestingOnlyBackendRenderTarget(backendRT);
380 }
381 }
382
383 return image;
384}
385
Mike Klein2a57e792020-01-14 12:47:52 -0600386extern bool gUseSkVMBlitter;
Mike Klein31bfa832020-01-22 11:36:40 -0600387extern bool gSkVMJITViaDylib;
Mike Klein2a57e792020-01-14 12:47:52 -0600388
Mike Klein735c7ba2019-03-25 12:57:58 -0500389int main(int argc, char** argv) {
390 CommandLineFlags::Parse(argc, argv);
Mike Kleinbf15b662019-04-15 11:32:16 -0500391 SetupCrashHandler();
Mike Klein735c7ba2019-03-25 12:57:58 -0500392
393 if (FLAGS_cpuDetect) {
394 SkGraphics::Init();
395 }
Mike Klein31bfa832020-01-22 11:36:40 -0600396 gUseSkVMBlitter = FLAGS_skvm;
397 gSkVMJITViaDylib = FLAGS_dylib;
Mike Klein2a57e792020-01-14 12:47:52 -0600398
Mike Klein735c7ba2019-03-25 12:57:58 -0500399 initializeEventTracingForTools();
400 ToolUtils::SetDefaultFontMgr();
401 SetAnalyticAAFromCommonFlags();
402
403 GrContextOptions baseOptions;
404 SetCtxOptionsFromCommonFlags(&baseOptions);
405
Brian Osman5aa11fb2019-04-08 16:40:36 -0400406 sk_gpu_test::MemoryCache memoryCache;
407 if (!FLAGS_writeShaders.isEmpty()) {
408 baseOptions.fPersistentCache = &memoryCache;
Brian Osmana66081d2019-09-03 14:59:26 -0400409 baseOptions.fShaderCacheStrategy = GrContextOptions::ShaderCacheStrategy::kBackendSource;
Brian Osman5aa11fb2019-04-08 16:40:36 -0400410 }
411
Mike Kleincbe93ee2019-04-02 17:00:54 -0400412 SkTHashMap<SkString, skiagm::GMFactory> gm_factories;
Mike Klein735c7ba2019-03-25 12:57:58 -0500413 for (skiagm::GMFactory factory : skiagm::GMRegistry::Range()) {
Hal Canaryedda5652019-08-05 10:28:09 -0400414 std::unique_ptr<skiagm::GM> gm{factory()};
Mike Kleinfee00792019-11-21 16:18:47 -0600415 if (FLAGS_listGMs) {
Mike Klein735c7ba2019-03-25 12:57:58 -0500416 fprintf(stdout, "%s\n", gm->getName());
Mike Kleincbe93ee2019-04-02 17:00:54 -0400417 } else {
418 gm_factories.set(SkString{gm->getName()}, factory);
Mike Klein735c7ba2019-03-25 12:57:58 -0500419 }
420 }
Mike Kleinfee00792019-11-21 16:18:47 -0600421
422 SkTHashMap<SkString, const skiatest::Test*> tests;
423 for (const skiatest::Test& test : skiatest::TestRegistry::Range()) {
424 if (test.needsGpu) {
425 continue; // TODO
426 }
427 if (FLAGS_listTests) {
428 fprintf(stdout, "%s\n", test.name);
429 } else {
430 tests.set(SkString{test.name}, &test);
431 }
432 }
433
434 if (FLAGS_listGMs || FLAGS_listTests) {
Mike Kleincbe93ee2019-04-02 17:00:54 -0400435 return 0;
436 }
Mike Kleinfee00792019-11-21 16:18:47 -0600437 if (FLAGS_sources.isEmpty()) {
438 fprintf(stderr, "Please give me something to run using -s/--sources!\n");
439 return 1;
440 }
Mike Kleincbe93ee2019-04-02 17:00:54 -0400441
442 SkTArray<Source> sources;
Mike Kleina833cff2019-04-09 11:52:40 -0500443 for (const SkString& name : FLAGS_sources) {
444 Source* source = &sources.push_back();
445
446 if (skiagm::GMFactory* factory = gm_factories.find(name)) {
Hal Canaryedda5652019-08-05 10:28:09 -0400447 std::shared_ptr<skiagm::GM> gm{(*factory)()};
Mike Kleina833cff2019-04-09 11:52:40 -0500448 source->name = name;
Ben Wagner406ff502019-08-12 16:39:24 -0400449 init(source, std::move(gm));
Mike Kleincbe93ee2019-04-02 17:00:54 -0400450 continue;
451 }
452
Mike Kleinfee00792019-11-21 16:18:47 -0600453 if (const skiatest::Test** test = tests.find(name)) {
454 source->name = name;
455 init(source, **test);
456 continue;
457 }
458
Mike Kleina833cff2019-04-09 11:52:40 -0500459 if (sk_sp<SkData> blob = SkData::MakeFromFileName(name.c_str())) {
460 source->name = SkOSPath::Basename(name.c_str());
Mike Klein735c7ba2019-03-25 12:57:58 -0500461
Mike Kleince90d6f2019-03-29 11:14:14 -0500462 if (name.endsWith(".skp")) {
463 if (sk_sp<SkPicture> pic = SkPicture::MakeFromData(blob.get())) {
Mike Kleina833cff2019-04-09 11:52:40 -0500464 init(source, pic);
Mike Kleincbe93ee2019-04-02 17:00:54 -0400465 continue;
Mike Kleince90d6f2019-03-29 11:14:14 -0500466 }
467 } else if (name.endsWith(".svg")) {
468 SkMemoryStream stream{blob};
469 if (sk_sp<SkSVGDOM> svg = SkSVGDOM::MakeFromStream(stream)) {
Mike Kleina833cff2019-04-09 11:52:40 -0500470 init(source, svg);
Mike Kleincbe93ee2019-04-02 17:00:54 -0400471 continue;
Mike Kleince90d6f2019-03-29 11:14:14 -0500472 }
Brian Osmanca946562019-04-10 13:51:53 -0400473 }
474#if defined(SK_ENABLE_SKOTTIE)
475 else if (name.endsWith(".json")) {
Mike Kleina833cff2019-04-09 11:52:40 -0500476 const SkString dir = SkOSPath::Dirname(name.c_str());
Mike Klein22924262019-04-02 14:14:56 -0400477 if (sk_sp<skottie::Animation> animation = skottie::Animation::Builder()
Brian Osman849f4d62019-11-26 08:58:26 -0500478 .setResourceProvider(skresources::FileResourceProvider::Make(dir))
Mike Klein176da0b2019-04-03 07:44:24 -0400479 .make((const char*)blob->data(), blob->size())) {
Mike Kleina833cff2019-04-09 11:52:40 -0500480 init(source, animation);
Mike Kleincbe93ee2019-04-02 17:00:54 -0400481 continue;
Mike Klein22924262019-04-02 14:14:56 -0400482 }
Brian Osmanca946562019-04-10 13:51:53 -0400483 }
484#endif
485 else if (std::shared_ptr<SkCodec> codec = SkCodec::MakeFromData(blob)) {
Mike Kleina833cff2019-04-09 11:52:40 -0500486 init(source, codec);
Mike Kleincbe93ee2019-04-02 17:00:54 -0400487 continue;
Mike Klein735c7ba2019-03-25 12:57:58 -0500488 }
489 }
Mike Kleincbe93ee2019-04-02 17:00:54 -0400490
Mike Kleina833cff2019-04-09 11:52:40 -0500491 fprintf(stderr, "Don't understand source '%s'... bailing out.\n", name.c_str());
Mike Kleincbe93ee2019-04-02 17:00:54 -0400492 return 1;
Mike Klein735c7ba2019-03-25 12:57:58 -0500493 }
494
Mike Klein9b462092019-03-27 13:52:35 -0500495 enum NonGpuBackends {
496 kCPU_Backend = -1,
497 kSKP_Backend = -2,
Mike Kleinc245bd92019-03-27 14:31:09 -0500498 kPDF_Backend = -3,
Mike Klein9b462092019-03-27 13:52:35 -0500499 };
500 const FlagOption<int> kBackends[] = {
501 { "cpu" , kCPU_Backend },
502 { "skp" , kSKP_Backend },
Mike Kleinc245bd92019-03-27 14:31:09 -0500503 { "pdf" , kPDF_Backend },
Mike Klein9b462092019-03-27 13:52:35 -0500504 { "gl" , GrContextFactory::kGL_ContextType },
505 { "gles" , GrContextFactory::kGLES_ContextType },
506 { "angle_d3d9_es2" , GrContextFactory::kANGLE_D3D9_ES2_ContextType },
507 { "angle_d3d11_es2", GrContextFactory::kANGLE_D3D11_ES2_ContextType },
508 { "angle_d3d11_es3", GrContextFactory::kANGLE_D3D11_ES3_ContextType },
509 { "angle_gl_es2" , GrContextFactory::kANGLE_GL_ES2_ContextType },
510 { "angle_gl_es3" , GrContextFactory::kANGLE_GL_ES3_ContextType },
511 { "commandbuffer" , GrContextFactory::kCommandBuffer_ContextType },
512 { "vk" , GrContextFactory::kVulkan_ContextType },
513 { "mtl" , GrContextFactory::kMetal_ContextType },
514 { "mock" , GrContextFactory::kMock_ContextType },
515 };
Mike Klein735c7ba2019-03-25 12:57:58 -0500516 const FlagOption<SkColorType> kColorTypes[] = {
Mike Kleind58e01b62020-07-17 13:52:41 -0500517 { "a8", kAlpha_8_SkColorType },
518 { "g8", kGray_8_SkColorType },
519 { "565", kRGB_565_SkColorType },
520 { "4444", kARGB_4444_SkColorType },
521 { "8888", kN32_SkColorType },
522 { "888x", kRGB_888x_SkColorType },
523 { "1010102", kRGBA_1010102_SkColorType },
524 { "101010x", kRGB_101010x_SkColorType },
525 { "bgra1010102", kBGRA_1010102_SkColorType },
526 { "bgr101010x", kBGR_101010x_SkColorType },
527 { "f16norm", kRGBA_F16Norm_SkColorType },
528 { "f16", kRGBA_F16_SkColorType },
529 { "f32", kRGBA_F32_SkColorType },
530 { "rgba", kRGBA_8888_SkColorType },
531 { "bgra", kBGRA_8888_SkColorType },
532 { "16161616", kR16G16B16A16_unorm_SkColorType },
Mike Klein735c7ba2019-03-25 12:57:58 -0500533 };
534 const FlagOption<SkAlphaType> kAlphaTypes[] = {
535 { "premul", kPremul_SkAlphaType },
536 { "unpremul", kUnpremul_SkAlphaType },
537 };
538 const FlagOption<skcms_Matrix3x3> kGamuts[] = {
539 { "srgb", SkNamedGamut::kSRGB },
Mike Kleinb147ace2020-01-16 11:11:06 -0600540 { "p3", SkNamedGamut::kDisplayP3 },
Mike Klein735c7ba2019-03-25 12:57:58 -0500541 { "rec2020", SkNamedGamut::kRec2020 },
542 { "adobe", SkNamedGamut::kAdobeRGB },
543 { "narrow", gNarrow_toXYZD50},
544 };
545 const FlagOption<skcms_TransferFunction> kTransferFunctions[] = {
546 { "srgb" , SkNamedTransferFn::kSRGB },
Hal Canarybe67a172019-05-24 10:13:36 -0400547 { "rec2020", SkNamedTransferFn::kRec2020 },
Mike Klein735c7ba2019-03-25 12:57:58 -0500548 { "2.2" , SkNamedTransferFn::k2Dot2 },
549 { "linear" , SkNamedTransferFn::kLinear },
550 };
551
Mike Klein735c7ba2019-03-25 12:57:58 -0500552
Mike Klein9b462092019-03-27 13:52:35 -0500553 int backend;
Mike Klein735c7ba2019-03-25 12:57:58 -0500554 SkColorType ct;
555 SkAlphaType at;
556 skcms_Matrix3x3 gamut;
557 skcms_TransferFunction tf;
Mike Klein735c7ba2019-03-25 12:57:58 -0500558
Mike Klein9b462092019-03-27 13:52:35 -0500559 if (!parse_flag(FLAGS_backend, "backend", kBackends , &backend) ||
560 !parse_flag(FLAGS_ct , "ct" , kColorTypes , &ct) ||
Mike Klein735c7ba2019-03-25 12:57:58 -0500561 !parse_flag(FLAGS_at , "at" , kAlphaTypes , &at) ||
562 !parse_flag(FLAGS_gamut , "gamut" , kGamuts , &gamut) ||
Mike Klein9b462092019-03-27 13:52:35 -0500563 !parse_flag(FLAGS_tf , "tf" , kTransferFunctions, &tf)) {
Mike Klein735c7ba2019-03-25 12:57:58 -0500564 return 1;
565 }
566
Mike Klein4daf6372019-04-03 11:19:45 -0400567 sk_sp<SkColorSpace> cs = FLAGS_legacy ? nullptr
568 : SkColorSpace::MakeRGB(tf,gamut);
569 const SkImageInfo unsized_info = SkImageInfo::Make(0,0, ct,at,cs);
Mike Klein735c7ba2019-03-25 12:57:58 -0500570
Jim Van Verth8a9a3712019-05-31 10:49:12 -0400571 AutoreleasePool pool;
Mike Klein735c7ba2019-03-25 12:57:58 -0500572 for (auto source : sources) {
573 const auto start = std::chrono::steady_clock::now();
Mike Klein832d3c52019-04-02 15:23:46 -0400574 fprintf(stdout, "%50s", source.name.c_str());
Mike Kleinbf15b662019-04-15 11:32:16 -0500575 fflush(stdout);
Mike Klein735c7ba2019-03-25 12:57:58 -0500576
Brian Salomon9241a6d2019-10-03 13:26:54 -0400577 const SkImageInfo info = unsized_info.makeDimensions(source.size);
Mike Klein735c7ba2019-03-25 12:57:58 -0500578
Mike Kleina833cff2019-04-09 11:52:40 -0500579 auto draw = [&source](SkCanvas* canvas) {
580 Result result = source.draw(canvas);
581 switch (result.status) {
582 case Result::Ok: break;
583 case Result::Skip: return false;
584 case Result::Fail:
John Stiles616da102020-06-12 14:07:41 -0400585 SK_ABORT("%s", result.failure.c_str());
Mike Kleina833cff2019-04-09 11:52:40 -0500586 }
587 return true;
588 };
589
Mike Klein735c7ba2019-03-25 12:57:58 -0500590 GrContextOptions options = baseOptions;
591 source.tweak(&options);
592 GrContextFactory factory(options); // N.B. factory must outlive image
593
594 sk_sp<SkImage> image;
Mike Klein9b462092019-03-27 13:52:35 -0500595 sk_sp<SkData> blob;
596 const char* ext = ".png";
Mike Klein735c7ba2019-03-25 12:57:58 -0500597 switch (backend) {
598 case kCPU_Backend:
Mike Kleina833cff2019-04-09 11:52:40 -0500599 image = draw_with_cpu(draw, info);
Mike Klein735c7ba2019-03-25 12:57:58 -0500600 break;
Mike Klein9b462092019-03-27 13:52:35 -0500601 case kSKP_Backend:
Mike Kleina833cff2019-04-09 11:52:40 -0500602 blob = draw_as_skp(draw, info);
Mike Klein9b462092019-03-27 13:52:35 -0500603 ext = ".skp";
604 break;
Mike Kleinc245bd92019-03-27 14:31:09 -0500605 case kPDF_Backend:
Mike Kleina833cff2019-04-09 11:52:40 -0500606 blob = draw_as_pdf(draw, info, source.name);
Mike Kleinc245bd92019-03-27 14:31:09 -0500607 ext = ".pdf";
608 break;
Mike Klein735c7ba2019-03-25 12:57:58 -0500609 default:
Mike Kleina833cff2019-04-09 11:52:40 -0500610 image = draw_with_gpu(draw, info, (GrContextFactory::ContextType)backend, &factory);
Mike Klein735c7ba2019-03-25 12:57:58 -0500611 break;
612 }
613
Mike Klein9b462092019-03-27 13:52:35 -0500614 if (!image && !blob) {
Mike Klein832d3c52019-04-02 15:23:46 -0400615 fprintf(stdout, "\tskipped\n");
Mike Kleina5c27172019-04-02 10:26:48 -0400616 continue;
Mike Klein735c7ba2019-03-25 12:57:58 -0500617 }
618
Mike Kleined2cec42019-11-01 10:51:01 -0500619 // We read back a bitmap even when --quick is set and we won't use it,
620 // to keep us honest about deferred work, flushing pipelines, etc.
Mike Klein735c7ba2019-03-25 12:57:58 -0500621 SkBitmap bitmap;
Mike Klein9b462092019-03-27 13:52:35 -0500622 if (image && !image->asLegacyBitmap(&bitmap)) {
Mike Kleinbf15b662019-04-15 11:32:16 -0500623 SK_ABORT("SkImage::asLegacyBitmap() failed.");
Mike Klein735c7ba2019-03-25 12:57:58 -0500624 }
625
Mike Klein735c7ba2019-03-25 12:57:58 -0500626 SkString md5;
Mike Kleined2cec42019-11-01 10:51:01 -0500627 if (!FLAGS_quick) {
628 HashAndEncode hashAndEncode{bitmap};
629 {
630 SkMD5 hash;
631 if (image) {
632 hashAndEncode.write(&hash);
633 } else {
634 hash.write(blob->data(), blob->size());
Mike Klein9b462092019-03-27 13:52:35 -0500635 }
Mike Kleined2cec42019-11-01 10:51:01 -0500636
637 SkMD5::Digest digest = hash.finish();
638 for (int i = 0; i < 16; i++) {
639 md5.appendf("%02x", digest.data[i]);
640 }
641 }
642
643 if (!FLAGS_writePath.isEmpty()) {
644 sk_mkdir(FLAGS_writePath[0]);
645 SkString path = SkStringPrintf("%s/%s%s",
646 FLAGS_writePath[0], source.name.c_str(), ext);
647
648 if (image) {
649 if (!hashAndEncode.writePngTo(path.c_str(), md5.c_str(),
650 FLAGS_key, FLAGS_properties)) {
651 SK_ABORT("Could not write .png.");
652 }
653 } else {
654 SkFILEWStream file(path.c_str());
655 file.write(blob->data(), blob->size());
656 }
Mike Klein735c7ba2019-03-25 12:57:58 -0500657 }
Mike Klein735c7ba2019-03-25 12:57:58 -0500658 }
659
Mike Klein832d3c52019-04-02 15:23:46 -0400660 const auto elapsed = std::chrono::steady_clock::now() - start;
661 fprintf(stdout, "\t%s\t%7dms\n",
662 md5.c_str(),
663 (int)std::chrono::duration_cast<std::chrono::milliseconds>(elapsed).count());
Jim Van Verth8a9a3712019-05-31 10:49:12 -0400664 pool.drain();
Mike Klein735c7ba2019-03-25 12:57:58 -0500665 }
666
Brian Osman5aa11fb2019-04-08 16:40:36 -0400667 if (!FLAGS_writeShaders.isEmpty()) {
668 sk_mkdir(FLAGS_writeShaders[0]);
669 GrBackendApi api =
670 GrContextFactory::ContextTypeBackend((GrContextFactory::ContextType)backend);
671 memoryCache.writeShadersToDisk(FLAGS_writeShaders[0], api);
672
673 }
674
Mike Klein735c7ba2019-03-25 12:57:58 -0500675 return 0;
676}