scroggo@google.com | 4a26d9d | 2012-11-07 18:01:46 +0000 | [diff] [blame] | 1 | /* |
| 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 | |
| 18 | namespace sk_tools { |
| 19 | CopyTilesRenderer::CopyTilesRenderer(int x, int y) |
| 20 | : fXTilesPerLargeTile(x) |
| 21 | , fYTilesPerLargeTile(y) { |
| 22 | } |
commit-bot@chromium.org | 3f04517 | 2014-05-15 15:10:48 +0000 | [diff] [blame] | 23 | void CopyTilesRenderer::init(SkPicture* pict, const SkString* writePath, |
| 24 | const SkString* mismatchPath, const SkString* inputFilename, |
| 25 | bool useChecksumBasedFilenames) { |
commit-bot@chromium.org | f5e315c | 2014-03-19 17:26:07 +0000 | [diff] [blame] | 26 | // Do not call INHERITED::init(), which would create a (potentially large) canvas which is |
| 27 | // not used by bench_pictures. |
scroggo@google.com | 4a26d9d | 2012-11-07 18:01:46 +0000 | [diff] [blame] | 28 | SkASSERT(pict != NULL); |
| 29 | // Only work with absolute widths (as opposed to percentages). |
| 30 | SkASSERT(this->getTileWidth() != 0 && this->getTileHeight() != 0); |
robertphillips@google.com | 84b18c7 | 2014-04-13 19:09:42 +0000 | [diff] [blame] | 31 | fPicture.reset(pict)->ref(); |
commit-bot@chromium.org | 3f04517 | 2014-05-15 15:10:48 +0000 | [diff] [blame] | 32 | this->CopyString(&fWritePath, writePath); |
| 33 | this->CopyString(&fMismatchPath, mismatchPath); |
commit-bot@chromium.org | f5e315c | 2014-03-19 17:26:07 +0000 | [diff] [blame] | 34 | this->CopyString(&fInputFilename, inputFilename); |
| 35 | fUseChecksumBasedFilenames = useChecksumBasedFilenames; |
scroggo@google.com | 4a26d9d | 2012-11-07 18:01:46 +0000 | [diff] [blame] | 36 | 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.org | f5e315c | 2014-03-19 17:26:07 +0000 | [diff] [blame] | 44 | bool CopyTilesRenderer::render(SkBitmap** out) { |
scroggo@google.com | 4a26d9d | 2012-11-07 18:01:46 +0000 | [diff] [blame] | 45 | int i = 0; |
| 46 | bool success = true; |
| 47 | SkBitmap dst; |
scroggo@google.com | c0d5e54 | 2012-12-13 21:40:48 +0000 | [diff] [blame] | 48 | for (int x = 0; x < this->getViewWidth(); x += fLargeTileWidth) { |
| 49 | for (int y = 0; y < this->getViewHeight(); y += fLargeTileHeight) { |
scroggo@google.com | 4a26d9d | 2012-11-07 18:01:46 +0000 | [diff] [blame] | 50 | SkAutoCanvasRestore autoRestore(fCanvas, true); |
scroggo@google.com | 82ec0b0 | 2012-12-17 19:25:54 +0000 | [diff] [blame] | 51 | // 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.com | 4a26d9d | 2012-11-07 18:01:46 +0000 | [diff] [blame] | 57 | // Draw the picture |
| 58 | fCanvas->drawPicture(*fPicture); |
| 59 | // Now extract the picture into tiles |
| 60 | const SkBitmap& baseBitmap = fCanvas->getDevice()->accessBitmap(false); |
| 61 | SkIRect subset; |
| 62 | for (int tileY = 0; tileY < fLargeTileHeight; tileY += this->getTileHeight()) { |
| 63 | for (int tileX = 0; tileX < fLargeTileWidth; tileX += this->getTileWidth()) { |
| 64 | subset.set(tileX, tileY, tileX + this->getTileWidth(), |
| 65 | tileY + this->getTileHeight()); |
| 66 | SkDEBUGCODE(bool extracted =) |
| 67 | baseBitmap.extractSubset(&dst, subset); |
| 68 | SkASSERT(extracted); |
commit-bot@chromium.org | 3f04517 | 2014-05-15 15:10:48 +0000 | [diff] [blame] | 69 | if (!fWritePath.isEmpty()) { |
commit-bot@chromium.org | f5e315c | 2014-03-19 17:26:07 +0000 | [diff] [blame] | 70 | // Similar to write() in PictureRenderer.cpp, but just encodes |
scroggo@google.com | 4a26d9d | 2012-11-07 18:01:46 +0000 | [diff] [blame] | 71 | // a bitmap directly. |
commit-bot@chromium.org | f5e315c | 2014-03-19 17:26:07 +0000 | [diff] [blame] | 72 | // TODO: Share more common code with write() to do this, to properly |
| 73 | // write out the JSON summary, etc. |
| 74 | SkString pathWithNumber; |
commit-bot@chromium.org | 3f04517 | 2014-05-15 15:10:48 +0000 | [diff] [blame] | 75 | make_filepath(&pathWithNumber, fWritePath, fInputFilename); |
commit-bot@chromium.org | f5e315c | 2014-03-19 17:26:07 +0000 | [diff] [blame] | 76 | pathWithNumber.remove(pathWithNumber.size() - 4, 4); |
scroggo@google.com | 4a26d9d | 2012-11-07 18:01:46 +0000 | [diff] [blame] | 77 | pathWithNumber.appendf("%i.png", i++); |
| 78 | SkBitmap copy; |
| 79 | #if SK_SUPPORT_GPU |
| 80 | if (isUsingGpuDevice()) { |
| 81 | dst.pixelRef()->readPixels(©, &subset); |
| 82 | } else { |
| 83 | #endif |
commit-bot@chromium.org | 8a2ad3c | 2014-02-23 03:59:35 +0000 | [diff] [blame] | 84 | dst.copyTo(©); |
scroggo@google.com | 4a26d9d | 2012-11-07 18:01:46 +0000 | [diff] [blame] | 85 | #if SK_SUPPORT_GPU |
| 86 | } |
| 87 | #endif |
| 88 | success &= SkImageEncoder::EncodeFile(pathWithNumber.c_str(), copy, |
| 89 | SkImageEncoder::kPNG_Type, 100); |
| 90 | } |
| 91 | } |
| 92 | } |
| 93 | } |
| 94 | } |
| 95 | return success; |
| 96 | } |
| 97 | |
| 98 | SkString CopyTilesRenderer::getConfigNameInternal() { |
| 99 | return SkString("copy_tiles"); |
| 100 | } |
| 101 | } |