2012-06-12 14:56:36 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2012 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
2012-11-07 18:01:46 +00:00
|
|
|
#include "CopyTilesRenderer.h"
|
2012-06-12 14:56:36 +00:00
|
|
|
#include "SkBitmap.h"
|
|
|
|
#include "SkCanvas.h"
|
2012-07-20 22:34:27 +00:00
|
|
|
#include "SkDevice.h"
|
2012-09-10 17:19:06 +00:00
|
|
|
#include "SkGraphics.h"
|
Add the ability to provide function pointers to SkPicture serialization
and deserialization for encoding and decoding bitmaps.
Remove kForceFlattenBitmapPixels_Flag, which is no longer used.
When an SkOrderedReadBuffer needs to read a bitmap, if it does not
have an image decoder, use a dummy bitmap.
In GM, add a tolerance option for color differences, used when
testing picture serialization, so it can assume two images are the
same even though PNG encoding/decoding may have resulted in small
differences.
Create dummy implementations for SkImageDecoder and SkImageEncoder
functions in SkImageDecoder_empty so that a project that does not
want to include the images project it can still build.
Allow ports to build without images project.
In Mac's image encoder, copy 4444 to 8888 before encoding.
Add SkWriter32::reservePad, to provide a pointer to write non 4 byte
aligned data, padded with zeroes.
In bench_ and render_ pictures, pass decode function to SkPicture
creation from a stream.
BUG=https://code.google.com/p/skia/issues/detail?id=842
Review URL: https://codereview.appspot.com/6551071
git-svn-id: http://skia.googlecode.com/svn/trunk@5818 2bbb7eff-a529-9590-31e7-b0007b416f81
2012-10-04 21:46:08 +00:00
|
|
|
#include "SkImageDecoder.h"
|
2012-08-23 20:53:25 +00:00
|
|
|
#include "SkMath.h"
|
2012-06-12 14:56:36 +00:00
|
|
|
#include "SkOSFile.h"
|
|
|
|
#include "SkPicture.h"
|
|
|
|
#include "SkStream.h"
|
|
|
|
#include "SkString.h"
|
2012-07-13 18:55:53 +00:00
|
|
|
#include "SkTArray.h"
|
2012-07-26 17:27:57 +00:00
|
|
|
#include "PictureRenderer.h"
|
2012-06-22 18:24:56 +00:00
|
|
|
#include "picture_utils.h"
|
2012-06-12 14:56:36 +00:00
|
|
|
|
|
|
|
static void usage(const char* argv0) {
|
|
|
|
SkDebugf("SkPicture rendering tool\n");
|
|
|
|
SkDebugf("\n"
|
|
|
|
"Usage: \n"
|
2012-10-26 13:26:55 +00:00
|
|
|
" %s <input>... \n"
|
2012-11-07 18:01:46 +00:00
|
|
|
" [-w <outputDir>]\n"
|
|
|
|
" [--mode pow2tile minWidth height | copyTile width height | simple\n"
|
|
|
|
" | tile width height]\n"
|
2012-10-03 17:32:33 +00:00
|
|
|
" [--pipe]\n"
|
|
|
|
" [--multi count]\n"
|
2012-08-20 15:04:04 +00:00
|
|
|
" [--device bitmap"
|
|
|
|
#if SK_SUPPORT_GPU
|
|
|
|
" | gpu"
|
|
|
|
#endif
|
|
|
|
"]"
|
2012-06-12 14:56:36 +00:00
|
|
|
, argv0);
|
2012-07-20 22:34:27 +00:00
|
|
|
SkDebugf("\n\n");
|
2012-06-12 14:56:36 +00:00
|
|
|
SkDebugf(
|
2012-08-02 18:57:53 +00:00
|
|
|
" input: A list of directories and files to use as input. Files are\n"
|
|
|
|
" expected to have the .skp extension.\n\n");
|
2012-06-12 14:56:36 +00:00
|
|
|
SkDebugf(
|
2012-08-02 18:57:53 +00:00
|
|
|
" outputDir: directory to write the rendered images.\n\n");
|
2012-07-20 22:34:27 +00:00
|
|
|
SkDebugf(
|
2012-11-07 18:01:46 +00:00
|
|
|
" --mode pow2tile minWidth height | copyTile width height | simple\n"
|
|
|
|
" | tile width height | rerecord: Run in the corresponding mode.\n"
|
2012-08-23 20:53:25 +00:00
|
|
|
" Default is simple.\n");
|
2012-07-20 22:34:27 +00:00
|
|
|
SkDebugf(
|
2012-11-07 18:01:46 +00:00
|
|
|
" pow2tile minWidth height, Creates tiles with widths\n"
|
2012-08-23 20:53:25 +00:00
|
|
|
" that are all a power of two\n"
|
|
|
|
" such that they minimize the\n"
|
|
|
|
" amount of wasted tile space.\n"
|
|
|
|
" minWidth is the minimum width\n"
|
|
|
|
" of these tiles and must be a\n"
|
|
|
|
" power of two. A simple render\n"
|
|
|
|
" is done with these tiles.\n");
|
|
|
|
SkDebugf(
|
2012-11-07 17:52:48 +00:00
|
|
|
" simple, Render using the default rendering method.\n"
|
|
|
|
" rerecord, Record the picture as a new skp, with the bitmaps PNG encoded.\n"
|
|
|
|
);
|
2012-08-02 18:57:53 +00:00
|
|
|
SkDebugf(
|
2012-11-07 18:01:46 +00:00
|
|
|
" tile width height, Do a simple render using tiles\n"
|
|
|
|
" with the given dimensions.\n"
|
|
|
|
" copyTile width height, Draw the picture, then copy it into tiles.\n"
|
|
|
|
" Does not support percentages.\n"
|
|
|
|
" If the picture is large enough, breaks it into\n"
|
|
|
|
" larger tiles (and draws the picture once per\n"
|
|
|
|
" larger tile) to avoid creating a large canvas.\n"
|
|
|
|
" Add --tiles x y to specify the number of tiles\n"
|
|
|
|
" per larger tile in the x and y direction.\n"
|
|
|
|
);
|
2012-08-20 15:04:04 +00:00
|
|
|
SkDebugf("\n");
|
|
|
|
SkDebugf(
|
2012-10-03 17:32:33 +00:00
|
|
|
" --multi count : Set the number of threads for multi threaded drawing. Must be greater\n"
|
|
|
|
" than 1. Only works with tiled rendering.\n"
|
2012-11-02 21:28:12 +00:00
|
|
|
" --pipe: Benchmark SkGPipe rendering. Currently incompatible with \"mode\".\n");
|
2012-10-03 17:32:33 +00:00
|
|
|
SkDebugf(
|
2012-08-20 15:04:04 +00:00
|
|
|
" --device bitmap"
|
|
|
|
#if SK_SUPPORT_GPU
|
|
|
|
" | gpu"
|
|
|
|
#endif
|
|
|
|
": Use the corresponding device. Default is bitmap.\n");
|
|
|
|
SkDebugf(
|
|
|
|
" bitmap, Render to a bitmap.\n");
|
|
|
|
#if SK_SUPPORT_GPU
|
2012-08-20 15:04:12 +00:00
|
|
|
SkDebugf(
|
2012-08-20 15:04:04 +00:00
|
|
|
" gpu, Render to the GPU.\n");
|
|
|
|
#endif
|
2012-06-12 14:56:36 +00:00
|
|
|
}
|
|
|
|
|
2012-07-13 18:22:59 +00:00
|
|
|
static void make_output_filepath(SkString* path, const SkString& dir,
|
2012-06-12 14:56:36 +00:00
|
|
|
const SkString& name) {
|
2012-06-22 18:24:56 +00:00
|
|
|
sk_tools::make_filepath(path, dir, name);
|
2012-09-20 14:54:21 +00:00
|
|
|
// Remove ".skp"
|
|
|
|
path->remove(path->size() - 4, 4);
|
2012-06-12 14:56:36 +00:00
|
|
|
}
|
|
|
|
|
2012-10-26 13:26:55 +00:00
|
|
|
static bool render_picture(const SkString& inputPath, const SkString* outputDir,
|
2012-07-26 17:27:57 +00:00
|
|
|
sk_tools::PictureRenderer& renderer) {
|
2012-07-09 18:32:08 +00:00
|
|
|
SkString inputFilename;
|
|
|
|
sk_tools::get_basename(&inputFilename, inputPath);
|
2012-06-22 18:24:56 +00:00
|
|
|
|
2012-07-09 18:32:08 +00:00
|
|
|
SkFILEStream inputStream;
|
2012-06-22 18:24:56 +00:00
|
|
|
inputStream.setPath(inputPath.c_str());
|
|
|
|
if (!inputStream.isValid()) {
|
|
|
|
SkDebugf("Could not open file %s\n", inputPath.c_str());
|
2012-09-17 18:26:06 +00:00
|
|
|
return false;
|
2012-06-22 18:24:56 +00:00
|
|
|
}
|
|
|
|
|
2012-09-17 18:26:06 +00:00
|
|
|
bool success = false;
|
Add the ability to provide function pointers to SkPicture serialization
and deserialization for encoding and decoding bitmaps.
Remove kForceFlattenBitmapPixels_Flag, which is no longer used.
When an SkOrderedReadBuffer needs to read a bitmap, if it does not
have an image decoder, use a dummy bitmap.
In GM, add a tolerance option for color differences, used when
testing picture serialization, so it can assume two images are the
same even though PNG encoding/decoding may have resulted in small
differences.
Create dummy implementations for SkImageDecoder and SkImageEncoder
functions in SkImageDecoder_empty so that a project that does not
want to include the images project it can still build.
Allow ports to build without images project.
In Mac's image encoder, copy 4444 to 8888 before encoding.
Add SkWriter32::reservePad, to provide a pointer to write non 4 byte
aligned data, padded with zeroes.
In bench_ and render_ pictures, pass decode function to SkPicture
creation from a stream.
BUG=https://code.google.com/p/skia/issues/detail?id=842
Review URL: https://codereview.appspot.com/6551071
git-svn-id: http://skia.googlecode.com/svn/trunk@5818 2bbb7eff-a529-9590-31e7-b0007b416f81
2012-10-04 21:46:08 +00:00
|
|
|
SkPicture picture(&inputStream, &success, &SkImageDecoder::DecodeStream);
|
2012-09-17 18:26:06 +00:00
|
|
|
if (!success) {
|
|
|
|
SkDebugf("Could not read an SkPicture from %s\n", inputPath.c_str());
|
|
|
|
return false;
|
|
|
|
}
|
2012-07-26 17:27:57 +00:00
|
|
|
|
2012-09-20 18:54:04 +00:00
|
|
|
SkDebugf("drawing... [%i %i] %s\n", picture.width(), picture.height(),
|
2012-09-10 18:18:38 +00:00
|
|
|
inputPath.c_str());
|
2012-09-14 02:01:10 +00:00
|
|
|
|
2012-09-20 18:54:04 +00:00
|
|
|
renderer.init(&picture);
|
2012-10-01 20:06:09 +00:00
|
|
|
renderer.setup();
|
2012-08-07 17:11:33 +00:00
|
|
|
|
2012-10-26 13:26:55 +00:00
|
|
|
SkString* outputPath = NULL;
|
|
|
|
if (NULL != outputDir) {
|
|
|
|
outputPath = SkNEW(SkString);
|
|
|
|
make_output_filepath(outputPath, *outputDir, inputFilename);
|
|
|
|
}
|
|
|
|
success = renderer.render(outputPath);
|
|
|
|
if (outputPath) {
|
|
|
|
if (!success) {
|
|
|
|
SkDebugf("Could not write to file %s\n", outputPath->c_str());
|
|
|
|
}
|
|
|
|
SkDELETE(outputPath);
|
2012-09-20 14:54:21 +00:00
|
|
|
}
|
2012-08-07 17:11:33 +00:00
|
|
|
|
2012-09-20 14:54:21 +00:00
|
|
|
renderer.resetState();
|
2012-08-07 17:11:33 +00:00
|
|
|
|
|
|
|
renderer.end();
|
2012-09-17 18:26:06 +00:00
|
|
|
return success;
|
2012-06-12 14:56:36 +00:00
|
|
|
}
|
|
|
|
|
2012-10-26 13:26:55 +00:00
|
|
|
static int process_input(const SkString& input, const SkString* outputDir,
|
2012-07-26 17:27:57 +00:00
|
|
|
sk_tools::PictureRenderer& renderer) {
|
2012-07-13 18:22:59 +00:00
|
|
|
SkOSFile::Iter iter(input.c_str(), "skp");
|
2012-07-09 18:32:08 +00:00
|
|
|
SkString inputFilename;
|
2012-09-17 18:26:06 +00:00
|
|
|
int failures = 0;
|
2012-10-26 13:26:55 +00:00
|
|
|
SkDebugf("process_input, %s\n", input.c_str());
|
2012-07-09 18:32:08 +00:00
|
|
|
if (iter.next(&inputFilename)) {
|
|
|
|
do {
|
|
|
|
SkString inputPath;
|
|
|
|
sk_tools::make_filepath(&inputPath, input, inputFilename);
|
2012-09-19 17:28:29 +00:00
|
|
|
if (!render_picture(inputPath, outputDir, renderer)) {
|
|
|
|
++failures;
|
|
|
|
}
|
2012-07-09 18:32:08 +00:00
|
|
|
} while(iter.next(&inputFilename));
|
2012-09-19 17:28:29 +00:00
|
|
|
} else if (SkStrEndsWith(input.c_str(), ".skp")) {
|
2012-07-09 18:32:08 +00:00
|
|
|
SkString inputPath(input);
|
2012-09-19 17:28:29 +00:00
|
|
|
if (!render_picture(inputPath, outputDir, renderer)) {
|
|
|
|
++failures;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
SkString warning;
|
|
|
|
warning.printf("Warning: skipping %s\n", input.c_str());
|
|
|
|
SkDebugf(warning.c_str());
|
2012-07-09 18:32:08 +00:00
|
|
|
}
|
2012-09-17 18:26:06 +00:00
|
|
|
return failures;
|
2012-07-09 18:32:08 +00:00
|
|
|
}
|
|
|
|
|
2012-07-13 18:22:59 +00:00
|
|
|
static void parse_commandline(int argc, char* const argv[], SkTArray<SkString>* inputs,
|
2012-10-26 13:26:55 +00:00
|
|
|
sk_tools::PictureRenderer*& renderer, SkString*& outputDir){
|
2012-07-13 18:22:59 +00:00
|
|
|
const char* argv0 = argv[0];
|
|
|
|
char* const* stop = argv + argc;
|
|
|
|
|
2012-08-20 15:04:04 +00:00
|
|
|
sk_tools::PictureRenderer::SkDeviceTypes deviceType =
|
|
|
|
sk_tools::PictureRenderer::kBitmap_DeviceType;
|
|
|
|
|
2012-10-03 17:32:33 +00:00
|
|
|
bool usePipe = false;
|
|
|
|
int numThreads = 1;
|
|
|
|
bool useTiles = false;
|
|
|
|
const char* widthString = NULL;
|
|
|
|
const char* heightString = NULL;
|
|
|
|
bool isPowerOf2Mode = false;
|
2012-11-07 18:01:46 +00:00
|
|
|
bool isCopyMode = false;
|
|
|
|
const char* xTilesString = NULL;
|
|
|
|
const char* yTilesString = NULL;
|
2012-10-03 17:32:33 +00:00
|
|
|
const char* mode = NULL;
|
|
|
|
|
2012-07-13 18:22:59 +00:00
|
|
|
for (++argv; argv < stop; ++argv) {
|
2012-08-02 18:57:53 +00:00
|
|
|
if (0 == strcmp(*argv, "--mode")) {
|
2012-11-02 21:28:12 +00:00
|
|
|
if (renderer != NULL) {
|
|
|
|
renderer->unref();
|
|
|
|
SkDebugf("Cannot combine modes.\n");
|
|
|
|
usage(argv0);
|
|
|
|
exit(-1);
|
|
|
|
}
|
2012-08-02 18:57:53 +00:00
|
|
|
|
2012-07-27 20:09:26 +00:00
|
|
|
++argv;
|
2012-08-02 18:57:53 +00:00
|
|
|
if (argv >= stop) {
|
|
|
|
SkDebugf("Missing mode for --mode\n");
|
|
|
|
usage(argv0);
|
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
|
2012-10-03 17:32:33 +00:00
|
|
|
if (0 == strcmp(*argv, "simple")) {
|
2012-08-02 18:57:53 +00:00
|
|
|
renderer = SkNEW(sk_tools::SimplePictureRenderer);
|
2012-11-07 18:01:46 +00:00
|
|
|
} else if ((0 == strcmp(*argv, "tile")) || (0 == strcmp(*argv, "pow2tile"))
|
|
|
|
|| 0 == strcmp(*argv, "copyTile")) {
|
2012-10-03 17:32:33 +00:00
|
|
|
useTiles = true;
|
|
|
|
mode = *argv;
|
2012-08-23 20:53:25 +00:00
|
|
|
|
|
|
|
if (0 == strcmp(*argv, "pow2tile")) {
|
|
|
|
isPowerOf2Mode = true;
|
2012-11-07 18:01:46 +00:00
|
|
|
} else if (0 == strcmp(*argv, "copyTile")) {
|
|
|
|
isCopyMode = true;
|
2012-08-23 20:53:25 +00:00
|
|
|
}
|
|
|
|
|
2012-08-02 18:57:53 +00:00
|
|
|
++argv;
|
|
|
|
if (argv >= stop) {
|
2012-08-23 20:53:25 +00:00
|
|
|
SkDebugf("Missing width for --mode %s\n", mode);
|
2012-08-02 18:57:53 +00:00
|
|
|
usage(argv0);
|
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
|
2012-10-03 17:32:33 +00:00
|
|
|
widthString = *argv;
|
2012-08-02 18:57:53 +00:00
|
|
|
++argv;
|
|
|
|
if (argv >= stop) {
|
2012-11-07 18:01:46 +00:00
|
|
|
SkDebugf("Missing height for --mode %s\n", mode);
|
2012-08-02 18:57:53 +00:00
|
|
|
usage(argv0);
|
|
|
|
exit(-1);
|
|
|
|
}
|
2012-10-03 17:32:33 +00:00
|
|
|
heightString = *argv;
|
2012-11-07 17:52:48 +00:00
|
|
|
} else if (0 == strcmp(*argv, "rerecord")) {
|
|
|
|
renderer = SkNEW(sk_tools::RecordPictureRenderer);
|
2012-07-27 20:09:26 +00:00
|
|
|
} else {
|
2012-08-02 18:57:53 +00:00
|
|
|
SkDebugf("%s is not a valid mode for --mode\n", *argv);
|
2012-07-27 20:09:26 +00:00
|
|
|
usage(argv0);
|
|
|
|
exit(-1);
|
|
|
|
}
|
2012-11-07 18:01:46 +00:00
|
|
|
} else if (0 == strcmp(*argv, "--tiles")) {
|
|
|
|
++argv;
|
|
|
|
if (argv >= stop) {
|
|
|
|
SkDebugf("Missing x for --tiles\n");
|
|
|
|
usage(argv0);
|
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
xTilesString = *argv;
|
|
|
|
++argv;
|
|
|
|
if (argv >= stop) {
|
|
|
|
SkDebugf("Missing y for --tiles\n");
|
|
|
|
usage(argv0);
|
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
yTilesString = *argv;
|
2012-10-03 17:32:33 +00:00
|
|
|
} else if (0 == strcmp(*argv, "--pipe")) {
|
|
|
|
usePipe = true;
|
|
|
|
} else if (0 == strcmp(*argv, "--multi")) {
|
|
|
|
++argv;
|
|
|
|
if (argv >= stop) {
|
2012-11-02 21:28:12 +00:00
|
|
|
SkSafeUnref(renderer);
|
2012-10-03 17:32:33 +00:00
|
|
|
SkDebugf("Missing arg for --multi\n");
|
|
|
|
usage(argv0);
|
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
numThreads = atoi(*argv);
|
|
|
|
if (numThreads < 2) {
|
2012-11-02 21:28:12 +00:00
|
|
|
SkSafeUnref(renderer);
|
2012-10-03 17:32:33 +00:00
|
|
|
SkDebugf("Number of threads must be at least 2.\n");
|
|
|
|
usage(argv0);
|
|
|
|
exit(-1);
|
|
|
|
}
|
2012-08-20 15:04:04 +00:00
|
|
|
} else if (0 == strcmp(*argv, "--device")) {
|
|
|
|
++argv;
|
|
|
|
if (argv >= stop) {
|
2012-11-02 21:28:12 +00:00
|
|
|
SkSafeUnref(renderer);
|
2012-10-03 17:32:33 +00:00
|
|
|
SkDebugf("Missing mode for --device\n");
|
2012-08-20 15:04:04 +00:00
|
|
|
usage(argv0);
|
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (0 == strcmp(*argv, "bitmap")) {
|
|
|
|
deviceType = sk_tools::PictureRenderer::kBitmap_DeviceType;
|
|
|
|
}
|
|
|
|
#if SK_SUPPORT_GPU
|
|
|
|
else if (0 == strcmp(*argv, "gpu")) {
|
|
|
|
deviceType = sk_tools::PictureRenderer::kGPU_DeviceType;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
else {
|
2012-11-02 21:28:12 +00:00
|
|
|
SkSafeUnref(renderer);
|
2012-08-20 15:04:04 +00:00
|
|
|
SkDebugf("%s is not a valid mode for --device\n", *argv);
|
|
|
|
usage(argv0);
|
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
|
2012-07-20 22:34:27 +00:00
|
|
|
} else if ((0 == strcmp(*argv, "-h")) || (0 == strcmp(*argv, "--help"))) {
|
2012-11-02 21:28:12 +00:00
|
|
|
SkSafeUnref(renderer);
|
2012-07-20 22:34:27 +00:00
|
|
|
usage(argv0);
|
|
|
|
exit(-1);
|
2012-10-26 13:26:55 +00:00
|
|
|
} else if (0 == strcmp(*argv, "-w")) {
|
|
|
|
++argv;
|
|
|
|
if (argv >= stop) {
|
|
|
|
SkDebugf("Missing output directory for -w\n");
|
|
|
|
usage(argv0);
|
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
outputDir = SkNEW_ARGS(SkString, (*argv));
|
2012-07-16 17:29:16 +00:00
|
|
|
} else {
|
|
|
|
inputs->push_back(SkString(*argv));
|
|
|
|
}
|
2012-06-12 14:56:36 +00:00
|
|
|
}
|
2012-07-20 22:34:27 +00:00
|
|
|
|
2012-10-03 17:32:33 +00:00
|
|
|
if (numThreads > 1 && !useTiles) {
|
2012-11-02 21:28:12 +00:00
|
|
|
SkSafeUnref(renderer);
|
2012-10-03 17:32:33 +00:00
|
|
|
SkDebugf("Multithreaded drawing requires tiled rendering.\n");
|
|
|
|
usage(argv0);
|
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (useTiles) {
|
|
|
|
SkASSERT(NULL == renderer);
|
2012-11-02 21:28:12 +00:00
|
|
|
sk_tools::TiledPictureRenderer* tiledRenderer;
|
2012-11-07 18:01:46 +00:00
|
|
|
if (isCopyMode) {
|
|
|
|
int x, y;
|
|
|
|
if (xTilesString != NULL) {
|
|
|
|
SkASSERT(yTilesString != NULL);
|
|
|
|
x = atoi(xTilesString);
|
|
|
|
y = atoi(yTilesString);
|
|
|
|
if (x <= 0 || y <= 0) {
|
|
|
|
SkDebugf("--tiles must be given values > 0\n");
|
|
|
|
usage(argv0);
|
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
x = y = 4;
|
|
|
|
}
|
|
|
|
tiledRenderer = SkNEW_ARGS(sk_tools::CopyTilesRenderer, (x, y));
|
|
|
|
} else if (numThreads > 1) {
|
2012-11-02 21:28:12 +00:00
|
|
|
tiledRenderer = SkNEW_ARGS(sk_tools::MultiCorePictureRenderer, (numThreads));
|
|
|
|
} else {
|
|
|
|
tiledRenderer = SkNEW(sk_tools::TiledPictureRenderer);
|
|
|
|
}
|
2012-10-03 17:32:33 +00:00
|
|
|
if (isPowerOf2Mode) {
|
|
|
|
int minWidth = atoi(widthString);
|
|
|
|
if (!SkIsPow2(minWidth) || minWidth < 0) {
|
|
|
|
tiledRenderer->unref();
|
|
|
|
SkString err;
|
|
|
|
err.printf("-mode %s must be given a width"
|
|
|
|
" value that is a power of two\n", mode);
|
|
|
|
SkDebugf(err.c_str());
|
|
|
|
usage(argv0);
|
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
tiledRenderer->setTileMinPowerOf2Width(minWidth);
|
|
|
|
} else if (sk_tools::is_percentage(widthString)) {
|
2012-11-07 18:01:46 +00:00
|
|
|
if (isCopyMode) {
|
|
|
|
tiledRenderer->unref();
|
|
|
|
SkString err;
|
|
|
|
err.printf("--mode %s does not support percentages.\n", mode);
|
|
|
|
SkDebugf(err.c_str());
|
|
|
|
usage(argv0);
|
|
|
|
exit(-1);
|
|
|
|
}
|
2012-10-03 17:32:33 +00:00
|
|
|
tiledRenderer->setTileWidthPercentage(atof(widthString));
|
|
|
|
if (!(tiledRenderer->getTileWidthPercentage() > 0)) {
|
|
|
|
tiledRenderer->unref();
|
2012-11-07 18:01:46 +00:00
|
|
|
SkDebugf("--mode %s must be given a width percentage > 0\n", mode);
|
2012-10-03 17:32:33 +00:00
|
|
|
usage(argv0);
|
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
tiledRenderer->setTileWidth(atoi(widthString));
|
|
|
|
if (!(tiledRenderer->getTileWidth() > 0)) {
|
|
|
|
tiledRenderer->unref();
|
2012-11-07 18:01:46 +00:00
|
|
|
SkDebugf("--mode %s must be given a width > 0\n", mode);
|
2012-10-03 17:32:33 +00:00
|
|
|
usage(argv0);
|
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sk_tools::is_percentage(heightString)) {
|
2012-11-07 18:01:46 +00:00
|
|
|
if (isCopyMode) {
|
|
|
|
tiledRenderer->unref();
|
|
|
|
SkString err;
|
|
|
|
err.printf("--mode %s does not support percentages.\n", mode);
|
|
|
|
SkDebugf(err.c_str());
|
|
|
|
usage(argv0);
|
|
|
|
exit(-1);
|
|
|
|
}
|
2012-10-03 17:32:33 +00:00
|
|
|
tiledRenderer->setTileHeightPercentage(atof(heightString));
|
|
|
|
if (!(tiledRenderer->getTileHeightPercentage() > 0)) {
|
|
|
|
tiledRenderer->unref();
|
2012-11-07 18:01:46 +00:00
|
|
|
SkDebugf("--mode %s must be given a height percentage > 0\n", mode);
|
2012-10-03 17:32:33 +00:00
|
|
|
usage(argv0);
|
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
tiledRenderer->setTileHeight(atoi(heightString));
|
|
|
|
if (!(tiledRenderer->getTileHeight() > 0)) {
|
|
|
|
tiledRenderer->unref();
|
2012-11-07 18:01:46 +00:00
|
|
|
SkDebugf("--mode %s must be given a height > 0\n", mode);
|
2012-10-03 17:32:33 +00:00
|
|
|
usage(argv0);
|
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (numThreads > 1) {
|
|
|
|
#if SK_SUPPORT_GPU
|
|
|
|
if (sk_tools::PictureRenderer::kGPU_DeviceType == deviceType) {
|
|
|
|
tiledRenderer->unref();
|
|
|
|
SkDebugf("GPU not compatible with multithreaded tiling.\n");
|
|
|
|
usage(argv0);
|
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
renderer = tiledRenderer;
|
2012-11-02 21:28:12 +00:00
|
|
|
if (usePipe) {
|
|
|
|
SkDebugf("Pipe rendering is currently not compatible with tiling.\n"
|
|
|
|
"Turning off pipe.\n");
|
|
|
|
}
|
2012-10-03 17:32:33 +00:00
|
|
|
} else if (usePipe) {
|
2012-11-02 21:28:12 +00:00
|
|
|
if (renderer != NULL) {
|
|
|
|
renderer->unref();
|
|
|
|
SkDebugf("Pipe is incompatible with other modes.\n");
|
|
|
|
usage(argv0);
|
|
|
|
exit(-1);
|
|
|
|
}
|
2012-10-03 17:32:33 +00:00
|
|
|
renderer = SkNEW(sk_tools::PipePictureRenderer);
|
|
|
|
}
|
|
|
|
|
2012-10-26 13:26:55 +00:00
|
|
|
if (inputs->empty()) {
|
2012-11-02 21:28:12 +00:00
|
|
|
SkSafeUnref(renderer);
|
2012-10-26 13:26:55 +00:00
|
|
|
if (NULL != outputDir) {
|
|
|
|
SkDELETE(outputDir);
|
|
|
|
}
|
2012-07-20 22:34:27 +00:00
|
|
|
usage(argv0);
|
|
|
|
exit(-1);
|
|
|
|
}
|
2012-07-26 17:27:57 +00:00
|
|
|
|
|
|
|
if (NULL == renderer) {
|
|
|
|
renderer = SkNEW(sk_tools::SimplePictureRenderer);
|
|
|
|
}
|
2012-08-20 15:03:29 +00:00
|
|
|
|
2012-08-20 15:04:04 +00:00
|
|
|
renderer->setDeviceType(deviceType);
|
2012-07-13 18:22:59 +00:00
|
|
|
}
|
2012-06-12 14:56:36 +00:00
|
|
|
|
2012-10-02 18:33:14 +00:00
|
|
|
int tool_main(int argc, char** argv);
|
|
|
|
int tool_main(int argc, char** argv) {
|
2012-09-17 18:26:06 +00:00
|
|
|
SkAutoGraphics ag;
|
2012-07-13 18:22:59 +00:00
|
|
|
SkTArray<SkString> inputs;
|
2012-07-26 17:27:57 +00:00
|
|
|
sk_tools::PictureRenderer* renderer = NULL;
|
2012-10-26 13:26:55 +00:00
|
|
|
SkString* outputDir = NULL;
|
|
|
|
parse_commandline(argc, argv, &inputs, renderer, outputDir);
|
2012-07-26 17:27:57 +00:00
|
|
|
SkASSERT(renderer);
|
2012-06-12 14:56:36 +00:00
|
|
|
|
2012-09-17 18:26:06 +00:00
|
|
|
int failures = 0;
|
2012-10-26 13:26:55 +00:00
|
|
|
for (int i = 0; i < inputs.count(); i ++) {
|
2012-09-17 18:26:06 +00:00
|
|
|
failures += process_input(inputs[i], outputDir, *renderer);
|
|
|
|
}
|
|
|
|
if (failures != 0) {
|
|
|
|
SkDebugf("Failed to render %i pictures.\n", failures);
|
|
|
|
return 1;
|
2012-06-12 14:56:36 +00:00
|
|
|
}
|
2012-09-13 15:40:37 +00:00
|
|
|
#if SK_SUPPORT_GPU
|
|
|
|
#if GR_CACHE_STATS
|
|
|
|
if (renderer->isUsingGpuDevice()) {
|
|
|
|
GrContext* ctx = renderer->getGrContext();
|
|
|
|
|
|
|
|
ctx->printCacheStats();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|
2012-10-26 13:26:55 +00:00
|
|
|
if (NULL != outputDir) {
|
|
|
|
SkDELETE(outputDir);
|
|
|
|
}
|
2012-07-26 17:27:57 +00:00
|
|
|
SkDELETE(renderer);
|
2012-10-02 20:00:03 +00:00
|
|
|
return 0;
|
2012-06-12 14:56:36 +00:00
|
|
|
}
|
2012-10-02 18:33:14 +00:00
|
|
|
|
|
|
|
#if !defined SK_BUILD_FOR_IOS
|
|
|
|
int main(int argc, char * const argv[]) {
|
|
|
|
return tool_main(argc, (char**) argv);
|
|
|
|
}
|
|
|
|
#endif
|