blob: 300feb5951bddfd633b6ee4db38c2b4e031d4b7e [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"
14#include "include/private/SkTHash.h"
15#include "src/core/SkColorSpacePriv.h"
16#include "src/core/SkMD5.h"
17#include "src/core/SkOSFile.h"
18#include "src/gpu/GrContextPriv.h"
19#include "src/gpu/GrGpu.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050020#include "src/utils/SkOSPath.h"
Mike Kleinfee00792019-11-21 16:18:47 -060021#include "tests/Test.h"
Jim Van Verth8a9a3712019-05-31 10:49:12 -040022#include "tools/AutoreleasePool.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050023#include "tools/CrashHandler.h"
24#include "tools/HashAndEncode.h"
25#include "tools/ToolUtils.h"
26#include "tools/flags/CommandLineFlags.h"
27#include "tools/flags/CommonFlags.h"
28#include "tools/gpu/GrContextFactory.h"
29#include "tools/gpu/MemoryCache.h"
30#include "tools/trace/EventTracingPriv.h"
Mike Klein735c7ba2019-03-25 12:57:58 -050031#include <chrono>
32#include <functional>
33#include <stdio.h>
34#include <stdlib.h>
35
Brian Osmanca946562019-04-10 13:51:53 -040036#if defined(SK_ENABLE_SKOTTIE)
Mike Kleinc0bd9f92019-04-23 12:05:21 -050037 #include "modules/skottie/include/Skottie.h"
Brian Osman849f4d62019-11-26 08:58:26 -050038 #include "modules/skresources/include/SkResources.h"
Brian Osmanca946562019-04-10 13:51:53 -040039#endif
40
Mike Klein735c7ba2019-03-25 12:57:58 -050041using sk_gpu_test::GrContextFactory;
42
Mike Kleinfee00792019-11-21 16:18:47 -060043static DEFINE_bool(listGMs , false, "Print GM names and exit.");
44static DEFINE_bool(listTests, false, "Print unit test names and exit.");
45
Mike Klein735c7ba2019-03-25 12:57:58 -050046static DEFINE_string2(sources, s, "", "Which GMs, .skps, or images to draw.");
47static DEFINE_string2(backend, b, "", "Backend used to create a canvas to draw into.");
48
Mike Klein4daf6372019-04-03 11:19:45 -040049static DEFINE_string(ct , "8888", "The color type for any raster backend.");
50static DEFINE_string(at , "premul", "The alpha type for any raster backend.");
51static DEFINE_string(gamut , "srgb", "The color gamut for any raster backend.");
52static DEFINE_string(tf , "srgb", "The transfer function for any raster backend.");
53static DEFINE_bool (legacy, false, "Use a null SkColorSpace instead of --gamut and --tf?");
Mike Klein2a57e792020-01-14 12:47:52 -060054static DEFINE_bool (skvm , false, "Use SkVMBlitter when supported?");
Mike Klein31bfa832020-01-22 11:36:40 -060055static DEFINE_bool (dylib , false, "Use SkVM via dylib?");
Mike Klein735c7ba2019-03-25 12:57:58 -050056
57static DEFINE_int (samples , 0, "Samples per pixel in GPU backends.");
Mike Klein735c7ba2019-03-25 12:57:58 -050058static DEFINE_bool (stencils, true, "If false, avoid stencil buffers in GPU backends.");
59static DEFINE_bool (dit , false, "Use device-independent text in GPU backends.");
60static DEFINE_string(surf , "default", "Backing store for GPU backend surfaces.");
61
62static DEFINE_bool( preAbandonGpuContext, false, "Abandon the GrContext before drawing.");
63static DEFINE_bool( abandonGpuContext, false, "Abandon the GrContext after drawing.");
64static DEFINE_bool(releaseAndAbandonGpuContext, false,
65 "Release all GPU resources and abandon the GrContext after drawing.");
66
67static DEFINE_bool(decodeToDst, false,
68 "Decode images to destination format rather than suggested natural format.");
69
Mike Kleinc245bd92019-03-27 14:31:09 -050070static DEFINE_double(rasterDPI, SK_ScalarDefaultRasterDPI,
71 "DPI for rasterized content in vector backends like --backend pdf.");
72static DEFINE_bool(PDFA, false, "Create PDF/A with --backend pdf?");
73
Mike Klein735c7ba2019-03-25 12:57:58 -050074static DEFINE_bool (cpuDetect, true, "Detect CPU features for runtime optimizations?");
75static DEFINE_string2(writePath, w, "", "Write .pngs to this directory if set.");
Mike Kleined2cec42019-11-01 10:51:01 -050076static DEFINE_bool (quick, false, "Skip image hashing and encoding?");
Mike Klein735c7ba2019-03-25 12:57:58 -050077
Brian Osman5aa11fb2019-04-08 16:40:36 -040078static DEFINE_string(writeShaders, "", "Write GLSL shaders to this directory if set.");
79
Mike Klein735c7ba2019-03-25 12:57:58 -050080static DEFINE_string(key, "", "Metadata passed through to .png encoder and .json output.");
Mike Klein7b8bc532019-04-09 11:19:47 -050081static DEFINE_string(properties, "", "Metadata passed through to .png encoder and .json output.");
Mike Klein735c7ba2019-03-25 12:57:58 -050082
83template <typename T>
84struct FlagOption {
85 const char* label;
86 T value;
87};
88
89template <typename T, int N>
90static bool parse_flag(const CommandLineFlags::StringArray& flag,
91 const char* flag_name,
92 const FlagOption<T> (&array)[N],
93 T* value) {
94 for (auto entry : array) {
95 if (flag.contains(entry.label)) {
96 *value = entry.value;
97 return true;
98 }
99 }
100 fprintf(stderr, "Known values for --%s:\n", flag_name);
101 for (auto entry : array) {
102 fprintf(stderr, " --%s %s\n", flag_name, entry.label);
103 }
104 return false;
105}
106
Mike Kleina833cff2019-04-09 11:52:40 -0500107struct Result {
108 enum { Ok, Skip, Fail} status;
109 SkString failure;
110};
111static const Result ok = {Result::Ok, {}},
112 skip = {Result::Skip, {}};
113
Adlai Holler684838f2020-05-12 10:41:04 -0400114static Result fail(const char* why) {
115 return { Result::Fail, SkString(why) };
116}
Mike Kleina833cff2019-04-09 11:52:40 -0500117template <typename... Args>
Adlai Holler684838f2020-05-12 10:41:04 -0400118static Result fail(const char* whyFmt, Args... args) {
119 return { Result::Fail, SkStringPrintf(whyFmt, args...) };
Mike Kleina833cff2019-04-09 11:52:40 -0500120}
121
122
Mike Klein735c7ba2019-03-25 12:57:58 -0500123struct Source {
124 SkString name;
125 SkISize size;
Mike Kleina833cff2019-04-09 11:52:40 -0500126 std::function<Result(SkCanvas*)> draw;
127 std::function<void(GrContextOptions*)> tweak = [](GrContextOptions*){};
Mike Klein735c7ba2019-03-25 12:57:58 -0500128};
129
Mike Kleina833cff2019-04-09 11:52:40 -0500130static void init(Source* source, std::shared_ptr<skiagm::GM> gm) {
131 source->size = gm->getISize();
132 source->tweak = [gm](GrContextOptions* options) { gm->modifyGrContextOptions(options); };
133 source->draw = [gm](SkCanvas* canvas) {
Robert Phillipsb87b39b2020-07-01 14:45:24 -0400134 auto direct = canvas->recordingContext() ? canvas->recordingContext()->asDirectContext()
135 : nullptr;
136
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
304 GrContext* context = factory->getContextInfo(api, overrides)
305 .grContext();
306
307 uint32_t flags = FLAGS_dit ? SkSurfaceProps::kUseDeviceIndependentFonts_Flag
308 : 0;
309 SkSurfaceProps props(flags, SkSurfaceProps::kLegacyFontHost_InitType);
310
311 sk_sp<SkSurface> surface;
312 GrBackendTexture backendTexture;
313 GrBackendRenderTarget backendRT;
314
315 switch (surfaceType) {
316 case SurfaceType::kDefault:
317 surface = SkSurface::MakeRenderTarget(context,
318 SkBudgeted::kNo,
319 info,
320 FLAGS_samples,
321 &props);
322 break;
323
324 case SurfaceType::kBackendTexture:
Robert Phillips5c7a25b2019-05-20 08:38:07 -0400325 backendTexture = context->createBackendTexture(info.width(),
326 info.height(),
327 info.colorType(),
328 GrMipMapped::kNo,
Emircan Uysaler23ca4e72019-06-24 10:53:09 -0400329 GrRenderable::kYes,
330 GrProtected::kNo);
Mike Klein735c7ba2019-03-25 12:57:58 -0500331 surface = SkSurface::MakeFromBackendTexture(context,
332 backendTexture,
333 kTopLeft_GrSurfaceOrigin,
334 FLAGS_samples,
335 info.colorType(),
336 info.refColorSpace(),
337 &props);
338 break;
339
340 case SurfaceType::kBackendRenderTarget:
341 backendRT = context->priv().getGpu()
342 ->createTestingOnlyBackendRenderTarget(info.width(),
343 info.height(),
344 SkColorTypeToGrColorType(info.colorType()));
345 surface = SkSurface::MakeFromBackendRenderTarget(context,
346 backendRT,
347 kBottomLeft_GrSurfaceOrigin,
348 info.colorType(),
349 info.refColorSpace(),
350 &props);
351 break;
352 }
353
354 if (!surface) {
355 fprintf(stderr, "Could not create GPU surface.\n");
356 return nullptr;
357 }
358
359 if (FLAGS_preAbandonGpuContext) {
360 factory->abandonContexts();
361 }
362
Mike Kleina5c27172019-04-02 10:26:48 -0400363 sk_sp<SkImage> image;
364 if (draw(surface->getCanvas())) {
365 image = surface->makeImageSnapshot();
366 }
Mike Klein735c7ba2019-03-25 12:57:58 -0500367
368 if (FLAGS_abandonGpuContext) {
369 factory->abandonContexts();
370 } else if (FLAGS_releaseAndAbandonGpuContext) {
371 factory->releaseResourcesAndAbandonContexts();
372 }
373
374 if (!context->abandoned()) {
375 surface.reset();
376 if (backendTexture.isValid()) {
Robert Phillips5c7a25b2019-05-20 08:38:07 -0400377 context->deleteBackendTexture(backendTexture);
Mike Klein735c7ba2019-03-25 12:57:58 -0500378 }
379 if (backendRT.isValid()) {
380 context->priv().getGpu()->deleteTestingOnlyBackendRenderTarget(backendRT);
381 }
382 }
383
384 return image;
385}
386
Mike Klein2a57e792020-01-14 12:47:52 -0600387extern bool gUseSkVMBlitter;
Mike Klein31bfa832020-01-22 11:36:40 -0600388extern bool gSkVMJITViaDylib;
Mike Klein2a57e792020-01-14 12:47:52 -0600389
Mike Klein735c7ba2019-03-25 12:57:58 -0500390int main(int argc, char** argv) {
391 CommandLineFlags::Parse(argc, argv);
Mike Kleinbf15b662019-04-15 11:32:16 -0500392 SetupCrashHandler();
Mike Klein735c7ba2019-03-25 12:57:58 -0500393
394 if (FLAGS_cpuDetect) {
395 SkGraphics::Init();
396 }
Mike Klein31bfa832020-01-22 11:36:40 -0600397 gUseSkVMBlitter = FLAGS_skvm;
398 gSkVMJITViaDylib = FLAGS_dylib;
Mike Klein2a57e792020-01-14 12:47:52 -0600399
Mike Klein735c7ba2019-03-25 12:57:58 -0500400 initializeEventTracingForTools();
401 ToolUtils::SetDefaultFontMgr();
402 SetAnalyticAAFromCommonFlags();
403
404 GrContextOptions baseOptions;
405 SetCtxOptionsFromCommonFlags(&baseOptions);
406
Brian Osman5aa11fb2019-04-08 16:40:36 -0400407 sk_gpu_test::MemoryCache memoryCache;
408 if (!FLAGS_writeShaders.isEmpty()) {
409 baseOptions.fPersistentCache = &memoryCache;
Brian Osmana66081d2019-09-03 14:59:26 -0400410 baseOptions.fShaderCacheStrategy = GrContextOptions::ShaderCacheStrategy::kBackendSource;
Brian Osman5aa11fb2019-04-08 16:40:36 -0400411 }
412
Mike Kleincbe93ee2019-04-02 17:00:54 -0400413 SkTHashMap<SkString, skiagm::GMFactory> gm_factories;
Mike Klein735c7ba2019-03-25 12:57:58 -0500414 for (skiagm::GMFactory factory : skiagm::GMRegistry::Range()) {
Hal Canaryedda5652019-08-05 10:28:09 -0400415 std::unique_ptr<skiagm::GM> gm{factory()};
Mike Kleinfee00792019-11-21 16:18:47 -0600416 if (FLAGS_listGMs) {
Mike Klein735c7ba2019-03-25 12:57:58 -0500417 fprintf(stdout, "%s\n", gm->getName());
Mike Kleincbe93ee2019-04-02 17:00:54 -0400418 } else {
419 gm_factories.set(SkString{gm->getName()}, factory);
Mike Klein735c7ba2019-03-25 12:57:58 -0500420 }
421 }
Mike Kleinfee00792019-11-21 16:18:47 -0600422
423 SkTHashMap<SkString, const skiatest::Test*> tests;
424 for (const skiatest::Test& test : skiatest::TestRegistry::Range()) {
425 if (test.needsGpu) {
426 continue; // TODO
427 }
428 if (FLAGS_listTests) {
429 fprintf(stdout, "%s\n", test.name);
430 } else {
431 tests.set(SkString{test.name}, &test);
432 }
433 }
434
435 if (FLAGS_listGMs || FLAGS_listTests) {
Mike Kleincbe93ee2019-04-02 17:00:54 -0400436 return 0;
437 }
Mike Kleinfee00792019-11-21 16:18:47 -0600438 if (FLAGS_sources.isEmpty()) {
439 fprintf(stderr, "Please give me something to run using -s/--sources!\n");
440 return 1;
441 }
Mike Kleincbe93ee2019-04-02 17:00:54 -0400442
443 SkTArray<Source> sources;
Mike Kleina833cff2019-04-09 11:52:40 -0500444 for (const SkString& name : FLAGS_sources) {
445 Source* source = &sources.push_back();
446
447 if (skiagm::GMFactory* factory = gm_factories.find(name)) {
Hal Canaryedda5652019-08-05 10:28:09 -0400448 std::shared_ptr<skiagm::GM> gm{(*factory)()};
Mike Kleina833cff2019-04-09 11:52:40 -0500449 source->name = name;
Ben Wagner406ff502019-08-12 16:39:24 -0400450 init(source, std::move(gm));
Mike Kleincbe93ee2019-04-02 17:00:54 -0400451 continue;
452 }
453
Mike Kleinfee00792019-11-21 16:18:47 -0600454 if (const skiatest::Test** test = tests.find(name)) {
455 source->name = name;
456 init(source, **test);
457 continue;
458 }
459
Mike Kleina833cff2019-04-09 11:52:40 -0500460 if (sk_sp<SkData> blob = SkData::MakeFromFileName(name.c_str())) {
461 source->name = SkOSPath::Basename(name.c_str());
Mike Klein735c7ba2019-03-25 12:57:58 -0500462
Mike Kleince90d6f2019-03-29 11:14:14 -0500463 if (name.endsWith(".skp")) {
464 if (sk_sp<SkPicture> pic = SkPicture::MakeFromData(blob.get())) {
Mike Kleina833cff2019-04-09 11:52:40 -0500465 init(source, pic);
Mike Kleincbe93ee2019-04-02 17:00:54 -0400466 continue;
Mike Kleince90d6f2019-03-29 11:14:14 -0500467 }
468 } else if (name.endsWith(".svg")) {
469 SkMemoryStream stream{blob};
470 if (sk_sp<SkSVGDOM> svg = SkSVGDOM::MakeFromStream(stream)) {
Mike Kleina833cff2019-04-09 11:52:40 -0500471 init(source, svg);
Mike Kleincbe93ee2019-04-02 17:00:54 -0400472 continue;
Mike Kleince90d6f2019-03-29 11:14:14 -0500473 }
Brian Osmanca946562019-04-10 13:51:53 -0400474 }
475#if defined(SK_ENABLE_SKOTTIE)
476 else if (name.endsWith(".json")) {
Mike Kleina833cff2019-04-09 11:52:40 -0500477 const SkString dir = SkOSPath::Dirname(name.c_str());
Mike Klein22924262019-04-02 14:14:56 -0400478 if (sk_sp<skottie::Animation> animation = skottie::Animation::Builder()
Brian Osman849f4d62019-11-26 08:58:26 -0500479 .setResourceProvider(skresources::FileResourceProvider::Make(dir))
Mike Klein176da0b2019-04-03 07:44:24 -0400480 .make((const char*)blob->data(), blob->size())) {
Mike Kleina833cff2019-04-09 11:52:40 -0500481 init(source, animation);
Mike Kleincbe93ee2019-04-02 17:00:54 -0400482 continue;
Mike Klein22924262019-04-02 14:14:56 -0400483 }
Brian Osmanca946562019-04-10 13:51:53 -0400484 }
485#endif
486 else if (std::shared_ptr<SkCodec> codec = SkCodec::MakeFromData(blob)) {
Mike Kleina833cff2019-04-09 11:52:40 -0500487 init(source, codec);
Mike Kleincbe93ee2019-04-02 17:00:54 -0400488 continue;
Mike Klein735c7ba2019-03-25 12:57:58 -0500489 }
490 }
Mike Kleincbe93ee2019-04-02 17:00:54 -0400491
Mike Kleina833cff2019-04-09 11:52:40 -0500492 fprintf(stderr, "Don't understand source '%s'... bailing out.\n", name.c_str());
Mike Kleincbe93ee2019-04-02 17:00:54 -0400493 return 1;
Mike Klein735c7ba2019-03-25 12:57:58 -0500494 }
495
Mike Klein9b462092019-03-27 13:52:35 -0500496 enum NonGpuBackends {
497 kCPU_Backend = -1,
498 kSKP_Backend = -2,
Mike Kleinc245bd92019-03-27 14:31:09 -0500499 kPDF_Backend = -3,
Mike Klein9b462092019-03-27 13:52:35 -0500500 };
501 const FlagOption<int> kBackends[] = {
502 { "cpu" , kCPU_Backend },
503 { "skp" , kSKP_Backend },
Mike Kleinc245bd92019-03-27 14:31:09 -0500504 { "pdf" , kPDF_Backend },
Mike Klein9b462092019-03-27 13:52:35 -0500505 { "gl" , GrContextFactory::kGL_ContextType },
506 { "gles" , GrContextFactory::kGLES_ContextType },
507 { "angle_d3d9_es2" , GrContextFactory::kANGLE_D3D9_ES2_ContextType },
508 { "angle_d3d11_es2", GrContextFactory::kANGLE_D3D11_ES2_ContextType },
509 { "angle_d3d11_es3", GrContextFactory::kANGLE_D3D11_ES3_ContextType },
510 { "angle_gl_es2" , GrContextFactory::kANGLE_GL_ES2_ContextType },
511 { "angle_gl_es3" , GrContextFactory::kANGLE_GL_ES3_ContextType },
512 { "commandbuffer" , GrContextFactory::kCommandBuffer_ContextType },
513 { "vk" , GrContextFactory::kVulkan_ContextType },
514 { "mtl" , GrContextFactory::kMetal_ContextType },
515 { "mock" , GrContextFactory::kMock_ContextType },
516 };
Mike Klein735c7ba2019-03-25 12:57:58 -0500517 const FlagOption<SkColorType> kColorTypes[] = {
Mike Kleinf7eb0542020-02-11 12:19:08 -0600518 { "a8", kAlpha_8_SkColorType },
519 { "g8", kGray_8_SkColorType },
520 { "565", kRGB_565_SkColorType },
521 { "4444", kARGB_4444_SkColorType },
522 { "8888", kN32_SkColorType },
523 { "888x", kRGB_888x_SkColorType },
524 { "1010102", kRGBA_1010102_SkColorType },
525 { "101010x", kRGB_101010x_SkColorType },
526 { "bgra1010102", kBGRA_1010102_SkColorType },
527 { "bgr101010x", kBGR_101010x_SkColorType },
528 { "f16norm", kRGBA_F16Norm_SkColorType },
529 { "f16", kRGBA_F16_SkColorType },
530 { "f32", kRGBA_F32_SkColorType },
531 { "rgba", kRGBA_8888_SkColorType },
532 { "bgra", kBGRA_8888_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}