blob: 7e6f8a8226d2310f62279a3c6ba3a53855ec8f7b [file] [log] [blame]
scroggo@google.com4a26d9d2012-11-07 18:01:46 +00001/*
2 * Copyright 2012 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
8#include "picture_utils.h"
9#include "CopyTilesRenderer.h"
10#include "SkCanvas.h"
11#include "SkDevice.h"
12#include "SkImageEncoder.h"
13#include "SkPicture.h"
14#include "SkPixelRef.h"
15#include "SkRect.h"
16#include "SkString.h"
17
18namespace sk_tools {
19 CopyTilesRenderer::CopyTilesRenderer(int x, int y)
20 : fXTilesPerLargeTile(x)
21 , fYTilesPerLargeTile(y) {
22 }
robertphillipsce4dd3d2014-07-07 13:46:35 -070023 void CopyTilesRenderer::init(const SkPicture* pict, const SkString* writePath,
commit-bot@chromium.org3f045172014-05-15 15:10:48 +000024 const SkString* mismatchPath, const SkString* inputFilename,
25 bool useChecksumBasedFilenames) {
commit-bot@chromium.orgf5e315c2014-03-19 17:26:07 +000026 // Do not call INHERITED::init(), which would create a (potentially large) canvas which is
27 // not used by bench_pictures.
scroggo@google.com4a26d9d2012-11-07 18:01:46 +000028 SkASSERT(pict != NULL);
29 // Only work with absolute widths (as opposed to percentages).
30 SkASSERT(this->getTileWidth() != 0 && this->getTileHeight() != 0);
robertphillips@google.com84b18c72014-04-13 19:09:42 +000031 fPicture.reset(pict)->ref();
commit-bot@chromium.org3f045172014-05-15 15:10:48 +000032 this->CopyString(&fWritePath, writePath);
33 this->CopyString(&fMismatchPath, mismatchPath);
commit-bot@chromium.orgf5e315c2014-03-19 17:26:07 +000034 this->CopyString(&fInputFilename, inputFilename);
35 fUseChecksumBasedFilenames = useChecksumBasedFilenames;
scroggo@google.com4a26d9d2012-11-07 18:01:46 +000036 this->buildBBoxHierarchy();
37 // In order to avoid allocating a large canvas (particularly important for GPU), create one
38 // canvas that is a multiple of the tile size, and draw portions of the picture.
39 fLargeTileWidth = fXTilesPerLargeTile * this->getTileWidth();
40 fLargeTileHeight = fYTilesPerLargeTile * this->getTileHeight();
41 fCanvas.reset(this->INHERITED::setupCanvas(fLargeTileWidth, fLargeTileHeight));
42 }
43
commit-bot@chromium.orgf5e315c2014-03-19 17:26:07 +000044 bool CopyTilesRenderer::render(SkBitmap** out) {
scroggo@google.com4a26d9d2012-11-07 18:01:46 +000045 int i = 0;
46 bool success = true;
47 SkBitmap dst;
scroggo@google.comc0d5e542012-12-13 21:40:48 +000048 for (int x = 0; x < this->getViewWidth(); x += fLargeTileWidth) {
49 for (int y = 0; y < this->getViewHeight(); y += fLargeTileHeight) {
scroggo@google.com4a26d9d2012-11-07 18:01:46 +000050 SkAutoCanvasRestore autoRestore(fCanvas, true);
scroggo@google.com82ec0b02012-12-17 19:25:54 +000051 // Translate so that we draw the correct portion of the picture.
52 // Perform a postTranslate so that the scaleFactor does not interfere with the
53 // positioning.
54 SkMatrix mat(fCanvas->getTotalMatrix());
55 mat.postTranslate(SkIntToScalar(-x), SkIntToScalar(-y));
56 fCanvas->setMatrix(mat);
scroggo@google.com4a26d9d2012-11-07 18:01:46 +000057 // Draw the picture
robertphillips9b14f262014-06-04 05:40:44 -070058 fCanvas->drawPicture(fPicture);
scroggo@google.com4a26d9d2012-11-07 18:01:46 +000059 // Now extract the picture into tiles
reed52d9ac62014-06-30 09:05:34 -070060 SkBitmap baseBitmap;
61 fCanvas->readPixels(SkIRect::MakeSize(fCanvas->getBaseLayerSize()), &baseBitmap);
scroggo@google.com4a26d9d2012-11-07 18:01:46 +000062 SkIRect subset;
63 for (int tileY = 0; tileY < fLargeTileHeight; tileY += this->getTileHeight()) {
64 for (int tileX = 0; tileX < fLargeTileWidth; tileX += this->getTileWidth()) {
65 subset.set(tileX, tileY, tileX + this->getTileWidth(),
66 tileY + this->getTileHeight());
67 SkDEBUGCODE(bool extracted =)
68 baseBitmap.extractSubset(&dst, subset);
69 SkASSERT(extracted);
commit-bot@chromium.org3f045172014-05-15 15:10:48 +000070 if (!fWritePath.isEmpty()) {
commit-bot@chromium.orgf5e315c2014-03-19 17:26:07 +000071 // Similar to write() in PictureRenderer.cpp, but just encodes
scroggo@google.com4a26d9d2012-11-07 18:01:46 +000072 // a bitmap directly.
commit-bot@chromium.orgf5e315c2014-03-19 17:26:07 +000073 // TODO: Share more common code with write() to do this, to properly
74 // write out the JSON summary, etc.
tfarinada4ed322014-06-12 08:50:56 -070075 SkString pathWithNumber = SkOSPath::SkPathJoin(fWritePath.c_str(),
76 fInputFilename.c_str());
commit-bot@chromium.orgf5e315c2014-03-19 17:26:07 +000077 pathWithNumber.remove(pathWithNumber.size() - 4, 4);
scroggo@google.com4a26d9d2012-11-07 18:01:46 +000078 pathWithNumber.appendf("%i.png", i++);
79 SkBitmap copy;
80#if SK_SUPPORT_GPU
81 if (isUsingGpuDevice()) {
82 dst.pixelRef()->readPixels(&copy, &subset);
83 } else {
84#endif
commit-bot@chromium.org8a2ad3c2014-02-23 03:59:35 +000085 dst.copyTo(&copy);
scroggo@google.com4a26d9d2012-11-07 18:01:46 +000086#if SK_SUPPORT_GPU
87 }
88#endif
89 success &= SkImageEncoder::EncodeFile(pathWithNumber.c_str(), copy,
90 SkImageEncoder::kPNG_Type, 100);
91 }
92 }
93 }
94 }
95 }
96 return success;
97 }
98
99 SkString CopyTilesRenderer::getConfigNameInternal() {
100 return SkString("copy_tiles");
101 }
102}