2014-05-06 19:45:18 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2014 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "SkCommandLineFlags.h"
|
|
|
|
#include "SkGraphics.h"
|
|
|
|
#include "SkPicture.h"
|
|
|
|
#include "SkRecordOpts.h"
|
|
|
|
#include "SkRecorder.h"
|
|
|
|
#include "SkStream.h"
|
|
|
|
|
2014-05-15 16:10:37 +00:00
|
|
|
#include "DumpRecord.h"
|
|
|
|
#include "LazyDecodeBitmap.h"
|
|
|
|
|
2014-05-06 19:45:18 +00:00
|
|
|
DEFINE_string2(skps, r, "", ".SKPs to dump.");
|
|
|
|
DEFINE_string(match, "", "The usual filters on file names to dump.");
|
|
|
|
DEFINE_bool2(optimize, O, false, "Run SkRecordOptimize before dumping.");
|
2014-05-09 14:59:29 +00:00
|
|
|
DEFINE_int32(tile, 1000000000, "Simulated tile size.");
|
|
|
|
DEFINE_bool(timeWithCommand, false, "If true, print time next to command, else in first column.");
|
2014-05-06 19:45:18 +00:00
|
|
|
|
2014-05-09 14:59:29 +00:00
|
|
|
static void dump(const char* name, int w, int h, const SkRecord& record) {
|
|
|
|
SkBitmap bitmap;
|
|
|
|
bitmap.allocN32Pixels(w, h);
|
|
|
|
SkCanvas canvas(bitmap);
|
2014-05-15 16:10:37 +00:00
|
|
|
canvas.clipRect(SkRect::MakeWH(SkIntToScalar(FLAGS_tile),
|
|
|
|
SkIntToScalar(FLAGS_tile)));
|
2014-05-06 19:45:18 +00:00
|
|
|
|
|
|
|
printf("%s %s\n", FLAGS_optimize ? "optimized" : "not-optimized", name);
|
2014-05-09 14:59:29 +00:00
|
|
|
|
2014-05-15 16:10:37 +00:00
|
|
|
DumpRecord(record, &canvas, FLAGS_timeWithCommand);
|
2014-05-06 19:45:18 +00:00
|
|
|
}
|
|
|
|
|
2014-05-15 16:10:37 +00:00
|
|
|
|
2014-05-06 19:45:18 +00:00
|
|
|
int tool_main(int argc, char** argv);
|
|
|
|
int tool_main(int argc, char** argv) {
|
|
|
|
SkCommandLineFlags::Parse(argc, argv);
|
|
|
|
SkAutoGraphics ag;
|
|
|
|
|
|
|
|
for (int i = 0; i < FLAGS_skps.count(); i++) {
|
|
|
|
if (SkCommandLineFlags::ShouldSkip(FLAGS_match, FLAGS_skps[i])) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2015-01-21 20:09:53 +00:00
|
|
|
SkAutoTDelete<SkStream> stream(SkStream::NewFromFile(FLAGS_skps[i]));
|
2014-05-06 19:45:18 +00:00
|
|
|
if (!stream) {
|
|
|
|
SkDebugf("Could not read %s.\n", FLAGS_skps[i]);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
SkAutoTUnref<SkPicture> src(
|
|
|
|
SkPicture::CreateFromStream(stream, sk_tools::LazyDecodeBitmap));
|
|
|
|
if (!src) {
|
|
|
|
SkDebugf("Could not read %s as an SkPicture.\n", FLAGS_skps[i]);
|
|
|
|
exit(1);
|
|
|
|
}
|
2014-08-29 15:03:56 +00:00
|
|
|
const int w = SkScalarCeilToInt(src->cullRect().width());
|
|
|
|
const int h = SkScalarCeilToInt(src->cullRect().height());
|
2014-05-06 19:45:18 +00:00
|
|
|
|
|
|
|
SkRecord record;
|
2014-05-29 16:52:40 +00:00
|
|
|
SkRecorder canvas(&record, w, h);
|
2014-09-04 15:42:50 +00:00
|
|
|
src->playback(&canvas);
|
2014-05-06 19:45:18 +00:00
|
|
|
|
|
|
|
if (FLAGS_optimize) {
|
|
|
|
SkRecordOptimize(&record);
|
|
|
|
}
|
|
|
|
|
2014-05-09 14:59:29 +00:00
|
|
|
dump(FLAGS_skps[i], w, h, record);
|
2014-05-06 19:45:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if !defined SK_BUILD_FOR_IOS
|
|
|
|
int main(int argc, char * const argv[]) {
|
|
|
|
return tool_main(argc, (char**) argv);
|
|
|
|
}
|
|
|
|
#endif
|