keyar@chromium.org | b3fb7c1 | 2012-08-20 21:02:49 +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 | |
keyar@chromium.org | 451bb9f | 2012-07-26 17:27:57 +0000 | [diff] [blame] | 8 | #include "PictureRenderer.h" |
scroggo@google.com | 58b4ead | 2012-08-31 16:15:22 +0000 | [diff] [blame] | 9 | #include "picture_utils.h" |
keyar@chromium.org | 451bb9f | 2012-07-26 17:27:57 +0000 | [diff] [blame] | 10 | #include "SamplePipeControllers.h" |
commit-bot@chromium.org | a3f882c | 2013-12-13 20:52:36 +0000 | [diff] [blame] | 11 | #include "SkBitmapHasher.h" |
keyar@chromium.org | 451bb9f | 2012-07-26 17:27:57 +0000 | [diff] [blame] | 12 | #include "SkCanvas.h" |
scroggo@google.com | 1b1bcc3 | 2013-05-21 20:31:23 +0000 | [diff] [blame] | 13 | #include "SkData.h" |
keyar@chromium.org | 451bb9f | 2012-07-26 17:27:57 +0000 | [diff] [blame] | 14 | #include "SkDevice.h" |
robertphillips@google.com | 94d8f1e | 2013-12-18 17:25:33 +0000 | [diff] [blame] | 15 | #include "SkDiscardableMemoryPool.h" |
keyar@chromium.org | 451bb9f | 2012-07-26 17:27:57 +0000 | [diff] [blame] | 16 | #include "SkGPipe.h" |
scroggo@google.com | 58b4ead | 2012-08-31 16:15:22 +0000 | [diff] [blame] | 17 | #if SK_SUPPORT_GPU |
robertphillips@google.com | fe1b536 | 2013-02-07 19:45:46 +0000 | [diff] [blame] | 18 | #include "gl/GrGLDefines.h" |
scroggo@google.com | 58b4ead | 2012-08-31 16:15:22 +0000 | [diff] [blame] | 19 | #include "SkGpuDevice.h" |
| 20 | #endif |
| 21 | #include "SkGraphics.h" |
| 22 | #include "SkImageEncoder.h" |
caryclark@google.com | a362237 | 2012-11-06 21:26:13 +0000 | [diff] [blame] | 23 | #include "SkMaskFilter.h" |
keyar@chromium.org | ea82695 | 2012-08-23 15:24:13 +0000 | [diff] [blame] | 24 | #include "SkMatrix.h" |
commit-bot@chromium.org | 24c568c | 2014-04-10 15:39:02 +0000 | [diff] [blame] | 25 | #include "SkOSFile.h" |
keyar@chromium.org | 451bb9f | 2012-07-26 17:27:57 +0000 | [diff] [blame] | 26 | #include "SkPicture.h" |
robertphillips@google.com | 770963f | 2014-04-18 18:04:41 +0000 | [diff] [blame] | 27 | #include "SkPictureRecorder.h" |
scroggo@google.com | 1b1bcc3 | 2013-05-21 20:31:23 +0000 | [diff] [blame] | 28 | #include "SkPictureUtils.h" |
| 29 | #include "SkPixelRef.h" |
keyar@chromium.org | ea82695 | 2012-08-23 15:24:13 +0000 | [diff] [blame] | 30 | #include "SkScalar.h" |
scroggo@google.com | a9e3a36 | 2012-11-07 17:52:48 +0000 | [diff] [blame] | 31 | #include "SkStream.h" |
keyar@chromium.org | 9299ede | 2012-08-21 19:05:08 +0000 | [diff] [blame] | 32 | #include "SkString.h" |
scroggo@google.com | 58b4ead | 2012-08-31 16:15:22 +0000 | [diff] [blame] | 33 | #include "SkTemplates.h" |
keyar@chromium.org | 451bb9f | 2012-07-26 17:27:57 +0000 | [diff] [blame] | 34 | #include "SkTDArray.h" |
scroggo@google.com | 58b4ead | 2012-08-31 16:15:22 +0000 | [diff] [blame] | 35 | #include "SkThreadUtils.h" |
keyar@chromium.org | 451bb9f | 2012-07-26 17:27:57 +0000 | [diff] [blame] | 36 | #include "SkTypes.h" |
keyar@chromium.org | 4ea96c5 | 2012-08-20 15:03:29 +0000 | [diff] [blame] | 37 | |
reed@google.com | e15b2f5 | 2013-12-18 04:59:26 +0000 | [diff] [blame] | 38 | static inline SkScalar scalar_log2(SkScalar x) { |
| 39 | static const SkScalar log2_conversion_factor = SkScalarDiv(1, SkScalarLog(2)); |
skia.committer@gmail.com | 3b85deb | 2013-12-18 07:01:56 +0000 | [diff] [blame] | 40 | |
reed@google.com | e15b2f5 | 2013-12-18 04:59:26 +0000 | [diff] [blame] | 41 | return SkScalarLog(x) * log2_conversion_factor; |
| 42 | } |
| 43 | |
keyar@chromium.org | 451bb9f | 2012-07-26 17:27:57 +0000 | [diff] [blame] | 44 | namespace sk_tools { |
| 45 | |
| 46 | enum { |
| 47 | kDefaultTileWidth = 256, |
| 48 | kDefaultTileHeight = 256 |
| 49 | }; |
| 50 | |
commit-bot@chromium.org | 3f04517 | 2014-05-15 15:10:48 +0000 | [diff] [blame] | 51 | void PictureRenderer::init(SkPicture* pict, const SkString* writePath, const SkString* mismatchPath, |
commit-bot@chromium.org | f5e315c | 2014-03-19 17:26:07 +0000 | [diff] [blame] | 52 | const SkString* inputFilename, bool useChecksumBasedFilenames) { |
commit-bot@chromium.org | 3f04517 | 2014-05-15 15:10:48 +0000 | [diff] [blame] | 53 | this->CopyString(&fWritePath, writePath); |
| 54 | this->CopyString(&fMismatchPath, mismatchPath); |
commit-bot@chromium.org | f5e315c | 2014-03-19 17:26:07 +0000 | [diff] [blame] | 55 | this->CopyString(&fInputFilename, inputFilename); |
| 56 | fUseChecksumBasedFilenames = useChecksumBasedFilenames; |
| 57 | |
keyar@chromium.org | 78a35c5 | 2012-08-20 15:03:44 +0000 | [diff] [blame] | 58 | SkASSERT(NULL == fPicture); |
| 59 | SkASSERT(NULL == fCanvas.get()); |
robertphillips@google.com | 84b18c7 | 2014-04-13 19:09:42 +0000 | [diff] [blame] | 60 | if (NULL != fPicture || NULL != fCanvas.get()) { |
keyar@chromium.org | 9d696c0 | 2012-08-07 17:11:33 +0000 | [diff] [blame] | 61 | return; |
| 62 | } |
| 63 | |
| 64 | SkASSERT(pict != NULL); |
keyar@chromium.org | 78a35c5 | 2012-08-20 15:03:44 +0000 | [diff] [blame] | 65 | if (NULL == pict) { |
keyar@chromium.org | 9d696c0 | 2012-08-07 17:11:33 +0000 | [diff] [blame] | 66 | return; |
| 67 | } |
| 68 | |
robertphillips@google.com | 84b18c7 | 2014-04-13 19:09:42 +0000 | [diff] [blame] | 69 | fPicture.reset(pict)->ref(); |
keyar@chromium.org | a474ce3 | 2012-08-20 15:03:57 +0000 | [diff] [blame] | 70 | fCanvas.reset(this->setupCanvas()); |
| 71 | } |
| 72 | |
commit-bot@chromium.org | f5e315c | 2014-03-19 17:26:07 +0000 | [diff] [blame] | 73 | void PictureRenderer::CopyString(SkString* dest, const SkString* src) { |
| 74 | if (NULL != src) { |
| 75 | dest->set(*src); |
| 76 | } else { |
| 77 | dest->reset(); |
| 78 | } |
| 79 | } |
| 80 | |
caryclark@google.com | a362237 | 2012-11-06 21:26:13 +0000 | [diff] [blame] | 81 | class FlagsDrawFilter : public SkDrawFilter { |
| 82 | public: |
| 83 | FlagsDrawFilter(PictureRenderer::DrawFilterFlags* flags) : |
| 84 | fFlags(flags) {} |
| 85 | |
reed@google.com | 971aca7 | 2012-11-26 20:26:54 +0000 | [diff] [blame] | 86 | virtual bool filter(SkPaint* paint, Type t) { |
caryclark@google.com | a362237 | 2012-11-06 21:26:13 +0000 | [diff] [blame] | 87 | paint->setFlags(paint->getFlags() & ~fFlags[t] & SkPaint::kAllFlags); |
robertphillips@google.com | 4914931 | 2013-07-03 15:34:35 +0000 | [diff] [blame] | 88 | if (PictureRenderer::kMaskFilter_DrawFilterFlag & fFlags[t]) { |
caryclark@google.com | a362237 | 2012-11-06 21:26:13 +0000 | [diff] [blame] | 89 | SkMaskFilter* maskFilter = paint->getMaskFilter(); |
robertphillips@google.com | 4914931 | 2013-07-03 15:34:35 +0000 | [diff] [blame] | 90 | if (NULL != maskFilter) { |
reed@google.com | 457d8a7 | 2012-12-18 18:20:44 +0000 | [diff] [blame] | 91 | paint->setMaskFilter(NULL); |
caryclark@google.com | a362237 | 2012-11-06 21:26:13 +0000 | [diff] [blame] | 92 | } |
| 93 | } |
| 94 | if (PictureRenderer::kHinting_DrawFilterFlag & fFlags[t]) { |
| 95 | paint->setHinting(SkPaint::kNo_Hinting); |
| 96 | } else if (PictureRenderer::kSlightHinting_DrawFilterFlag & fFlags[t]) { |
| 97 | paint->setHinting(SkPaint::kSlight_Hinting); |
| 98 | } |
reed@google.com | 971aca7 | 2012-11-26 20:26:54 +0000 | [diff] [blame] | 99 | return true; |
caryclark@google.com | a362237 | 2012-11-06 21:26:13 +0000 | [diff] [blame] | 100 | } |
| 101 | |
| 102 | private: |
| 103 | PictureRenderer::DrawFilterFlags* fFlags; |
| 104 | }; |
| 105 | |
scroggo@google.com | 82ec0b0 | 2012-12-17 19:25:54 +0000 | [diff] [blame] | 106 | static void setUpFilter(SkCanvas* canvas, PictureRenderer::DrawFilterFlags* drawFilters) { |
caryclark@google.com | a362237 | 2012-11-06 21:26:13 +0000 | [diff] [blame] | 107 | if (drawFilters && !canvas->getDrawFilter()) { |
| 108 | canvas->setDrawFilter(SkNEW_ARGS(FlagsDrawFilter, (drawFilters)))->unref(); |
caryclark@google.com | e3e940c | 2012-11-07 16:42:17 +0000 | [diff] [blame] | 109 | if (drawFilters[0] & PictureRenderer::kAAClip_DrawFilterFlag) { |
| 110 | canvas->setAllowSoftClip(false); |
| 111 | } |
caryclark@google.com | a362237 | 2012-11-06 21:26:13 +0000 | [diff] [blame] | 112 | } |
caryclark@google.com | a362237 | 2012-11-06 21:26:13 +0000 | [diff] [blame] | 113 | } |
| 114 | |
keyar@chromium.org | a474ce3 | 2012-08-20 15:03:57 +0000 | [diff] [blame] | 115 | SkCanvas* PictureRenderer::setupCanvas() { |
scroggo@google.com | c0d5e54 | 2012-12-13 21:40:48 +0000 | [diff] [blame] | 116 | const int width = this->getViewWidth(); |
| 117 | const int height = this->getViewHeight(); |
| 118 | return this->setupCanvas(width, height); |
keyar@chromium.org | a474ce3 | 2012-08-20 15:03:57 +0000 | [diff] [blame] | 119 | } |
| 120 | |
| 121 | SkCanvas* PictureRenderer::setupCanvas(int width, int height) { |
caryclark@google.com | a362237 | 2012-11-06 21:26:13 +0000 | [diff] [blame] | 122 | SkCanvas* canvas; |
keyar@chromium.org | 4ea96c5 | 2012-08-20 15:03:29 +0000 | [diff] [blame] | 123 | switch(fDeviceType) { |
| 124 | case kBitmap_DeviceType: { |
| 125 | SkBitmap bitmap; |
keyar@chromium.org | a474ce3 | 2012-08-20 15:03:57 +0000 | [diff] [blame] | 126 | sk_tools::setup_bitmap(&bitmap, width, height); |
caryclark@google.com | a362237 | 2012-11-06 21:26:13 +0000 | [diff] [blame] | 127 | canvas = SkNEW_ARGS(SkCanvas, (bitmap)); |
keyar@chromium.org | 4ea96c5 | 2012-08-20 15:03:29 +0000 | [diff] [blame] | 128 | } |
scroggo@google.com | 82ec0b0 | 2012-12-17 19:25:54 +0000 | [diff] [blame] | 129 | break; |
keyar@chromium.org | 4ea96c5 | 2012-08-20 15:03:29 +0000 | [diff] [blame] | 130 | #if SK_SUPPORT_GPU |
scroggo@google.com | 0556ea0 | 2013-02-08 19:38:21 +0000 | [diff] [blame] | 131 | #if SK_ANGLE |
| 132 | case kAngle_DeviceType: |
| 133 | // fall through |
| 134 | #endif |
rmistry@google.com | 6ab9673 | 2014-01-06 18:37:24 +0000 | [diff] [blame] | 135 | #if SK_MESA |
| 136 | case kMesa_DeviceType: |
| 137 | // fall through |
| 138 | #endif |
commit-bot@chromium.org | 0fd5270 | 2014-03-07 18:41:14 +0000 | [diff] [blame] | 139 | case kGPU_DeviceType: |
| 140 | case kNVPR_DeviceType: { |
commit-bot@chromium.org | ae403b9 | 2013-04-10 17:27:30 +0000 | [diff] [blame] | 141 | SkAutoTUnref<GrSurface> target; |
scroggo@google.com | 0556ea0 | 2013-02-08 19:38:21 +0000 | [diff] [blame] | 142 | if (fGrContext) { |
| 143 | // create a render target to back the device |
| 144 | GrTextureDesc desc; |
| 145 | desc.fConfig = kSkia8888_GrPixelConfig; |
| 146 | desc.fFlags = kRenderTarget_GrTextureFlagBit; |
| 147 | desc.fWidth = width; |
| 148 | desc.fHeight = height; |
jvanverth@google.com | f6a9033 | 2013-05-02 12:39:37 +0000 | [diff] [blame] | 149 | desc.fSampleCnt = fSampleCount; |
commit-bot@chromium.org | ae403b9 | 2013-04-10 17:27:30 +0000 | [diff] [blame] | 150 | target.reset(fGrContext->createUncachedTexture(desc, NULL, 0)); |
scroggo@google.com | 0556ea0 | 2013-02-08 19:38:21 +0000 | [diff] [blame] | 151 | } |
commit-bot@chromium.org | ae403b9 | 2013-04-10 17:27:30 +0000 | [diff] [blame] | 152 | if (NULL == target.get()) { |
scroggo@google.com | 0556ea0 | 2013-02-08 19:38:21 +0000 | [diff] [blame] | 153 | SkASSERT(0); |
| 154 | return NULL; |
| 155 | } |
| 156 | |
commit-bot@chromium.org | ae403b9 | 2013-04-10 17:27:30 +0000 | [diff] [blame] | 157 | SkAutoTUnref<SkGpuDevice> device(SkGpuDevice::Create(target)); |
caryclark@google.com | a362237 | 2012-11-06 21:26:13 +0000 | [diff] [blame] | 158 | canvas = SkNEW_ARGS(SkCanvas, (device.get())); |
scroggo@google.com | 0556ea0 | 2013-02-08 19:38:21 +0000 | [diff] [blame] | 159 | break; |
keyar@chromium.org | 4ea96c5 | 2012-08-20 15:03:29 +0000 | [diff] [blame] | 160 | } |
| 161 | #endif |
| 162 | default: |
| 163 | SkASSERT(0); |
scroggo@google.com | 82ec0b0 | 2012-12-17 19:25:54 +0000 | [diff] [blame] | 164 | return NULL; |
keyar@chromium.org | 4ea96c5 | 2012-08-20 15:03:29 +0000 | [diff] [blame] | 165 | } |
scroggo@google.com | 82ec0b0 | 2012-12-17 19:25:54 +0000 | [diff] [blame] | 166 | setUpFilter(canvas, fDrawFilters); |
| 167 | this->scaleToScaleFactor(canvas); |
commit-bot@chromium.org | 17cc3ea | 2014-01-15 14:51:25 +0000 | [diff] [blame] | 168 | |
| 169 | // Pictures often lie about their extent (i.e., claim to be 100x100 but |
| 170 | // only ever draw to 90x100). Clear here so the undrawn portion will have |
| 171 | // a consistent color |
| 172 | canvas->clear(SK_ColorTRANSPARENT); |
scroggo@google.com | 82ec0b0 | 2012-12-17 19:25:54 +0000 | [diff] [blame] | 173 | return canvas; |
| 174 | } |
keyar@chromium.org | a474ce3 | 2012-08-20 15:03:57 +0000 | [diff] [blame] | 175 | |
scroggo@google.com | 82ec0b0 | 2012-12-17 19:25:54 +0000 | [diff] [blame] | 176 | void PictureRenderer::scaleToScaleFactor(SkCanvas* canvas) { |
| 177 | SkASSERT(canvas != NULL); |
| 178 | if (fScaleFactor != SK_Scalar1) { |
| 179 | canvas->scale(fScaleFactor, fScaleFactor); |
| 180 | } |
keyar@chromium.org | 9d696c0 | 2012-08-07 17:11:33 +0000 | [diff] [blame] | 181 | } |
| 182 | |
| 183 | void PictureRenderer::end() { |
scroggo@google.com | 08085f8 | 2013-01-28 20:40:24 +0000 | [diff] [blame] | 184 | this->resetState(true); |
robertphillips@google.com | 84b18c7 | 2014-04-13 19:09:42 +0000 | [diff] [blame] | 185 | fPicture.reset(NULL); |
keyar@chromium.org | 9d696c0 | 2012-08-07 17:11:33 +0000 | [diff] [blame] | 186 | fCanvas.reset(NULL); |
| 187 | } |
| 188 | |
scroggo@google.com | c0d5e54 | 2012-12-13 21:40:48 +0000 | [diff] [blame] | 189 | int PictureRenderer::getViewWidth() { |
| 190 | SkASSERT(fPicture != NULL); |
robertphillips@google.com | 8ac811e | 2013-02-07 00:13:34 +0000 | [diff] [blame] | 191 | int width = SkScalarCeilToInt(fPicture->width() * fScaleFactor); |
scroggo@google.com | c0d5e54 | 2012-12-13 21:40:48 +0000 | [diff] [blame] | 192 | if (fViewport.width() > 0) { |
| 193 | width = SkMin32(width, fViewport.width()); |
| 194 | } |
| 195 | return width; |
| 196 | } |
| 197 | |
| 198 | int PictureRenderer::getViewHeight() { |
| 199 | SkASSERT(fPicture != NULL); |
robertphillips@google.com | 8ac811e | 2013-02-07 00:13:34 +0000 | [diff] [blame] | 200 | int height = SkScalarCeilToInt(fPicture->height() * fScaleFactor); |
scroggo@google.com | c0d5e54 | 2012-12-13 21:40:48 +0000 | [diff] [blame] | 201 | if (fViewport.height() > 0) { |
| 202 | height = SkMin32(height, fViewport.height()); |
| 203 | } |
| 204 | return height; |
| 205 | } |
| 206 | |
junov@chromium.org | 9313ca4 | 2012-11-02 18:11:49 +0000 | [diff] [blame] | 207 | /** Converts fPicture to a picture that uses a BBoxHierarchy. |
| 208 | * PictureRenderer subclasses that are used to test picture playback |
| 209 | * should call this method during init. |
| 210 | */ |
| 211 | void PictureRenderer::buildBBoxHierarchy() { |
| 212 | SkASSERT(NULL != fPicture); |
| 213 | if (kNone_BBoxHierarchyType != fBBoxHierarchyType && NULL != fPicture) { |
commit-bot@chromium.org | 5fb2ce3 | 2014-04-17 23:35:06 +0000 | [diff] [blame] | 214 | SkAutoTDelete<SkBBHFactory> factory(this->getFactory()); |
| 215 | SkPictureRecorder recorder; |
robertphillips@google.com | 84b18c7 | 2014-04-13 19:09:42 +0000 | [diff] [blame] | 216 | SkCanvas* canvas = recorder.beginRecording(fPicture->width(), fPicture->height(), |
commit-bot@chromium.org | 5fb2ce3 | 2014-04-17 23:35:06 +0000 | [diff] [blame] | 217 | factory.get(), |
robertphillips@google.com | 84b18c7 | 2014-04-13 19:09:42 +0000 | [diff] [blame] | 218 | this->recordFlags()); |
| 219 | fPicture->draw(canvas); |
| 220 | fPicture.reset(recorder.endRecording()); |
junov@chromium.org | 9313ca4 | 2012-11-02 18:11:49 +0000 | [diff] [blame] | 221 | } |
| 222 | } |
| 223 | |
scroggo@google.com | 08085f8 | 2013-01-28 20:40:24 +0000 | [diff] [blame] | 224 | void PictureRenderer::resetState(bool callFinish) { |
keyar@chromium.org | 28136b3 | 2012-08-20 15:04:15 +0000 | [diff] [blame] | 225 | #if SK_SUPPORT_GPU |
robertphillips@google.com | 6177e69 | 2013-02-28 20:16:25 +0000 | [diff] [blame] | 226 | SkGLContextHelper* glContext = this->getGLContext(); |
scroggo@google.com | 0556ea0 | 2013-02-08 19:38:21 +0000 | [diff] [blame] | 227 | if (NULL == glContext) { |
| 228 | SkASSERT(kBitmap_DeviceType == fDeviceType); |
| 229 | return; |
| 230 | } |
keyar@chromium.org | 28136b3 | 2012-08-20 15:04:15 +0000 | [diff] [blame] | 231 | |
scroggo@google.com | 0556ea0 | 2013-02-08 19:38:21 +0000 | [diff] [blame] | 232 | fGrContext->flush(); |
commit-bot@chromium.org | 51c040e | 2014-03-11 22:58:00 +0000 | [diff] [blame] | 233 | glContext->swapBuffers(); |
scroggo@google.com | 0556ea0 | 2013-02-08 19:38:21 +0000 | [diff] [blame] | 234 | if (callFinish) { |
| 235 | SK_GL(*glContext, Finish()); |
keyar@chromium.org | 77a5522 | 2012-08-20 15:03:47 +0000 | [diff] [blame] | 236 | } |
keyar@chromium.org | a40c20d | 2012-08-20 15:04:12 +0000 | [diff] [blame] | 237 | #endif |
keyar@chromium.org | 77a5522 | 2012-08-20 15:03:47 +0000 | [diff] [blame] | 238 | } |
| 239 | |
robertphillips@google.com | 94d8f1e | 2013-12-18 17:25:33 +0000 | [diff] [blame] | 240 | void PictureRenderer::purgeTextures() { |
| 241 | SkDiscardableMemoryPool* pool = SkGetGlobalDiscardableMemoryPool(); |
| 242 | |
| 243 | pool->dumpPool(); |
| 244 | |
| 245 | #if SK_SUPPORT_GPU |
| 246 | SkGLContextHelper* glContext = this->getGLContext(); |
| 247 | if (NULL == glContext) { |
| 248 | SkASSERT(kBitmap_DeviceType == fDeviceType); |
| 249 | return; |
| 250 | } |
| 251 | |
| 252 | // resetState should've already done this |
| 253 | fGrContext->flush(); |
| 254 | |
| 255 | fGrContext->purgeAllUnlockedResources(); |
| 256 | #endif |
| 257 | } |
| 258 | |
scroggo@google.com | b6e806b | 2012-10-03 17:32:33 +0000 | [diff] [blame] | 259 | /** |
commit-bot@chromium.org | 4610a46 | 2014-04-29 19:39:22 +0000 | [diff] [blame] | 260 | * Write the canvas to an image file and/or JSON summary. |
commit-bot@chromium.org | f5e315c | 2014-03-19 17:26:07 +0000 | [diff] [blame] | 261 | * |
scroggo@google.com | b6e806b | 2012-10-03 17:32:33 +0000 | [diff] [blame] | 262 | * @param canvas Must be non-null. Canvas to be written to a file. |
commit-bot@chromium.org | 3f04517 | 2014-05-15 15:10:48 +0000 | [diff] [blame] | 263 | * @param writePath If nonempty, write the binary image to a file within this directory. |
| 264 | * @param mismatchPath If nonempty, write the binary image to a file within this directory, |
| 265 | * but only if the image does not match expectations. |
commit-bot@chromium.org | f5e315c | 2014-03-19 17:26:07 +0000 | [diff] [blame] | 266 | * @param inputFilename If we are writing out a binary image, use this to build its filename. |
commit-bot@chromium.org | 4610a46 | 2014-04-29 19:39:22 +0000 | [diff] [blame] | 267 | * @param jsonSummaryPtr If not null, add image results (checksum) to this summary. |
commit-bot@chromium.org | f5e315c | 2014-03-19 17:26:07 +0000 | [diff] [blame] | 268 | * @param useChecksumBasedFilenames If true, use checksum-based filenames when writing to disk. |
commit-bot@chromium.org | 24c568c | 2014-04-10 15:39:02 +0000 | [diff] [blame] | 269 | * @param tileNumberPtr If not null, which tile number this image contains. |
commit-bot@chromium.org | a3f882c | 2013-12-13 20:52:36 +0000 | [diff] [blame] | 270 | * |
commit-bot@chromium.org | 4610a46 | 2014-04-29 19:39:22 +0000 | [diff] [blame] | 271 | * @return bool True if the operation completed successfully. |
scroggo@google.com | b6e806b | 2012-10-03 17:32:33 +0000 | [diff] [blame] | 272 | */ |
commit-bot@chromium.org | 3f04517 | 2014-05-15 15:10:48 +0000 | [diff] [blame] | 273 | static bool write(SkCanvas* canvas, const SkString& writePath, const SkString& mismatchPath, |
| 274 | const SkString& inputFilename, ImageResultsAndExpectations *jsonSummaryPtr, |
| 275 | bool useChecksumBasedFilenames, const int* tileNumberPtr=NULL) { |
scroggo@google.com | 81f9d2e | 2012-09-20 14:54:21 +0000 | [diff] [blame] | 276 | SkASSERT(canvas != NULL); |
scroggo@google.com | b6e806b | 2012-10-03 17:32:33 +0000 | [diff] [blame] | 277 | if (NULL == canvas) { |
keyar@chromium.org | 9299ede | 2012-08-21 19:05:08 +0000 | [diff] [blame] | 278 | return false; |
| 279 | } |
| 280 | |
| 281 | SkBitmap bitmap; |
scroggo@google.com | 81f9d2e | 2012-09-20 14:54:21 +0000 | [diff] [blame] | 282 | SkISize size = canvas->getDeviceSize(); |
commit-bot@chromium.org | 205ce48 | 2014-05-12 15:37:20 +0000 | [diff] [blame] | 283 | setup_bitmap(&bitmap, size.width(), size.height()); |
commit-bot@chromium.org | f5e315c | 2014-03-19 17:26:07 +0000 | [diff] [blame] | 284 | |
scroggo@google.com | 81f9d2e | 2012-09-20 14:54:21 +0000 | [diff] [blame] | 285 | canvas->readPixels(&bitmap, 0, 0); |
commit-bot@chromium.org | 205ce48 | 2014-05-12 15:37:20 +0000 | [diff] [blame] | 286 | force_all_opaque(bitmap); |
| 287 | BitmapAndDigest bitmapAndDigest(bitmap); |
keyar@chromium.org | 9299ede | 2012-08-21 19:05:08 +0000 | [diff] [blame] | 288 | |
commit-bot@chromium.org | 24c568c | 2014-04-10 15:39:02 +0000 | [diff] [blame] | 289 | SkString escapedInputFilename(inputFilename); |
| 290 | replace_char(&escapedInputFilename, '.', '_'); |
| 291 | |
commit-bot@chromium.org | f5e315c | 2014-03-19 17:26:07 +0000 | [diff] [blame] | 292 | // TODO(epoger): what about including the config type within outputFilename? That way, |
| 293 | // we could combine results of different config types without conflicting filenames. |
commit-bot@chromium.org | 24c568c | 2014-04-10 15:39:02 +0000 | [diff] [blame] | 294 | SkString outputFilename; |
| 295 | const char *outputSubdirPtr = NULL; |
| 296 | if (useChecksumBasedFilenames) { |
commit-bot@chromium.org | 661832c | 2014-05-21 11:57:16 +0000 | [diff] [blame] | 297 | const ImageDigest *imageDigestPtr = bitmapAndDigest.getImageDigestPtr(); |
commit-bot@chromium.org | 24c568c | 2014-04-10 15:39:02 +0000 | [diff] [blame] | 298 | outputSubdirPtr = escapedInputFilename.c_str(); |
commit-bot@chromium.org | 205ce48 | 2014-05-12 15:37:20 +0000 | [diff] [blame] | 299 | outputFilename.set(imageDigestPtr->getHashType()); |
| 300 | outputFilename.append("_"); |
| 301 | outputFilename.appendU64(imageDigestPtr->getHashValue()); |
commit-bot@chromium.org | 24c568c | 2014-04-10 15:39:02 +0000 | [diff] [blame] | 302 | } else { |
| 303 | outputFilename.set(escapedInputFilename); |
| 304 | if (NULL != tileNumberPtr) { |
| 305 | outputFilename.append("-tile"); |
| 306 | outputFilename.appendS32(*tileNumberPtr); |
| 307 | } |
commit-bot@chromium.org | a3f882c | 2013-12-13 20:52:36 +0000 | [diff] [blame] | 308 | } |
commit-bot@chromium.org | 24c568c | 2014-04-10 15:39:02 +0000 | [diff] [blame] | 309 | outputFilename.append(".png"); |
commit-bot@chromium.org | a3f882c | 2013-12-13 20:52:36 +0000 | [diff] [blame] | 310 | |
commit-bot@chromium.org | 24c568c | 2014-04-10 15:39:02 +0000 | [diff] [blame] | 311 | if (NULL != jsonSummaryPtr) { |
commit-bot@chromium.org | 205ce48 | 2014-05-12 15:37:20 +0000 | [diff] [blame] | 312 | const ImageDigest *imageDigestPtr = bitmapAndDigest.getImageDigestPtr(); |
commit-bot@chromium.org | 24c568c | 2014-04-10 15:39:02 +0000 | [diff] [blame] | 313 | SkString outputRelativePath; |
| 314 | if (outputSubdirPtr) { |
| 315 | outputRelativePath.set(outputSubdirPtr); |
| 316 | outputRelativePath.append("/"); // always use "/", even on Windows |
| 317 | outputRelativePath.append(outputFilename); |
| 318 | } else { |
| 319 | outputRelativePath.set(outputFilename); |
| 320 | } |
| 321 | |
| 322 | jsonSummaryPtr->add(inputFilename.c_str(), outputRelativePath.c_str(), |
commit-bot@chromium.org | 205ce48 | 2014-05-12 15:37:20 +0000 | [diff] [blame] | 323 | *imageDigestPtr, tileNumberPtr); |
commit-bot@chromium.org | 3f04517 | 2014-05-15 15:10:48 +0000 | [diff] [blame] | 324 | if (!mismatchPath.isEmpty() && |
| 325 | !jsonSummaryPtr->matchesExpectation(inputFilename.c_str(), *imageDigestPtr, |
| 326 | tileNumberPtr)) { |
| 327 | if (!write_bitmap_to_disk(bitmap, mismatchPath, outputSubdirPtr, outputFilename)) { |
| 328 | return false; |
| 329 | } |
| 330 | } |
commit-bot@chromium.org | f5e315c | 2014-03-19 17:26:07 +0000 | [diff] [blame] | 331 | } |
| 332 | |
commit-bot@chromium.org | 3f04517 | 2014-05-15 15:10:48 +0000 | [diff] [blame] | 333 | if (writePath.isEmpty()) { |
commit-bot@chromium.org | 4610a46 | 2014-04-29 19:39:22 +0000 | [diff] [blame] | 334 | return true; |
commit-bot@chromium.org | 24c568c | 2014-04-10 15:39:02 +0000 | [diff] [blame] | 335 | } else { |
commit-bot@chromium.org | 3f04517 | 2014-05-15 15:10:48 +0000 | [diff] [blame] | 336 | return write_bitmap_to_disk(bitmap, writePath, outputSubdirPtr, outputFilename); |
commit-bot@chromium.org | 24c568c | 2014-04-10 15:39:02 +0000 | [diff] [blame] | 337 | } |
keyar@chromium.org | 9299ede | 2012-08-21 19:05:08 +0000 | [diff] [blame] | 338 | } |
| 339 | |
scroggo@google.com | acfb30e | 2012-09-18 14:32:35 +0000 | [diff] [blame] | 340 | /////////////////////////////////////////////////////////////////////////////////////////////// |
| 341 | |
djsollen@google.com | fd9720c | 2012-11-06 16:54:40 +0000 | [diff] [blame] | 342 | SkCanvas* RecordPictureRenderer::setupCanvas(int width, int height) { |
| 343 | // defer the canvas setup until the render step |
| 344 | return NULL; |
| 345 | } |
| 346 | |
reed@google.com | 672588b | 2014-01-08 15:42:01 +0000 | [diff] [blame] | 347 | // the size_t* parameter is deprecated, so we ignore it |
| 348 | static SkData* encode_bitmap_to_data(size_t*, const SkBitmap& bm) { |
scroggo@google.com | 1b1bcc3 | 2013-05-21 20:31:23 +0000 | [diff] [blame] | 349 | return SkImageEncoder::EncodeData(bm, SkImageEncoder::kPNG_Type, 100); |
scroggo@google.com | a9e3a36 | 2012-11-07 17:52:48 +0000 | [diff] [blame] | 350 | } |
| 351 | |
commit-bot@chromium.org | f5e315c | 2014-03-19 17:26:07 +0000 | [diff] [blame] | 352 | bool RecordPictureRenderer::render(SkBitmap** out) { |
commit-bot@chromium.org | 5fb2ce3 | 2014-04-17 23:35:06 +0000 | [diff] [blame] | 353 | SkAutoTDelete<SkBBHFactory> factory(this->getFactory()); |
| 354 | SkPictureRecorder recorder; |
robertphillips@google.com | 84b18c7 | 2014-04-13 19:09:42 +0000 | [diff] [blame] | 355 | SkCanvas* canvas = recorder.beginRecording(this->getViewWidth(), this->getViewHeight(), |
commit-bot@chromium.org | 5fb2ce3 | 2014-04-17 23:35:06 +0000 | [diff] [blame] | 356 | factory.get(), |
robertphillips@google.com | 84b18c7 | 2014-04-13 19:09:42 +0000 | [diff] [blame] | 357 | this->recordFlags()); |
| 358 | this->scaleToScaleFactor(canvas); |
| 359 | fPicture->draw(canvas); |
| 360 | SkAutoTUnref<SkPicture> picture(recorder.endRecording()); |
commit-bot@chromium.org | 3f04517 | 2014-05-15 15:10:48 +0000 | [diff] [blame] | 361 | if (!fWritePath.isEmpty()) { |
scroggo@google.com | a9e3a36 | 2012-11-07 17:52:48 +0000 | [diff] [blame] | 362 | // Record the new picture as a new SKP with PNG encoded bitmaps. |
commit-bot@chromium.org | 3f04517 | 2014-05-15 15:10:48 +0000 | [diff] [blame] | 363 | SkString skpPath = SkOSPath::SkPathJoin(fWritePath.c_str(), fInputFilename.c_str()); |
scroggo@google.com | a9e3a36 | 2012-11-07 17:52:48 +0000 | [diff] [blame] | 364 | SkFILEWStream stream(skpPath.c_str()); |
robertphillips@google.com | 84b18c7 | 2014-04-13 19:09:42 +0000 | [diff] [blame] | 365 | picture->serialize(&stream, &encode_bitmap_to_data); |
scroggo@google.com | a9e3a36 | 2012-11-07 17:52:48 +0000 | [diff] [blame] | 366 | return true; |
| 367 | } |
scroggo@google.com | 81f9d2e | 2012-09-20 14:54:21 +0000 | [diff] [blame] | 368 | return false; |
scroggo@google.com | 9a41252 | 2012-09-07 15:21:18 +0000 | [diff] [blame] | 369 | } |
| 370 | |
scroggo@google.com | 0a049b8 | 2012-11-02 22:01:26 +0000 | [diff] [blame] | 371 | SkString RecordPictureRenderer::getConfigNameInternal() { |
| 372 | return SkString("record"); |
| 373 | } |
| 374 | |
scroggo@google.com | acfb30e | 2012-09-18 14:32:35 +0000 | [diff] [blame] | 375 | /////////////////////////////////////////////////////////////////////////////////////////////// |
| 376 | |
commit-bot@chromium.org | f5e315c | 2014-03-19 17:26:07 +0000 | [diff] [blame] | 377 | bool PipePictureRenderer::render(SkBitmap** out) { |
keyar@chromium.org | 9d696c0 | 2012-08-07 17:11:33 +0000 | [diff] [blame] | 378 | SkASSERT(fCanvas.get() != NULL); |
| 379 | SkASSERT(fPicture != NULL); |
keyar@chromium.org | 78a35c5 | 2012-08-20 15:03:44 +0000 | [diff] [blame] | 380 | if (NULL == fCanvas.get() || NULL == fPicture) { |
scroggo@google.com | 81f9d2e | 2012-09-20 14:54:21 +0000 | [diff] [blame] | 381 | return false; |
keyar@chromium.org | 9d696c0 | 2012-08-07 17:11:33 +0000 | [diff] [blame] | 382 | } |
| 383 | |
| 384 | PipeController pipeController(fCanvas.get()); |
keyar@chromium.org | 451bb9f | 2012-07-26 17:27:57 +0000 | [diff] [blame] | 385 | SkGPipeWriter writer; |
| 386 | SkCanvas* pipeCanvas = writer.startRecording(&pipeController); |
robertphillips | 9b14f26 | 2014-06-04 05:40:44 -0700 | [diff] [blame] | 387 | pipeCanvas->drawPicture(fPicture); |
keyar@chromium.org | 451bb9f | 2012-07-26 17:27:57 +0000 | [diff] [blame] | 388 | writer.endRecording(); |
scroggo@google.com | 9a41252 | 2012-09-07 15:21:18 +0000 | [diff] [blame] | 389 | fCanvas->flush(); |
edisonn@google.com | 84f548c | 2012-12-18 22:24:03 +0000 | [diff] [blame] | 390 | if (NULL != out) { |
| 391 | *out = SkNEW(SkBitmap); |
| 392 | setup_bitmap(*out, fPicture->width(), fPicture->height()); |
| 393 | fCanvas->readPixels(*out, 0, 0); |
skia.committer@gmail.com | a7d8e3e | 2012-12-19 02:01:38 +0000 | [diff] [blame] | 394 | } |
commit-bot@chromium.org | 8991c67 | 2014-05-22 00:36:05 +0000 | [diff] [blame] | 395 | if (fEnableWrites) { |
| 396 | return write(fCanvas, fWritePath, fMismatchPath, fInputFilename, fJsonSummaryPtr, |
| 397 | fUseChecksumBasedFilenames); |
| 398 | } else { |
| 399 | return true; |
| 400 | } |
keyar@chromium.org | 451bb9f | 2012-07-26 17:27:57 +0000 | [diff] [blame] | 401 | } |
| 402 | |
scroggo@google.com | 0a049b8 | 2012-11-02 22:01:26 +0000 | [diff] [blame] | 403 | SkString PipePictureRenderer::getConfigNameInternal() { |
| 404 | return SkString("pipe"); |
| 405 | } |
| 406 | |
scroggo@google.com | acfb30e | 2012-09-18 14:32:35 +0000 | [diff] [blame] | 407 | /////////////////////////////////////////////////////////////////////////////////////////////// |
| 408 | |
commit-bot@chromium.org | 3f04517 | 2014-05-15 15:10:48 +0000 | [diff] [blame] | 409 | void SimplePictureRenderer::init(SkPicture* picture, const SkString* writePath, |
| 410 | const SkString* mismatchPath, const SkString* inputFilename, |
| 411 | bool useChecksumBasedFilenames) { |
| 412 | INHERITED::init(picture, writePath, mismatchPath, inputFilename, useChecksumBasedFilenames); |
junov@chromium.org | 9313ca4 | 2012-11-02 18:11:49 +0000 | [diff] [blame] | 413 | this->buildBBoxHierarchy(); |
| 414 | } |
| 415 | |
commit-bot@chromium.org | f5e315c | 2014-03-19 17:26:07 +0000 | [diff] [blame] | 416 | bool SimplePictureRenderer::render(SkBitmap** out) { |
keyar@chromium.org | 9d696c0 | 2012-08-07 17:11:33 +0000 | [diff] [blame] | 417 | SkASSERT(fCanvas.get() != NULL); |
robertphillips@google.com | 84b18c7 | 2014-04-13 19:09:42 +0000 | [diff] [blame] | 418 | SkASSERT(NULL != fPicture); |
keyar@chromium.org | 78a35c5 | 2012-08-20 15:03:44 +0000 | [diff] [blame] | 419 | if (NULL == fCanvas.get() || NULL == fPicture) { |
scroggo@google.com | 81f9d2e | 2012-09-20 14:54:21 +0000 | [diff] [blame] | 420 | return false; |
keyar@chromium.org | 9d696c0 | 2012-08-07 17:11:33 +0000 | [diff] [blame] | 421 | } |
| 422 | |
robertphillips | 9b14f26 | 2014-06-04 05:40:44 -0700 | [diff] [blame] | 423 | fCanvas->drawPicture(fPicture); |
scroggo@google.com | 9a41252 | 2012-09-07 15:21:18 +0000 | [diff] [blame] | 424 | fCanvas->flush(); |
edisonn@google.com | 84f548c | 2012-12-18 22:24:03 +0000 | [diff] [blame] | 425 | if (NULL != out) { |
| 426 | *out = SkNEW(SkBitmap); |
| 427 | setup_bitmap(*out, fPicture->width(), fPicture->height()); |
| 428 | fCanvas->readPixels(*out, 0, 0); |
| 429 | } |
commit-bot@chromium.org | 8991c67 | 2014-05-22 00:36:05 +0000 | [diff] [blame] | 430 | if (fEnableWrites) { |
| 431 | return write(fCanvas, fWritePath, fMismatchPath, fInputFilename, fJsonSummaryPtr, |
| 432 | fUseChecksumBasedFilenames); |
| 433 | } else { |
| 434 | return true; |
| 435 | } |
keyar@chromium.org | 451bb9f | 2012-07-26 17:27:57 +0000 | [diff] [blame] | 436 | } |
| 437 | |
scroggo@google.com | 0a049b8 | 2012-11-02 22:01:26 +0000 | [diff] [blame] | 438 | SkString SimplePictureRenderer::getConfigNameInternal() { |
| 439 | return SkString("simple"); |
| 440 | } |
| 441 | |
scroggo@google.com | acfb30e | 2012-09-18 14:32:35 +0000 | [diff] [blame] | 442 | /////////////////////////////////////////////////////////////////////////////////////////////// |
| 443 | |
keyar@chromium.org | 451bb9f | 2012-07-26 17:27:57 +0000 | [diff] [blame] | 444 | TiledPictureRenderer::TiledPictureRenderer() |
scroggo@google.com | a62da2f | 2012-11-02 21:28:12 +0000 | [diff] [blame] | 445 | : fTileWidth(kDefaultTileWidth) |
rileya@google.com | b947b91 | 2012-08-29 17:35:07 +0000 | [diff] [blame] | 446 | , fTileHeight(kDefaultTileHeight) |
rileya@google.com | a04dc02 | 2012-09-10 19:01:38 +0000 | [diff] [blame] | 447 | , fTileWidthPercentage(0.0) |
rileya@google.com | b947b91 | 2012-08-29 17:35:07 +0000 | [diff] [blame] | 448 | , fTileHeightPercentage(0.0) |
scroggo@google.com | cbcef70 | 2012-12-13 22:09:28 +0000 | [diff] [blame] | 449 | , fTileMinPowerOf2Width(0) |
| 450 | , fCurrentTileOffset(-1) |
| 451 | , fTilesX(0) |
| 452 | , fTilesY(0) { } |
keyar@chromium.org | 451bb9f | 2012-07-26 17:27:57 +0000 | [diff] [blame] | 453 | |
commit-bot@chromium.org | 3f04517 | 2014-05-15 15:10:48 +0000 | [diff] [blame] | 454 | void TiledPictureRenderer::init(SkPicture* pict, const SkString* writePath, |
| 455 | const SkString* mismatchPath, const SkString* inputFilename, |
| 456 | bool useChecksumBasedFilenames) { |
robertphillips@google.com | 84b18c7 | 2014-04-13 19:09:42 +0000 | [diff] [blame] | 457 | SkASSERT(NULL != pict); |
scroggo@google.com | acfb30e | 2012-09-18 14:32:35 +0000 | [diff] [blame] | 458 | SkASSERT(0 == fTileRects.count()); |
| 459 | if (NULL == pict || fTileRects.count() != 0) { |
keyar@chromium.org | 9d696c0 | 2012-08-07 17:11:33 +0000 | [diff] [blame] | 460 | return; |
| 461 | } |
| 462 | |
scroggo@google.com | acfb30e | 2012-09-18 14:32:35 +0000 | [diff] [blame] | 463 | // Do not call INHERITED::init(), which would create a (potentially large) canvas which is not |
| 464 | // used by bench_pictures. |
robertphillips@google.com | 84b18c7 | 2014-04-13 19:09:42 +0000 | [diff] [blame] | 465 | fPicture.reset(pict)->ref(); |
commit-bot@chromium.org | 3f04517 | 2014-05-15 15:10:48 +0000 | [diff] [blame] | 466 | this->CopyString(&fWritePath, writePath); |
| 467 | this->CopyString(&fMismatchPath, mismatchPath); |
commit-bot@chromium.org | f5e315c | 2014-03-19 17:26:07 +0000 | [diff] [blame] | 468 | this->CopyString(&fInputFilename, inputFilename); |
| 469 | fUseChecksumBasedFilenames = useChecksumBasedFilenames; |
scroggo@google.com | a62da2f | 2012-11-02 21:28:12 +0000 | [diff] [blame] | 470 | this->buildBBoxHierarchy(); |
keyar@chromium.org | cc6e5ef | 2012-07-27 20:09:26 +0000 | [diff] [blame] | 471 | |
| 472 | if (fTileWidthPercentage > 0) { |
robertphillips@google.com | 5d8d186 | 2012-08-15 14:36:41 +0000 | [diff] [blame] | 473 | fTileWidth = sk_float_ceil2int(float(fTileWidthPercentage * fPicture->width() / 100)); |
keyar@chromium.org | cc6e5ef | 2012-07-27 20:09:26 +0000 | [diff] [blame] | 474 | } |
| 475 | if (fTileHeightPercentage > 0) { |
robertphillips@google.com | 5d8d186 | 2012-08-15 14:36:41 +0000 | [diff] [blame] | 476 | fTileHeight = sk_float_ceil2int(float(fTileHeightPercentage * fPicture->height() / 100)); |
keyar@chromium.org | cc6e5ef | 2012-07-27 20:09:26 +0000 | [diff] [blame] | 477 | } |
| 478 | |
keyar@chromium.org | f4959ab | 2012-08-23 20:53:25 +0000 | [diff] [blame] | 479 | if (fTileMinPowerOf2Width > 0) { |
| 480 | this->setupPowerOf2Tiles(); |
| 481 | } else { |
| 482 | this->setupTiles(); |
| 483 | } |
scroggo@google.com | cbcef70 | 2012-12-13 22:09:28 +0000 | [diff] [blame] | 484 | fCanvas.reset(this->setupCanvas(fTileWidth, fTileHeight)); |
| 485 | // Initialize to -1 so that the first call to nextTile will set this up to draw tile 0 on the |
| 486 | // first call to drawCurrentTile. |
| 487 | fCurrentTileOffset = -1; |
keyar@chromium.org | 451bb9f | 2012-07-26 17:27:57 +0000 | [diff] [blame] | 488 | } |
| 489 | |
keyar@chromium.org | 9d696c0 | 2012-08-07 17:11:33 +0000 | [diff] [blame] | 490 | void TiledPictureRenderer::end() { |
scroggo@google.com | bcdf2ec | 2012-09-20 14:42:33 +0000 | [diff] [blame] | 491 | fTileRects.reset(); |
keyar@chromium.org | 9d696c0 | 2012-08-07 17:11:33 +0000 | [diff] [blame] | 492 | this->INHERITED::end(); |
keyar@chromium.org | 451bb9f | 2012-07-26 17:27:57 +0000 | [diff] [blame] | 493 | } |
| 494 | |
keyar@chromium.org | 9d696c0 | 2012-08-07 17:11:33 +0000 | [diff] [blame] | 495 | void TiledPictureRenderer::setupTiles() { |
scroggo@google.com | c0d5e54 | 2012-12-13 21:40:48 +0000 | [diff] [blame] | 496 | // Only use enough tiles to cover the viewport |
| 497 | const int width = this->getViewWidth(); |
| 498 | const int height = this->getViewHeight(); |
| 499 | |
scroggo@google.com | cbcef70 | 2012-12-13 22:09:28 +0000 | [diff] [blame] | 500 | fTilesX = fTilesY = 0; |
scroggo@google.com | c0d5e54 | 2012-12-13 21:40:48 +0000 | [diff] [blame] | 501 | for (int tile_y_start = 0; tile_y_start < height; tile_y_start += fTileHeight) { |
scroggo@google.com | cbcef70 | 2012-12-13 22:09:28 +0000 | [diff] [blame] | 502 | fTilesY++; |
scroggo@google.com | c0d5e54 | 2012-12-13 21:40:48 +0000 | [diff] [blame] | 503 | for (int tile_x_start = 0; tile_x_start < width; tile_x_start += fTileWidth) { |
scroggo@google.com | cbcef70 | 2012-12-13 22:09:28 +0000 | [diff] [blame] | 504 | if (0 == tile_y_start) { |
| 505 | // Only count tiles in the X direction on the first pass. |
| 506 | fTilesX++; |
| 507 | } |
scroggo@google.com | acfb30e | 2012-09-18 14:32:35 +0000 | [diff] [blame] | 508 | *fTileRects.append() = SkRect::MakeXYWH(SkIntToScalar(tile_x_start), |
| 509 | SkIntToScalar(tile_y_start), |
| 510 | SkIntToScalar(fTileWidth), |
| 511 | SkIntToScalar(fTileHeight)); |
keyar@chromium.org | f4959ab | 2012-08-23 20:53:25 +0000 | [diff] [blame] | 512 | } |
| 513 | } |
| 514 | } |
| 515 | |
scroggo@google.com | cbcef70 | 2012-12-13 22:09:28 +0000 | [diff] [blame] | 516 | bool TiledPictureRenderer::tileDimensions(int &x, int &y) { |
| 517 | if (fTileRects.count() == 0 || NULL == fPicture) { |
| 518 | return false; |
| 519 | } |
| 520 | x = fTilesX; |
| 521 | y = fTilesY; |
| 522 | return true; |
| 523 | } |
| 524 | |
keyar@chromium.org | f4959ab | 2012-08-23 20:53:25 +0000 | [diff] [blame] | 525 | // The goal of the powers of two tiles is to minimize the amount of wasted tile |
| 526 | // space in the width-wise direction and then minimize the number of tiles. The |
| 527 | // constraints are that every tile must have a pixel width that is a power of |
| 528 | // two and also be of some minimal width (that is also a power of two). |
| 529 | // |
scroggo@google.com | 58b4ead | 2012-08-31 16:15:22 +0000 | [diff] [blame] | 530 | // This is solved by first taking our picture size and rounding it up to the |
keyar@chromium.org | f4959ab | 2012-08-23 20:53:25 +0000 | [diff] [blame] | 531 | // multiple of the minimal width. The binary representation of this rounded |
| 532 | // value gives us the tiles we need: a bit of value one means we need a tile of |
| 533 | // that size. |
| 534 | void TiledPictureRenderer::setupPowerOf2Tiles() { |
scroggo@google.com | c0d5e54 | 2012-12-13 21:40:48 +0000 | [diff] [blame] | 535 | // Only use enough tiles to cover the viewport |
| 536 | const int width = this->getViewWidth(); |
| 537 | const int height = this->getViewHeight(); |
| 538 | |
| 539 | int rounded_value = width; |
| 540 | if (width % fTileMinPowerOf2Width != 0) { |
| 541 | rounded_value = width - (width % fTileMinPowerOf2Width) + fTileMinPowerOf2Width; |
keyar@chromium.org | f4959ab | 2012-08-23 20:53:25 +0000 | [diff] [blame] | 542 | } |
| 543 | |
reed@google.com | e15b2f5 | 2013-12-18 04:59:26 +0000 | [diff] [blame] | 544 | int num_bits = SkScalarCeilToInt(scalar_log2(SkIntToScalar(width))); |
keyar@chromium.org | f4959ab | 2012-08-23 20:53:25 +0000 | [diff] [blame] | 545 | int largest_possible_tile_size = 1 << num_bits; |
| 546 | |
scroggo@google.com | cbcef70 | 2012-12-13 22:09:28 +0000 | [diff] [blame] | 547 | fTilesX = fTilesY = 0; |
keyar@chromium.org | f4959ab | 2012-08-23 20:53:25 +0000 | [diff] [blame] | 548 | // The tile height is constant for a particular picture. |
scroggo@google.com | c0d5e54 | 2012-12-13 21:40:48 +0000 | [diff] [blame] | 549 | for (int tile_y_start = 0; tile_y_start < height; tile_y_start += fTileHeight) { |
scroggo@google.com | cbcef70 | 2012-12-13 22:09:28 +0000 | [diff] [blame] | 550 | fTilesY++; |
keyar@chromium.org | f4959ab | 2012-08-23 20:53:25 +0000 | [diff] [blame] | 551 | int tile_x_start = 0; |
| 552 | int current_width = largest_possible_tile_size; |
scroggo@google.com | acfb30e | 2012-09-18 14:32:35 +0000 | [diff] [blame] | 553 | // Set fTileWidth to be the width of the widest tile, so that each canvas is large enough |
| 554 | // to draw each tile. |
| 555 | fTileWidth = current_width; |
keyar@chromium.org | f4959ab | 2012-08-23 20:53:25 +0000 | [diff] [blame] | 556 | |
| 557 | while (current_width >= fTileMinPowerOf2Width) { |
| 558 | // It is very important this is a bitwise AND. |
| 559 | if (current_width & rounded_value) { |
scroggo@google.com | cbcef70 | 2012-12-13 22:09:28 +0000 | [diff] [blame] | 560 | if (0 == tile_y_start) { |
| 561 | // Only count tiles in the X direction on the first pass. |
| 562 | fTilesX++; |
| 563 | } |
scroggo@google.com | acfb30e | 2012-09-18 14:32:35 +0000 | [diff] [blame] | 564 | *fTileRects.append() = SkRect::MakeXYWH(SkIntToScalar(tile_x_start), |
| 565 | SkIntToScalar(tile_y_start), |
| 566 | SkIntToScalar(current_width), |
| 567 | SkIntToScalar(fTileHeight)); |
keyar@chromium.org | f4959ab | 2012-08-23 20:53:25 +0000 | [diff] [blame] | 568 | tile_x_start += current_width; |
| 569 | } |
| 570 | |
| 571 | current_width >>= 1; |
keyar@chromium.org | 451bb9f | 2012-07-26 17:27:57 +0000 | [diff] [blame] | 572 | } |
| 573 | } |
| 574 | } |
| 575 | |
scroggo@google.com | bcdf2ec | 2012-09-20 14:42:33 +0000 | [diff] [blame] | 576 | /** |
commit-bot@chromium.org | 145d1c0 | 2014-03-16 19:46:36 +0000 | [diff] [blame] | 577 | * Draw the specified picture to the canvas translated to rectangle provided, so that this mini |
scroggo@google.com | bcdf2ec | 2012-09-20 14:42:33 +0000 | [diff] [blame] | 578 | * canvas represents the rectangle's portion of the overall picture. |
| 579 | * Saves and restores so that the initial clip and matrix return to their state before this function |
| 580 | * is called. |
| 581 | */ |
commit-bot@chromium.org | 145d1c0 | 2014-03-16 19:46:36 +0000 | [diff] [blame] | 582 | static void draw_tile_to_canvas(SkCanvas* canvas, const SkRect& tileRect, SkPicture* picture) { |
scroggo@google.com | bcdf2ec | 2012-09-20 14:42:33 +0000 | [diff] [blame] | 583 | int saveCount = canvas->save(); |
scroggo@google.com | 82ec0b0 | 2012-12-17 19:25:54 +0000 | [diff] [blame] | 584 | // Translate so that we draw the correct portion of the picture. |
| 585 | // Perform a postTranslate so that the scaleFactor does not interfere with the positioning. |
| 586 | SkMatrix mat(canvas->getTotalMatrix()); |
| 587 | mat.postTranslate(-tileRect.fLeft, -tileRect.fTop); |
| 588 | canvas->setMatrix(mat); |
robertphillips | 9b14f26 | 2014-06-04 05:40:44 -0700 | [diff] [blame] | 589 | canvas->drawPicture(picture); |
scroggo@google.com | bcdf2ec | 2012-09-20 14:42:33 +0000 | [diff] [blame] | 590 | canvas->restoreToCount(saveCount); |
| 591 | canvas->flush(); |
keyar@chromium.org | 451bb9f | 2012-07-26 17:27:57 +0000 | [diff] [blame] | 592 | } |
| 593 | |
scroggo@google.com | 58b4ead | 2012-08-31 16:15:22 +0000 | [diff] [blame] | 594 | /////////////////////////////////////////////////////////////////////////////////////////////// |
scroggo@google.com | bcdf2ec | 2012-09-20 14:42:33 +0000 | [diff] [blame] | 595 | |
commit-bot@chromium.org | a3f882c | 2013-12-13 20:52:36 +0000 | [diff] [blame] | 596 | /** |
| 597 | * Copies the entirety of the src bitmap (typically a tile) into a portion of the dst bitmap. |
| 598 | * If the src bitmap is too large to fit within the dst bitmap after the x and y |
| 599 | * offsets have been applied, any excess will be ignored (so only the top-left portion of the |
| 600 | * src bitmap will be copied). |
| 601 | * |
| 602 | * @param src source bitmap |
| 603 | * @param dst destination bitmap |
| 604 | * @param xOffset x-offset within destination bitmap |
| 605 | * @param yOffset y-offset within destination bitmap |
| 606 | */ |
| 607 | static void bitmapCopyAtOffset(const SkBitmap& src, SkBitmap* dst, |
| 608 | int xOffset, int yOffset) { |
| 609 | for (int y = 0; y <src.height() && y + yOffset < dst->height() ; y++) { |
| 610 | for (int x = 0; x < src.width() && x + xOffset < dst->width() ; x++) { |
| 611 | *dst->getAddr32(xOffset + x, yOffset + y) = *src.getAddr32(x, y); |
edisonn@google.com | 84f548c | 2012-12-18 22:24:03 +0000 | [diff] [blame] | 612 | } |
| 613 | } |
| 614 | } |
| 615 | |
scroggo@google.com | cbcef70 | 2012-12-13 22:09:28 +0000 | [diff] [blame] | 616 | bool TiledPictureRenderer::nextTile(int &i, int &j) { |
| 617 | if (++fCurrentTileOffset < fTileRects.count()) { |
| 618 | i = fCurrentTileOffset % fTilesX; |
| 619 | j = fCurrentTileOffset / fTilesX; |
| 620 | return true; |
| 621 | } |
| 622 | return false; |
| 623 | } |
| 624 | |
| 625 | void TiledPictureRenderer::drawCurrentTile() { |
| 626 | SkASSERT(fCurrentTileOffset >= 0 && fCurrentTileOffset < fTileRects.count()); |
commit-bot@chromium.org | 145d1c0 | 2014-03-16 19:46:36 +0000 | [diff] [blame] | 627 | draw_tile_to_canvas(fCanvas, fTileRects[fCurrentTileOffset], fPicture); |
scroggo@google.com | cbcef70 | 2012-12-13 22:09:28 +0000 | [diff] [blame] | 628 | } |
| 629 | |
commit-bot@chromium.org | f5e315c | 2014-03-19 17:26:07 +0000 | [diff] [blame] | 630 | bool TiledPictureRenderer::render(SkBitmap** out) { |
scroggo@google.com | acfb30e | 2012-09-18 14:32:35 +0000 | [diff] [blame] | 631 | SkASSERT(fPicture != NULL); |
| 632 | if (NULL == fPicture) { |
scroggo@google.com | 81f9d2e | 2012-09-20 14:54:21 +0000 | [diff] [blame] | 633 | return false; |
scroggo@google.com | acfb30e | 2012-09-18 14:32:35 +0000 | [diff] [blame] | 634 | } |
| 635 | |
edisonn@google.com | 84f548c | 2012-12-18 22:24:03 +0000 | [diff] [blame] | 636 | SkBitmap bitmap; |
| 637 | if (out){ |
| 638 | *out = SkNEW(SkBitmap); |
| 639 | setup_bitmap(*out, fPicture->width(), fPicture->height()); |
| 640 | setup_bitmap(&bitmap, fTileWidth, fTileHeight); |
| 641 | } |
scroggo@google.com | a62da2f | 2012-11-02 21:28:12 +0000 | [diff] [blame] | 642 | bool success = true; |
| 643 | for (int i = 0; i < fTileRects.count(); ++i) { |
commit-bot@chromium.org | 145d1c0 | 2014-03-16 19:46:36 +0000 | [diff] [blame] | 644 | draw_tile_to_canvas(fCanvas, fTileRects[i], fPicture); |
commit-bot@chromium.org | 8991c67 | 2014-05-22 00:36:05 +0000 | [diff] [blame] | 645 | if (fEnableWrites) { |
| 646 | success &= write(fCanvas, fWritePath, fMismatchPath, fInputFilename, fJsonSummaryPtr, |
| 647 | fUseChecksumBasedFilenames, &i); |
| 648 | } |
edisonn@google.com | 84f548c | 2012-12-18 22:24:03 +0000 | [diff] [blame] | 649 | if (NULL != out) { |
| 650 | if (fCanvas->readPixels(&bitmap, 0, 0)) { |
commit-bot@chromium.org | a3f882c | 2013-12-13 20:52:36 +0000 | [diff] [blame] | 651 | // Add this tile to the entire bitmap. |
| 652 | bitmapCopyAtOffset(bitmap, *out, SkScalarFloorToInt(fTileRects[i].left()), |
| 653 | SkScalarFloorToInt(fTileRects[i].top())); |
edisonn@google.com | 84f548c | 2012-12-18 22:24:03 +0000 | [diff] [blame] | 654 | } else { |
| 655 | success = false; |
| 656 | } |
| 657 | } |
keyar@chromium.org | 163b567 | 2012-08-01 17:53:29 +0000 | [diff] [blame] | 658 | } |
scroggo@google.com | a62da2f | 2012-11-02 21:28:12 +0000 | [diff] [blame] | 659 | return success; |
keyar@chromium.org | 163b567 | 2012-08-01 17:53:29 +0000 | [diff] [blame] | 660 | } |
| 661 | |
scroggo@google.com | bcdf2ec | 2012-09-20 14:42:33 +0000 | [diff] [blame] | 662 | SkCanvas* TiledPictureRenderer::setupCanvas(int width, int height) { |
| 663 | SkCanvas* canvas = this->INHERITED::setupCanvas(width, height); |
commit-bot@chromium.org | 8ddc26b | 2014-03-31 17:55:12 +0000 | [diff] [blame] | 664 | SkASSERT(NULL != fPicture); |
scroggo@google.com | 82ec0b0 | 2012-12-17 19:25:54 +0000 | [diff] [blame] | 665 | // Clip the tile to an area that is completely inside both the SkPicture and the viewport. This |
| 666 | // is mostly important for tiles on the right and bottom edges as they may go over this area and |
| 667 | // the picture may have some commands that draw outside of this area and so should not actually |
| 668 | // be written. |
| 669 | // Uses a clipRegion so that it will be unaffected by the scale factor, which may have been set |
| 670 | // by INHERITED::setupCanvas. |
| 671 | SkRegion clipRegion; |
| 672 | clipRegion.setRect(0, 0, this->getViewWidth(), this->getViewHeight()); |
| 673 | canvas->clipRegion(clipRegion); |
scroggo@google.com | bcdf2ec | 2012-09-20 14:42:33 +0000 | [diff] [blame] | 674 | return canvas; |
| 675 | } |
scroggo@google.com | 0a049b8 | 2012-11-02 22:01:26 +0000 | [diff] [blame] | 676 | |
| 677 | SkString TiledPictureRenderer::getConfigNameInternal() { |
| 678 | SkString name; |
| 679 | if (fTileMinPowerOf2Width > 0) { |
| 680 | name.append("pow2tile_"); |
| 681 | name.appendf("%i", fTileMinPowerOf2Width); |
| 682 | } else { |
| 683 | name.append("tile_"); |
| 684 | if (fTileWidthPercentage > 0) { |
| 685 | name.appendf("%.f%%", fTileWidthPercentage); |
| 686 | } else { |
| 687 | name.appendf("%i", fTileWidth); |
| 688 | } |
| 689 | } |
| 690 | name.append("x"); |
| 691 | if (fTileHeightPercentage > 0) { |
| 692 | name.appendf("%.f%%", fTileHeightPercentage); |
| 693 | } else { |
| 694 | name.appendf("%i", fTileHeight); |
| 695 | } |
| 696 | return name; |
| 697 | } |
| 698 | |
scroggo@google.com | a62da2f | 2012-11-02 21:28:12 +0000 | [diff] [blame] | 699 | /////////////////////////////////////////////////////////////////////////////////////////////// |
| 700 | |
| 701 | // Holds all of the information needed to draw a set of tiles. |
| 702 | class CloneData : public SkRunnable { |
| 703 | |
| 704 | public: |
| 705 | CloneData(SkPicture* clone, SkCanvas* canvas, SkTDArray<SkRect>& rects, int start, int end, |
commit-bot@chromium.org | 205ce48 | 2014-05-12 15:37:20 +0000 | [diff] [blame] | 706 | SkRunnable* done, ImageResultsAndExpectations* jsonSummaryPtr, |
commit-bot@chromium.org | 8991c67 | 2014-05-22 00:36:05 +0000 | [diff] [blame] | 707 | bool useChecksumBasedFilenames, bool enableWrites) |
scroggo@google.com | a62da2f | 2012-11-02 21:28:12 +0000 | [diff] [blame] | 708 | : fClone(clone) |
| 709 | , fCanvas(canvas) |
commit-bot@chromium.org | 8991c67 | 2014-05-22 00:36:05 +0000 | [diff] [blame] | 710 | , fEnableWrites(enableWrites) |
scroggo@google.com | a62da2f | 2012-11-02 21:28:12 +0000 | [diff] [blame] | 711 | , fRects(rects) |
| 712 | , fStart(start) |
| 713 | , fEnd(end) |
| 714 | , fSuccess(NULL) |
commit-bot@chromium.org | a3f882c | 2013-12-13 20:52:36 +0000 | [diff] [blame] | 715 | , fDone(done) |
commit-bot@chromium.org | f5e315c | 2014-03-19 17:26:07 +0000 | [diff] [blame] | 716 | , fJsonSummaryPtr(jsonSummaryPtr) |
| 717 | , fUseChecksumBasedFilenames(useChecksumBasedFilenames) { |
scroggo@google.com | a62da2f | 2012-11-02 21:28:12 +0000 | [diff] [blame] | 718 | SkASSERT(fDone != NULL); |
| 719 | } |
| 720 | |
| 721 | virtual void run() SK_OVERRIDE { |
| 722 | SkGraphics::SetTLSFontCacheLimit(1024 * 1024); |
edisonn@google.com | 84f548c | 2012-12-18 22:24:03 +0000 | [diff] [blame] | 723 | |
| 724 | SkBitmap bitmap; |
| 725 | if (fBitmap != NULL) { |
| 726 | // All tiles are the same size. |
jvanverth@google.com | 9c4e5ac | 2013-01-07 18:41:28 +0000 | [diff] [blame] | 727 | setup_bitmap(&bitmap, SkScalarFloorToInt(fRects[0].width()), SkScalarFloorToInt(fRects[0].height())); |
edisonn@google.com | 84f548c | 2012-12-18 22:24:03 +0000 | [diff] [blame] | 728 | } |
skia.committer@gmail.com | a7d8e3e | 2012-12-19 02:01:38 +0000 | [diff] [blame] | 729 | |
scroggo@google.com | a62da2f | 2012-11-02 21:28:12 +0000 | [diff] [blame] | 730 | for (int i = fStart; i < fEnd; i++) { |
commit-bot@chromium.org | 145d1c0 | 2014-03-16 19:46:36 +0000 | [diff] [blame] | 731 | draw_tile_to_canvas(fCanvas, fRects[i], fClone); |
commit-bot@chromium.org | 8991c67 | 2014-05-22 00:36:05 +0000 | [diff] [blame] | 732 | if (fEnableWrites) { |
| 733 | if (!write(fCanvas, fWritePath, fMismatchPath, fInputFilename, fJsonSummaryPtr, |
| 734 | fUseChecksumBasedFilenames, &i) |
| 735 | && fSuccess != NULL) { |
edisonn@google.com | 84f548c | 2012-12-18 22:24:03 +0000 | [diff] [blame] | 736 | *fSuccess = false; |
commit-bot@chromium.org | 8991c67 | 2014-05-22 00:36:05 +0000 | [diff] [blame] | 737 | // If one tile fails to write to a file, do not continue drawing the rest. |
edisonn@google.com | 84f548c | 2012-12-18 22:24:03 +0000 | [diff] [blame] | 738 | break; |
| 739 | } |
commit-bot@chromium.org | 8991c67 | 2014-05-22 00:36:05 +0000 | [diff] [blame] | 740 | if (fBitmap != NULL) { |
| 741 | if (fCanvas->readPixels(&bitmap, 0, 0)) { |
| 742 | SkAutoLockPixels alp(*fBitmap); |
| 743 | bitmapCopyAtOffset(bitmap, fBitmap, SkScalarFloorToInt(fRects[i].left()), |
| 744 | SkScalarFloorToInt(fRects[i].top())); |
| 745 | } else { |
| 746 | *fSuccess = false; |
| 747 | // If one tile fails to read pixels, do not continue drawing the rest. |
| 748 | break; |
| 749 | } |
| 750 | } |
edisonn@google.com | 84f548c | 2012-12-18 22:24:03 +0000 | [diff] [blame] | 751 | } |
scroggo@google.com | a62da2f | 2012-11-02 21:28:12 +0000 | [diff] [blame] | 752 | } |
| 753 | fDone->run(); |
| 754 | } |
| 755 | |
commit-bot@chromium.org | 3f04517 | 2014-05-15 15:10:48 +0000 | [diff] [blame] | 756 | void setPathsAndSuccess(const SkString& writePath, const SkString& mismatchPath, |
| 757 | const SkString& inputFilename, bool* success) { |
| 758 | fWritePath.set(writePath); |
| 759 | fMismatchPath.set(mismatchPath); |
commit-bot@chromium.org | f5e315c | 2014-03-19 17:26:07 +0000 | [diff] [blame] | 760 | fInputFilename.set(inputFilename); |
scroggo@google.com | a62da2f | 2012-11-02 21:28:12 +0000 | [diff] [blame] | 761 | fSuccess = success; |
| 762 | } |
| 763 | |
edisonn@google.com | 84f548c | 2012-12-18 22:24:03 +0000 | [diff] [blame] | 764 | void setBitmap(SkBitmap* bitmap) { |
| 765 | fBitmap = bitmap; |
| 766 | } |
| 767 | |
scroggo@google.com | a62da2f | 2012-11-02 21:28:12 +0000 | [diff] [blame] | 768 | private: |
| 769 | // All pointers unowned. |
| 770 | SkPicture* fClone; // Picture to draw from. Each CloneData has a unique one which |
| 771 | // is threadsafe. |
| 772 | SkCanvas* fCanvas; // Canvas to draw to. Reused for each tile. |
commit-bot@chromium.org | 8991c67 | 2014-05-22 00:36:05 +0000 | [diff] [blame] | 773 | bool fEnableWrites; // TODO(epoger): Temporary hack; see declaration of |
| 774 | // fEnableWrites in PictureRenderer.h. |
commit-bot@chromium.org | 3f04517 | 2014-05-15 15:10:48 +0000 | [diff] [blame] | 775 | SkString fWritePath; // If not empty, write all results into this directory. |
| 776 | SkString fMismatchPath; // If not empty, write all unexpected results into this dir. |
commit-bot@chromium.org | f5e315c | 2014-03-19 17:26:07 +0000 | [diff] [blame] | 777 | SkString fInputFilename; // Filename of input SkPicture file. |
scroggo@google.com | a62da2f | 2012-11-02 21:28:12 +0000 | [diff] [blame] | 778 | SkTDArray<SkRect>& fRects; // All tiles of the picture. |
| 779 | const int fStart; // Range of tiles drawn by this thread. |
| 780 | const int fEnd; |
| 781 | bool* fSuccess; // Only meaningful if path is non-null. Shared by all threads, |
| 782 | // and only set to false upon failure to write to a PNG. |
| 783 | SkRunnable* fDone; |
edisonn@google.com | 84f548c | 2012-12-18 22:24:03 +0000 | [diff] [blame] | 784 | SkBitmap* fBitmap; |
commit-bot@chromium.org | 205ce48 | 2014-05-12 15:37:20 +0000 | [diff] [blame] | 785 | ImageResultsAndExpectations* fJsonSummaryPtr; |
commit-bot@chromium.org | f5e315c | 2014-03-19 17:26:07 +0000 | [diff] [blame] | 786 | bool fUseChecksumBasedFilenames; |
scroggo@google.com | a62da2f | 2012-11-02 21:28:12 +0000 | [diff] [blame] | 787 | }; |
| 788 | |
| 789 | MultiCorePictureRenderer::MultiCorePictureRenderer(int threadCount) |
| 790 | : fNumThreads(threadCount) |
| 791 | , fThreadPool(threadCount) |
| 792 | , fCountdown(threadCount) { |
| 793 | // Only need to create fNumThreads - 1 clones, since one thread will use the base |
| 794 | // picture. |
| 795 | fPictureClones = SkNEW_ARRAY(SkPicture, fNumThreads - 1); |
| 796 | fCloneData = SkNEW_ARRAY(CloneData*, fNumThreads); |
| 797 | } |
| 798 | |
commit-bot@chromium.org | 3f04517 | 2014-05-15 15:10:48 +0000 | [diff] [blame] | 799 | void MultiCorePictureRenderer::init(SkPicture *pict, const SkString* writePath, |
| 800 | const SkString* mismatchPath, const SkString* inputFilename, |
| 801 | bool useChecksumBasedFilenames) { |
scroggo@google.com | a62da2f | 2012-11-02 21:28:12 +0000 | [diff] [blame] | 802 | // Set fPicture and the tiles. |
commit-bot@chromium.org | 3f04517 | 2014-05-15 15:10:48 +0000 | [diff] [blame] | 803 | this->INHERITED::init(pict, writePath, mismatchPath, inputFilename, useChecksumBasedFilenames); |
scroggo@google.com | a62da2f | 2012-11-02 21:28:12 +0000 | [diff] [blame] | 804 | for (int i = 0; i < fNumThreads; ++i) { |
| 805 | *fCanvasPool.append() = this->setupCanvas(this->getTileWidth(), this->getTileHeight()); |
| 806 | } |
| 807 | // Only need to create fNumThreads - 1 clones, since one thread will use the base picture. |
| 808 | fPicture->clone(fPictureClones, fNumThreads - 1); |
| 809 | // Populate each thread with the appropriate data. |
| 810 | // Group the tiles into nearly equal size chunks, rounding up so we're sure to cover them all. |
| 811 | const int chunkSize = (fTileRects.count() + fNumThreads - 1) / fNumThreads; |
| 812 | |
| 813 | for (int i = 0; i < fNumThreads; i++) { |
| 814 | SkPicture* pic; |
| 815 | if (i == fNumThreads-1) { |
| 816 | // The last set will use the original SkPicture. |
| 817 | pic = fPicture; |
| 818 | } else { |
| 819 | pic = &fPictureClones[i]; |
| 820 | } |
| 821 | const int start = i * chunkSize; |
| 822 | const int end = SkMin32(start + chunkSize, fTileRects.count()); |
| 823 | fCloneData[i] = SkNEW_ARGS(CloneData, |
commit-bot@chromium.org | a3f882c | 2013-12-13 20:52:36 +0000 | [diff] [blame] | 824 | (pic, fCanvasPool[i], fTileRects, start, end, &fCountdown, |
commit-bot@chromium.org | 8991c67 | 2014-05-22 00:36:05 +0000 | [diff] [blame] | 825 | fJsonSummaryPtr, useChecksumBasedFilenames, fEnableWrites)); |
scroggo@google.com | a62da2f | 2012-11-02 21:28:12 +0000 | [diff] [blame] | 826 | } |
| 827 | } |
| 828 | |
commit-bot@chromium.org | f5e315c | 2014-03-19 17:26:07 +0000 | [diff] [blame] | 829 | bool MultiCorePictureRenderer::render(SkBitmap** out) { |
scroggo@google.com | a62da2f | 2012-11-02 21:28:12 +0000 | [diff] [blame] | 830 | bool success = true; |
commit-bot@chromium.org | 3f04517 | 2014-05-15 15:10:48 +0000 | [diff] [blame] | 831 | if (!fWritePath.isEmpty() || !fMismatchPath.isEmpty()) { |
scroggo@google.com | a62da2f | 2012-11-02 21:28:12 +0000 | [diff] [blame] | 832 | for (int i = 0; i < fNumThreads-1; i++) { |
commit-bot@chromium.org | 3f04517 | 2014-05-15 15:10:48 +0000 | [diff] [blame] | 833 | fCloneData[i]->setPathsAndSuccess(fWritePath, fMismatchPath, fInputFilename, &success); |
scroggo@google.com | a62da2f | 2012-11-02 21:28:12 +0000 | [diff] [blame] | 834 | } |
| 835 | } |
| 836 | |
edisonn@google.com | 84f548c | 2012-12-18 22:24:03 +0000 | [diff] [blame] | 837 | if (NULL != out) { |
| 838 | *out = SkNEW(SkBitmap); |
| 839 | setup_bitmap(*out, fPicture->width(), fPicture->height()); |
| 840 | for (int i = 0; i < fNumThreads; i++) { |
| 841 | fCloneData[i]->setBitmap(*out); |
| 842 | } |
| 843 | } else { |
| 844 | for (int i = 0; i < fNumThreads; i++) { |
| 845 | fCloneData[i]->setBitmap(NULL); |
| 846 | } |
| 847 | } |
| 848 | |
scroggo@google.com | a62da2f | 2012-11-02 21:28:12 +0000 | [diff] [blame] | 849 | fCountdown.reset(fNumThreads); |
| 850 | for (int i = 0; i < fNumThreads; i++) { |
| 851 | fThreadPool.add(fCloneData[i]); |
| 852 | } |
| 853 | fCountdown.wait(); |
| 854 | |
| 855 | return success; |
| 856 | } |
| 857 | |
| 858 | void MultiCorePictureRenderer::end() { |
| 859 | for (int i = 0; i < fNumThreads - 1; i++) { |
| 860 | SkDELETE(fCloneData[i]); |
| 861 | fCloneData[i] = NULL; |
| 862 | } |
| 863 | |
| 864 | fCanvasPool.unrefAll(); |
| 865 | |
| 866 | this->INHERITED::end(); |
| 867 | } |
| 868 | |
| 869 | MultiCorePictureRenderer::~MultiCorePictureRenderer() { |
| 870 | // Each individual CloneData was deleted in end. |
| 871 | SkDELETE_ARRAY(fCloneData); |
| 872 | SkDELETE_ARRAY(fPictureClones); |
| 873 | } |
scroggo@google.com | bcdf2ec | 2012-09-20 14:42:33 +0000 | [diff] [blame] | 874 | |
scroggo@google.com | 0a049b8 | 2012-11-02 22:01:26 +0000 | [diff] [blame] | 875 | SkString MultiCorePictureRenderer::getConfigNameInternal() { |
| 876 | SkString name = this->INHERITED::getConfigNameInternal(); |
| 877 | name.appendf("_multi_%i_threads", fNumThreads); |
| 878 | return name; |
| 879 | } |
| 880 | |
scroggo@google.com | acfb30e | 2012-09-18 14:32:35 +0000 | [diff] [blame] | 881 | /////////////////////////////////////////////////////////////////////////////////////////////// |
scroggo@google.com | 9a41252 | 2012-09-07 15:21:18 +0000 | [diff] [blame] | 882 | |
| 883 | void PlaybackCreationRenderer::setup() { |
commit-bot@chromium.org | 5fb2ce3 | 2014-04-17 23:35:06 +0000 | [diff] [blame] | 884 | SkAutoTDelete<SkBBHFactory> factory(this->getFactory()); |
| 885 | fRecorder.reset(SkNEW(SkPictureRecorder)); |
robertphillips@google.com | 84b18c7 | 2014-04-13 19:09:42 +0000 | [diff] [blame] | 886 | SkCanvas* canvas = fRecorder->beginRecording(this->getViewWidth(), this->getViewHeight(), |
commit-bot@chromium.org | 5fb2ce3 | 2014-04-17 23:35:06 +0000 | [diff] [blame] | 887 | factory.get(), |
robertphillips@google.com | 84b18c7 | 2014-04-13 19:09:42 +0000 | [diff] [blame] | 888 | this->recordFlags()); |
| 889 | this->scaleToScaleFactor(canvas); |
robertphillips | 9b14f26 | 2014-06-04 05:40:44 -0700 | [diff] [blame] | 890 | canvas->drawPicture(fPicture); |
scroggo@google.com | 9a41252 | 2012-09-07 15:21:18 +0000 | [diff] [blame] | 891 | } |
| 892 | |
commit-bot@chromium.org | f5e315c | 2014-03-19 17:26:07 +0000 | [diff] [blame] | 893 | bool PlaybackCreationRenderer::render(SkBitmap** out) { |
robertphillips@google.com | 84b18c7 | 2014-04-13 19:09:42 +0000 | [diff] [blame] | 894 | fPicture.reset(fRecorder->endRecording()); |
scroggo@google.com | 81f9d2e | 2012-09-20 14:54:21 +0000 | [diff] [blame] | 895 | // Since this class does not actually render, return false. |
| 896 | return false; |
keyar@chromium.org | 451bb9f | 2012-07-26 17:27:57 +0000 | [diff] [blame] | 897 | } |
| 898 | |
scroggo@google.com | 0a049b8 | 2012-11-02 22:01:26 +0000 | [diff] [blame] | 899 | SkString PlaybackCreationRenderer::getConfigNameInternal() { |
| 900 | return SkString("playback_creation"); |
| 901 | } |
| 902 | |
junov@chromium.org | 9313ca4 | 2012-11-02 18:11:49 +0000 | [diff] [blame] | 903 | /////////////////////////////////////////////////////////////////////////////////////////////// |
| 904 | // SkPicture variants for each BBoxHierarchy type |
| 905 | |
commit-bot@chromium.org | 5fb2ce3 | 2014-04-17 23:35:06 +0000 | [diff] [blame] | 906 | SkBBHFactory* PictureRenderer::getFactory() { |
junov@chromium.org | 9313ca4 | 2012-11-02 18:11:49 +0000 | [diff] [blame] | 907 | switch (fBBoxHierarchyType) { |
| 908 | case kNone_BBoxHierarchyType: |
robertphillips@google.com | 84b18c7 | 2014-04-13 19:09:42 +0000 | [diff] [blame] | 909 | return NULL; |
commit-bot@chromium.org | c22d139 | 2014-02-03 18:08:33 +0000 | [diff] [blame] | 910 | case kQuadTree_BBoxHierarchyType: |
commit-bot@chromium.org | 5fb2ce3 | 2014-04-17 23:35:06 +0000 | [diff] [blame] | 911 | return SkNEW(SkQuadTreeFactory); |
junov@chromium.org | 9313ca4 | 2012-11-02 18:11:49 +0000 | [diff] [blame] | 912 | case kRTree_BBoxHierarchyType: |
commit-bot@chromium.org | 5fb2ce3 | 2014-04-17 23:35:06 +0000 | [diff] [blame] | 913 | return SkNEW(SkRTreeFactory); |
junov@chromium.org | 7b53706 | 2012-11-06 18:58:43 +0000 | [diff] [blame] | 914 | case kTileGrid_BBoxHierarchyType: |
commit-bot@chromium.org | 5fb2ce3 | 2014-04-17 23:35:06 +0000 | [diff] [blame] | 915 | return SkNEW_ARGS(SkTileGridFactory, (fGridInfo)); |
junov@chromium.org | 9313ca4 | 2012-11-02 18:11:49 +0000 | [diff] [blame] | 916 | } |
| 917 | SkASSERT(0); // invalid bbhType |
| 918 | return NULL; |
keyar@chromium.org | 451bb9f | 2012-07-26 17:27:57 +0000 | [diff] [blame] | 919 | } |
junov@chromium.org | 9313ca4 | 2012-11-02 18:11:49 +0000 | [diff] [blame] | 920 | |
reed@google.com | fe7b1ed | 2012-11-29 21:00:39 +0000 | [diff] [blame] | 921 | /////////////////////////////////////////////////////////////////////////////// |
| 922 | |
| 923 | class GatherRenderer : public PictureRenderer { |
| 924 | public: |
commit-bot@chromium.org | 8ddc26b | 2014-03-31 17:55:12 +0000 | [diff] [blame] | 925 | virtual bool render(SkBitmap** out = NULL) SK_OVERRIDE { |
reed@google.com | fe7b1ed | 2012-11-29 21:00:39 +0000 | [diff] [blame] | 926 | SkRect bounds = SkRect::MakeWH(SkIntToScalar(fPicture->width()), |
| 927 | SkIntToScalar(fPicture->height())); |
| 928 | SkData* data = SkPictureUtils::GatherPixelRefs(fPicture, bounds); |
| 929 | SkSafeUnref(data); |
skia.committer@gmail.com | c7b4be7 | 2012-12-11 02:01:20 +0000 | [diff] [blame] | 930 | |
commit-bot@chromium.org | 3f04517 | 2014-05-15 15:10:48 +0000 | [diff] [blame] | 931 | return (fWritePath.isEmpty()); // we don't have anything to write |
reed@google.com | fe7b1ed | 2012-11-29 21:00:39 +0000 | [diff] [blame] | 932 | } |
skia.committer@gmail.com | c7b4be7 | 2012-12-11 02:01:20 +0000 | [diff] [blame] | 933 | |
reed@google.com | fe7b1ed | 2012-11-29 21:00:39 +0000 | [diff] [blame] | 934 | private: |
| 935 | virtual SkString getConfigNameInternal() SK_OVERRIDE { |
| 936 | return SkString("gather_pixelrefs"); |
| 937 | } |
| 938 | }; |
| 939 | |
| 940 | PictureRenderer* CreateGatherPixelRefsRenderer() { |
| 941 | return SkNEW(GatherRenderer); |
| 942 | } |
skia.committer@gmail.com | c3d7d90 | 2012-11-30 02:01:24 +0000 | [diff] [blame] | 943 | |
reed@google.com | 5a34fd3 | 2012-12-10 16:05:09 +0000 | [diff] [blame] | 944 | /////////////////////////////////////////////////////////////////////////////// |
| 945 | |
| 946 | class PictureCloneRenderer : public PictureRenderer { |
| 947 | public: |
commit-bot@chromium.org | 8ddc26b | 2014-03-31 17:55:12 +0000 | [diff] [blame] | 948 | virtual bool render(SkBitmap** out = NULL) SK_OVERRIDE { |
reed@google.com | 5a34fd3 | 2012-12-10 16:05:09 +0000 | [diff] [blame] | 949 | for (int i = 0; i < 100; ++i) { |
| 950 | SkPicture* clone = fPicture->clone(); |
| 951 | SkSafeUnref(clone); |
| 952 | } |
skia.committer@gmail.com | c7b4be7 | 2012-12-11 02:01:20 +0000 | [diff] [blame] | 953 | |
commit-bot@chromium.org | 3f04517 | 2014-05-15 15:10:48 +0000 | [diff] [blame] | 954 | return (fWritePath.isEmpty()); // we don't have anything to write |
reed@google.com | 5a34fd3 | 2012-12-10 16:05:09 +0000 | [diff] [blame] | 955 | } |
skia.committer@gmail.com | c7b4be7 | 2012-12-11 02:01:20 +0000 | [diff] [blame] | 956 | |
reed@google.com | 5a34fd3 | 2012-12-10 16:05:09 +0000 | [diff] [blame] | 957 | private: |
| 958 | virtual SkString getConfigNameInternal() SK_OVERRIDE { |
| 959 | return SkString("picture_clone"); |
| 960 | } |
| 961 | }; |
| 962 | |
| 963 | PictureRenderer* CreatePictureCloneRenderer() { |
| 964 | return SkNEW(PictureCloneRenderer); |
| 965 | } |
| 966 | |
junov@chromium.org | 9313ca4 | 2012-11-02 18:11:49 +0000 | [diff] [blame] | 967 | } // namespace sk_tools |