blob: 6d9ce62df98ba4f5ea1b32603175211ca9dc46ed [file] [log] [blame]
keyar@chromium.orgb3fb7c12012-08-20 21:02:49 +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
keyar@chromium.org451bb9f2012-07-26 17:27:57 +00008#include "PictureRenderer.h"
scroggo@google.com58b4ead2012-08-31 16:15:22 +00009#include "picture_utils.h"
keyar@chromium.org451bb9f2012-07-26 17:27:57 +000010#include "SamplePipeControllers.h"
commit-bot@chromium.orga3f882c2013-12-13 20:52:36 +000011#include "SkBitmapHasher.h"
keyar@chromium.org451bb9f2012-07-26 17:27:57 +000012#include "SkCanvas.h"
scroggo@google.com1b1bcc32013-05-21 20:31:23 +000013#include "SkData.h"
keyar@chromium.org451bb9f2012-07-26 17:27:57 +000014#include "SkDevice.h"
robertphillips@google.com94d8f1e2013-12-18 17:25:33 +000015#include "SkDiscardableMemoryPool.h"
keyar@chromium.org451bb9f2012-07-26 17:27:57 +000016#include "SkGPipe.h"
scroggo@google.com58b4ead2012-08-31 16:15:22 +000017#if SK_SUPPORT_GPU
robertphillips@google.comfe1b5362013-02-07 19:45:46 +000018#include "gl/GrGLDefines.h"
scroggo@google.com58b4ead2012-08-31 16:15:22 +000019#include "SkGpuDevice.h"
20#endif
21#include "SkGraphics.h"
22#include "SkImageEncoder.h"
caryclark@google.coma3622372012-11-06 21:26:13 +000023#include "SkMaskFilter.h"
keyar@chromium.orgea826952012-08-23 15:24:13 +000024#include "SkMatrix.h"
keyar@chromium.org451bb9f2012-07-26 17:27:57 +000025#include "SkPicture.h"
scroggo@google.com1b1bcc32013-05-21 20:31:23 +000026#include "SkPictureUtils.h"
27#include "SkPixelRef.h"
commit-bot@chromium.orgc22d1392014-02-03 18:08:33 +000028#include "SkQuadTree.h"
29#include "SkQuadTreePicture.h"
junov@chromium.org9313ca42012-11-02 18:11:49 +000030#include "SkRTree.h"
keyar@chromium.orgea826952012-08-23 15:24:13 +000031#include "SkScalar.h"
scroggo@google.coma9e3a362012-11-07 17:52:48 +000032#include "SkStream.h"
keyar@chromium.org9299ede2012-08-21 19:05:08 +000033#include "SkString.h"
scroggo@google.com58b4ead2012-08-31 16:15:22 +000034#include "SkTemplates.h"
junov@chromium.org3cb834b2012-12-13 16:39:53 +000035#include "SkTileGridPicture.h"
keyar@chromium.org451bb9f2012-07-26 17:27:57 +000036#include "SkTDArray.h"
scroggo@google.com58b4ead2012-08-31 16:15:22 +000037#include "SkThreadUtils.h"
keyar@chromium.org451bb9f2012-07-26 17:27:57 +000038#include "SkTypes.h"
keyar@chromium.org4ea96c52012-08-20 15:03:29 +000039
reed@google.come15b2f52013-12-18 04:59:26 +000040static inline SkScalar scalar_log2(SkScalar x) {
41 static const SkScalar log2_conversion_factor = SkScalarDiv(1, SkScalarLog(2));
skia.committer@gmail.com3b85deb2013-12-18 07:01:56 +000042
reed@google.come15b2f52013-12-18 04:59:26 +000043 return SkScalarLog(x) * log2_conversion_factor;
44}
45
keyar@chromium.org451bb9f2012-07-26 17:27:57 +000046namespace sk_tools {
47
48enum {
49 kDefaultTileWidth = 256,
50 kDefaultTileHeight = 256
51};
52
commit-bot@chromium.orga3f882c2013-12-13 20:52:36 +000053/* TODO(epoger): These constants are already maintained in 2 other places:
54 * gm/gm_json.py and gm/gm_expectations.cpp. We shouldn't add yet a third place.
55 * Figure out a way to share the definitions instead.
56 */
57const static char kJsonKey_ActualResults[] = "actual-results";
commit-bot@chromium.orga3f882c2013-12-13 20:52:36 +000058const static char kJsonKey_ActualResults_NoComparison[] = "no-comparison";
commit-bot@chromium.orga3f882c2013-12-13 20:52:36 +000059const static char kJsonKey_Hashtype_Bitmap_64bitMD5[] = "bitmap-64bitMD5";
60
61void ImageResultsSummary::add(const char *testName, const SkBitmap& bitmap) {
62 uint64_t hash;
63 SkAssertResult(SkBitmapHasher::ComputeDigest(bitmap, &hash));
64 Json::Value jsonTypeValuePair;
65 jsonTypeValuePair.append(Json::Value(kJsonKey_Hashtype_Bitmap_64bitMD5));
66 jsonTypeValuePair.append(Json::UInt64(hash));
67 fActualResultsNoComparison[testName] = jsonTypeValuePair;
68}
69
70void ImageResultsSummary::writeToFile(const char *filename) {
71 Json::Value actualResults;
72 actualResults[kJsonKey_ActualResults_NoComparison] = fActualResultsNoComparison;
73 Json::Value root;
74 root[kJsonKey_ActualResults] = actualResults;
75 std::string jsonStdString = root.toStyledString();
76 SkFILEWStream stream(filename);
77 stream.write(jsonStdString.c_str(), jsonStdString.length());
78}
79
keyar@chromium.org9d696c02012-08-07 17:11:33 +000080void PictureRenderer::init(SkPicture* pict) {
keyar@chromium.org78a35c52012-08-20 15:03:44 +000081 SkASSERT(NULL == fPicture);
82 SkASSERT(NULL == fCanvas.get());
83 if (fPicture != NULL || NULL != fCanvas.get()) {
keyar@chromium.org9d696c02012-08-07 17:11:33 +000084 return;
85 }
86
87 SkASSERT(pict != NULL);
keyar@chromium.org78a35c52012-08-20 15:03:44 +000088 if (NULL == pict) {
keyar@chromium.org9d696c02012-08-07 17:11:33 +000089 return;
90 }
91
92 fPicture = pict;
junov@chromium.org9313ca42012-11-02 18:11:49 +000093 fPicture->ref();
keyar@chromium.orga474ce32012-08-20 15:03:57 +000094 fCanvas.reset(this->setupCanvas());
95}
96
caryclark@google.coma3622372012-11-06 21:26:13 +000097class FlagsDrawFilter : public SkDrawFilter {
98public:
99 FlagsDrawFilter(PictureRenderer::DrawFilterFlags* flags) :
100 fFlags(flags) {}
101
reed@google.com971aca72012-11-26 20:26:54 +0000102 virtual bool filter(SkPaint* paint, Type t) {
caryclark@google.coma3622372012-11-06 21:26:13 +0000103 paint->setFlags(paint->getFlags() & ~fFlags[t] & SkPaint::kAllFlags);
robertphillips@google.com49149312013-07-03 15:34:35 +0000104 if (PictureRenderer::kMaskFilter_DrawFilterFlag & fFlags[t]) {
caryclark@google.coma3622372012-11-06 21:26:13 +0000105 SkMaskFilter* maskFilter = paint->getMaskFilter();
robertphillips@google.com49149312013-07-03 15:34:35 +0000106 if (NULL != maskFilter) {
reed@google.com457d8a72012-12-18 18:20:44 +0000107 paint->setMaskFilter(NULL);
caryclark@google.coma3622372012-11-06 21:26:13 +0000108 }
109 }
110 if (PictureRenderer::kHinting_DrawFilterFlag & fFlags[t]) {
111 paint->setHinting(SkPaint::kNo_Hinting);
112 } else if (PictureRenderer::kSlightHinting_DrawFilterFlag & fFlags[t]) {
113 paint->setHinting(SkPaint::kSlight_Hinting);
114 }
reed@google.com971aca72012-11-26 20:26:54 +0000115 return true;
caryclark@google.coma3622372012-11-06 21:26:13 +0000116 }
117
118private:
119 PictureRenderer::DrawFilterFlags* fFlags;
120};
121
scroggo@google.com82ec0b02012-12-17 19:25:54 +0000122static void setUpFilter(SkCanvas* canvas, PictureRenderer::DrawFilterFlags* drawFilters) {
caryclark@google.coma3622372012-11-06 21:26:13 +0000123 if (drawFilters && !canvas->getDrawFilter()) {
124 canvas->setDrawFilter(SkNEW_ARGS(FlagsDrawFilter, (drawFilters)))->unref();
caryclark@google.come3e940c2012-11-07 16:42:17 +0000125 if (drawFilters[0] & PictureRenderer::kAAClip_DrawFilterFlag) {
126 canvas->setAllowSoftClip(false);
127 }
caryclark@google.coma3622372012-11-06 21:26:13 +0000128 }
caryclark@google.coma3622372012-11-06 21:26:13 +0000129}
130
keyar@chromium.orga474ce32012-08-20 15:03:57 +0000131SkCanvas* PictureRenderer::setupCanvas() {
scroggo@google.comc0d5e542012-12-13 21:40:48 +0000132 const int width = this->getViewWidth();
133 const int height = this->getViewHeight();
134 return this->setupCanvas(width, height);
keyar@chromium.orga474ce32012-08-20 15:03:57 +0000135}
136
137SkCanvas* PictureRenderer::setupCanvas(int width, int height) {
caryclark@google.coma3622372012-11-06 21:26:13 +0000138 SkCanvas* canvas;
keyar@chromium.org4ea96c52012-08-20 15:03:29 +0000139 switch(fDeviceType) {
140 case kBitmap_DeviceType: {
141 SkBitmap bitmap;
keyar@chromium.orga474ce32012-08-20 15:03:57 +0000142 sk_tools::setup_bitmap(&bitmap, width, height);
caryclark@google.coma3622372012-11-06 21:26:13 +0000143 canvas = SkNEW_ARGS(SkCanvas, (bitmap));
keyar@chromium.org4ea96c52012-08-20 15:03:29 +0000144 }
scroggo@google.com82ec0b02012-12-17 19:25:54 +0000145 break;
keyar@chromium.org4ea96c52012-08-20 15:03:29 +0000146#if SK_SUPPORT_GPU
scroggo@google.com0556ea02013-02-08 19:38:21 +0000147#if SK_ANGLE
148 case kAngle_DeviceType:
149 // fall through
150#endif
rmistry@google.com6ab96732014-01-06 18:37:24 +0000151#if SK_MESA
152 case kMesa_DeviceType:
153 // fall through
154#endif
keyar@chromium.org4ea96c52012-08-20 15:03:29 +0000155 case kGPU_DeviceType: {
commit-bot@chromium.orgae403b92013-04-10 17:27:30 +0000156 SkAutoTUnref<GrSurface> target;
scroggo@google.com0556ea02013-02-08 19:38:21 +0000157 if (fGrContext) {
158 // create a render target to back the device
159 GrTextureDesc desc;
160 desc.fConfig = kSkia8888_GrPixelConfig;
161 desc.fFlags = kRenderTarget_GrTextureFlagBit;
162 desc.fWidth = width;
163 desc.fHeight = height;
jvanverth@google.comf6a90332013-05-02 12:39:37 +0000164 desc.fSampleCnt = fSampleCount;
commit-bot@chromium.orgae403b92013-04-10 17:27:30 +0000165 target.reset(fGrContext->createUncachedTexture(desc, NULL, 0));
scroggo@google.com0556ea02013-02-08 19:38:21 +0000166 }
commit-bot@chromium.orgae403b92013-04-10 17:27:30 +0000167 if (NULL == target.get()) {
scroggo@google.com0556ea02013-02-08 19:38:21 +0000168 SkASSERT(0);
169 return NULL;
170 }
171
commit-bot@chromium.orgae403b92013-04-10 17:27:30 +0000172 SkAutoTUnref<SkGpuDevice> device(SkGpuDevice::Create(target));
caryclark@google.coma3622372012-11-06 21:26:13 +0000173 canvas = SkNEW_ARGS(SkCanvas, (device.get()));
scroggo@google.com0556ea02013-02-08 19:38:21 +0000174 break;
keyar@chromium.org4ea96c52012-08-20 15:03:29 +0000175 }
176#endif
177 default:
178 SkASSERT(0);
scroggo@google.com82ec0b02012-12-17 19:25:54 +0000179 return NULL;
keyar@chromium.org4ea96c52012-08-20 15:03:29 +0000180 }
scroggo@google.com82ec0b02012-12-17 19:25:54 +0000181 setUpFilter(canvas, fDrawFilters);
182 this->scaleToScaleFactor(canvas);
commit-bot@chromium.org17cc3ea2014-01-15 14:51:25 +0000183
184 // Pictures often lie about their extent (i.e., claim to be 100x100 but
185 // only ever draw to 90x100). Clear here so the undrawn portion will have
186 // a consistent color
187 canvas->clear(SK_ColorTRANSPARENT);
scroggo@google.com82ec0b02012-12-17 19:25:54 +0000188 return canvas;
189}
keyar@chromium.orga474ce32012-08-20 15:03:57 +0000190
scroggo@google.com82ec0b02012-12-17 19:25:54 +0000191void PictureRenderer::scaleToScaleFactor(SkCanvas* canvas) {
192 SkASSERT(canvas != NULL);
193 if (fScaleFactor != SK_Scalar1) {
194 canvas->scale(fScaleFactor, fScaleFactor);
195 }
keyar@chromium.org9d696c02012-08-07 17:11:33 +0000196}
197
198void PictureRenderer::end() {
scroggo@google.com08085f82013-01-28 20:40:24 +0000199 this->resetState(true);
junov@chromium.org9313ca42012-11-02 18:11:49 +0000200 SkSafeUnref(fPicture);
keyar@chromium.org9d696c02012-08-07 17:11:33 +0000201 fPicture = NULL;
202 fCanvas.reset(NULL);
203}
204
scroggo@google.comc0d5e542012-12-13 21:40:48 +0000205int PictureRenderer::getViewWidth() {
206 SkASSERT(fPicture != NULL);
robertphillips@google.com8ac811e2013-02-07 00:13:34 +0000207 int width = SkScalarCeilToInt(fPicture->width() * fScaleFactor);
scroggo@google.comc0d5e542012-12-13 21:40:48 +0000208 if (fViewport.width() > 0) {
209 width = SkMin32(width, fViewport.width());
210 }
211 return width;
212}
213
214int PictureRenderer::getViewHeight() {
215 SkASSERT(fPicture != NULL);
robertphillips@google.com8ac811e2013-02-07 00:13:34 +0000216 int height = SkScalarCeilToInt(fPicture->height() * fScaleFactor);
scroggo@google.comc0d5e542012-12-13 21:40:48 +0000217 if (fViewport.height() > 0) {
218 height = SkMin32(height, fViewport.height());
219 }
220 return height;
221}
222
junov@chromium.org9313ca42012-11-02 18:11:49 +0000223/** Converts fPicture to a picture that uses a BBoxHierarchy.
224 * PictureRenderer subclasses that are used to test picture playback
225 * should call this method during init.
226 */
227void PictureRenderer::buildBBoxHierarchy() {
228 SkASSERT(NULL != fPicture);
229 if (kNone_BBoxHierarchyType != fBBoxHierarchyType && NULL != fPicture) {
230 SkPicture* newPicture = this->createPicture();
231 SkCanvas* recorder = newPicture->beginRecording(fPicture->width(), fPicture->height(),
232 this->recordFlags());
233 fPicture->draw(recorder);
234 newPicture->endRecording();
235 fPicture->unref();
236 fPicture = newPicture;
237 }
238}
239
scroggo@google.com08085f82013-01-28 20:40:24 +0000240void PictureRenderer::resetState(bool callFinish) {
keyar@chromium.org28136b32012-08-20 15:04:15 +0000241#if SK_SUPPORT_GPU
robertphillips@google.com6177e692013-02-28 20:16:25 +0000242 SkGLContextHelper* glContext = this->getGLContext();
scroggo@google.com0556ea02013-02-08 19:38:21 +0000243 if (NULL == glContext) {
244 SkASSERT(kBitmap_DeviceType == fDeviceType);
245 return;
246 }
keyar@chromium.org28136b32012-08-20 15:04:15 +0000247
scroggo@google.com0556ea02013-02-08 19:38:21 +0000248 fGrContext->flush();
249 if (callFinish) {
250 SK_GL(*glContext, Finish());
keyar@chromium.org77a55222012-08-20 15:03:47 +0000251 }
keyar@chromium.orga40c20d2012-08-20 15:04:12 +0000252#endif
keyar@chromium.org77a55222012-08-20 15:03:47 +0000253}
254
robertphillips@google.com94d8f1e2013-12-18 17:25:33 +0000255void PictureRenderer::purgeTextures() {
256 SkDiscardableMemoryPool* pool = SkGetGlobalDiscardableMemoryPool();
257
258 pool->dumpPool();
259
260#if SK_SUPPORT_GPU
261 SkGLContextHelper* glContext = this->getGLContext();
262 if (NULL == glContext) {
263 SkASSERT(kBitmap_DeviceType == fDeviceType);
264 return;
265 }
266
267 // resetState should've already done this
268 fGrContext->flush();
269
270 fGrContext->purgeAllUnlockedResources();
271#endif
272}
273
junov@chromium.org9313ca42012-11-02 18:11:49 +0000274uint32_t PictureRenderer::recordFlags() {
junov@chromium.org100b1c52013-01-16 20:12:22 +0000275 return ((kNone_BBoxHierarchyType == fBBoxHierarchyType) ? 0 :
276 SkPicture::kOptimizeForClippedPlayback_RecordingFlag) |
277 SkPicture::kUsePathBoundsForClip_RecordingFlag;
junov@chromium.org9313ca42012-11-02 18:11:49 +0000278}
279
scroggo@google.comb6e806b2012-10-03 17:32:33 +0000280/**
281 * Write the canvas to the specified path.
282 * @param canvas Must be non-null. Canvas to be written to a file.
283 * @param path Path for the file to be written. Should have no extension; write() will append
284 * an appropriate one. Passed in by value so it can be modified.
commit-bot@chromium.orga3f882c2013-12-13 20:52:36 +0000285 * @param jsonSummaryPtr If not null, add image results to this summary.
scroggo@google.comb6e806b2012-10-03 17:32:33 +0000286 * @return bool True if the Canvas is written to a file.
commit-bot@chromium.orga3f882c2013-12-13 20:52:36 +0000287 *
288 * TODO(epoger): Right now, all canvases must pass through this function in order to be appended
289 * to the ImageResultsSummary. We need some way to add bitmaps to the ImageResultsSummary
290 * even if --writePath has not been specified (and thus this function is not called).
291 *
292 * One fix would be to pass in these path elements separately, and allow this function to be
293 * called even if --writePath was not specified...
294 * const char *outputDir // NULL if we don't want to write image files to disk
295 * const char *filename // name we use within JSON summary, and as the filename within outputDir
scroggo@google.comb6e806b2012-10-03 17:32:33 +0000296 */
commit-bot@chromium.orga3f882c2013-12-13 20:52:36 +0000297static bool write(SkCanvas* canvas, const SkString* path, ImageResultsSummary *jsonSummaryPtr) {
scroggo@google.com81f9d2e2012-09-20 14:54:21 +0000298 SkASSERT(canvas != NULL);
scroggo@google.comb6e806b2012-10-03 17:32:33 +0000299 if (NULL == canvas) {
keyar@chromium.org9299ede2012-08-21 19:05:08 +0000300 return false;
301 }
302
commit-bot@chromium.orga3f882c2013-12-13 20:52:36 +0000303 SkASSERT(path != NULL); // TODO(epoger): we want to remove this constraint, as noted above
304 SkString fullPathname(*path);
305 fullPathname.append(".png");
306
keyar@chromium.org9299ede2012-08-21 19:05:08 +0000307 SkBitmap bitmap;
scroggo@google.com81f9d2e2012-09-20 14:54:21 +0000308 SkISize size = canvas->getDeviceSize();
309 sk_tools::setup_bitmap(&bitmap, size.width(), size.height());
keyar@chromium.org9299ede2012-08-21 19:05:08 +0000310
scroggo@google.com81f9d2e2012-09-20 14:54:21 +0000311 canvas->readPixels(&bitmap, 0, 0);
keyar@chromium.org9299ede2012-08-21 19:05:08 +0000312 sk_tools::force_all_opaque(bitmap);
313
commit-bot@chromium.orga3f882c2013-12-13 20:52:36 +0000314 if (NULL != jsonSummaryPtr) {
315 // EPOGER: This is a hacky way of constructing the filename associated with the
316 // image checksum; we assume that outputDir is not NULL, and we remove outputDir
317 // from fullPathname.
318 //
319 // EPOGER: what about including the config type within hashFilename? That way,
320 // we could combine results of different config types without conflicting filenames.
321 SkString hashFilename;
322 sk_tools::get_basename(&hashFilename, fullPathname);
323 jsonSummaryPtr->add(hashFilename.c_str(), bitmap);
324 }
325
326 return SkImageEncoder::EncodeFile(fullPathname.c_str(), bitmap, SkImageEncoder::kPNG_Type, 100);
keyar@chromium.org9299ede2012-08-21 19:05:08 +0000327}
328
scroggo@google.comb6e806b2012-10-03 17:32:33 +0000329/**
commit-bot@chromium.orga3f882c2013-12-13 20:52:36 +0000330 * If path is non NULL, append number to it, and call write() to write the
scroggo@google.comb6e806b2012-10-03 17:32:33 +0000331 * provided canvas to a file. Returns true if path is NULL or if write() succeeds.
332 */
commit-bot@chromium.orga3f882c2013-12-13 20:52:36 +0000333static bool writeAppendNumber(SkCanvas* canvas, const SkString* path, int number,
334 ImageResultsSummary *jsonSummaryPtr) {
scroggo@google.comb6e806b2012-10-03 17:32:33 +0000335 if (NULL == path) {
336 return true;
337 }
338 SkString pathWithNumber(*path);
339 pathWithNumber.appendf("%i", number);
commit-bot@chromium.orga3f882c2013-12-13 20:52:36 +0000340 return write(canvas, &pathWithNumber, jsonSummaryPtr);
scroggo@google.comb6e806b2012-10-03 17:32:33 +0000341}
342
scroggo@google.comacfb30e2012-09-18 14:32:35 +0000343///////////////////////////////////////////////////////////////////////////////////////////////
344
djsollen@google.comfd9720c2012-11-06 16:54:40 +0000345SkCanvas* RecordPictureRenderer::setupCanvas(int width, int height) {
346 // defer the canvas setup until the render step
347 return NULL;
348}
349
reed@google.com672588b2014-01-08 15:42:01 +0000350// the size_t* parameter is deprecated, so we ignore it
351static SkData* encode_bitmap_to_data(size_t*, const SkBitmap& bm) {
scroggo@google.com1b1bcc32013-05-21 20:31:23 +0000352 return SkImageEncoder::EncodeData(bm, SkImageEncoder::kPNG_Type, 100);
scroggo@google.coma9e3a362012-11-07 17:52:48 +0000353}
354
edisonn@google.com84f548c2012-12-18 22:24:03 +0000355bool RecordPictureRenderer::render(const SkString* path, SkBitmap** out) {
junov@chromium.org9313ca42012-11-02 18:11:49 +0000356 SkAutoTUnref<SkPicture> replayer(this->createPicture());
scroggo@google.com82ec0b02012-12-17 19:25:54 +0000357 SkCanvas* recorder = replayer->beginRecording(this->getViewWidth(), this->getViewHeight(),
junov@chromium.org9313ca42012-11-02 18:11:49 +0000358 this->recordFlags());
scroggo@google.com82ec0b02012-12-17 19:25:54 +0000359 this->scaleToScaleFactor(recorder);
scroggo@google.com9a412522012-09-07 15:21:18 +0000360 fPicture->draw(recorder);
junov@chromium.org9313ca42012-11-02 18:11:49 +0000361 replayer->endRecording();
scroggo@google.coma9e3a362012-11-07 17:52:48 +0000362 if (path != NULL) {
363 // Record the new picture as a new SKP with PNG encoded bitmaps.
364 SkString skpPath(*path);
365 // ".skp" was removed from 'path' before being passed in here.
366 skpPath.append(".skp");
367 SkFILEWStream stream(skpPath.c_str());
scroggo@google.com1b1bcc32013-05-21 20:31:23 +0000368 replayer->serialize(&stream, &encode_bitmap_to_data);
scroggo@google.coma9e3a362012-11-07 17:52:48 +0000369 return true;
370 }
scroggo@google.com81f9d2e2012-09-20 14:54:21 +0000371 return false;
scroggo@google.com9a412522012-09-07 15:21:18 +0000372}
373
scroggo@google.com0a049b82012-11-02 22:01:26 +0000374SkString RecordPictureRenderer::getConfigNameInternal() {
375 return SkString("record");
376}
377
scroggo@google.comacfb30e2012-09-18 14:32:35 +0000378///////////////////////////////////////////////////////////////////////////////////////////////
379
edisonn@google.com84f548c2012-12-18 22:24:03 +0000380bool PipePictureRenderer::render(const SkString* path, SkBitmap** out) {
keyar@chromium.org9d696c02012-08-07 17:11:33 +0000381 SkASSERT(fCanvas.get() != NULL);
382 SkASSERT(fPicture != NULL);
keyar@chromium.org78a35c52012-08-20 15:03:44 +0000383 if (NULL == fCanvas.get() || NULL == fPicture) {
scroggo@google.com81f9d2e2012-09-20 14:54:21 +0000384 return false;
keyar@chromium.org9d696c02012-08-07 17:11:33 +0000385 }
386
387 PipeController pipeController(fCanvas.get());
keyar@chromium.org451bb9f2012-07-26 17:27:57 +0000388 SkGPipeWriter writer;
389 SkCanvas* pipeCanvas = writer.startRecording(&pipeController);
keyar@chromium.org9d696c02012-08-07 17:11:33 +0000390 pipeCanvas->drawPicture(*fPicture);
keyar@chromium.org451bb9f2012-07-26 17:27:57 +0000391 writer.endRecording();
scroggo@google.com9a412522012-09-07 15:21:18 +0000392 fCanvas->flush();
borenet@google.com070d3542012-10-26 13:26:55 +0000393 if (NULL != path) {
commit-bot@chromium.orga3f882c2013-12-13 20:52:36 +0000394 return write(fCanvas, path, fJsonSummaryPtr);
borenet@google.com070d3542012-10-26 13:26:55 +0000395 }
edisonn@google.com84f548c2012-12-18 22:24:03 +0000396 if (NULL != out) {
397 *out = SkNEW(SkBitmap);
398 setup_bitmap(*out, fPicture->width(), fPicture->height());
399 fCanvas->readPixels(*out, 0, 0);
skia.committer@gmail.coma7d8e3e2012-12-19 02:01:38 +0000400 }
borenet@google.com070d3542012-10-26 13:26:55 +0000401 return true;
keyar@chromium.org451bb9f2012-07-26 17:27:57 +0000402}
403
scroggo@google.com0a049b82012-11-02 22:01:26 +0000404SkString PipePictureRenderer::getConfigNameInternal() {
405 return SkString("pipe");
406}
407
scroggo@google.comacfb30e2012-09-18 14:32:35 +0000408///////////////////////////////////////////////////////////////////////////////////////////////
409
junov@chromium.org9313ca42012-11-02 18:11:49 +0000410void SimplePictureRenderer::init(SkPicture* picture) {
411 INHERITED::init(picture);
412 this->buildBBoxHierarchy();
413}
414
edisonn@google.com84f548c2012-12-18 22:24:03 +0000415bool SimplePictureRenderer::render(const SkString* path, SkBitmap** out) {
keyar@chromium.org9d696c02012-08-07 17:11:33 +0000416 SkASSERT(fCanvas.get() != NULL);
417 SkASSERT(fPicture != NULL);
keyar@chromium.org78a35c52012-08-20 15:03:44 +0000418 if (NULL == fCanvas.get() || NULL == fPicture) {
scroggo@google.com81f9d2e2012-09-20 14:54:21 +0000419 return false;
keyar@chromium.org9d696c02012-08-07 17:11:33 +0000420 }
421
422 fCanvas->drawPicture(*fPicture);
scroggo@google.com9a412522012-09-07 15:21:18 +0000423 fCanvas->flush();
borenet@google.com070d3542012-10-26 13:26:55 +0000424 if (NULL != path) {
commit-bot@chromium.orga3f882c2013-12-13 20:52:36 +0000425 return write(fCanvas, path, fJsonSummaryPtr);
borenet@google.com070d3542012-10-26 13:26:55 +0000426 }
skia.committer@gmail.coma7d8e3e2012-12-19 02:01:38 +0000427
edisonn@google.com84f548c2012-12-18 22:24:03 +0000428 if (NULL != out) {
429 *out = SkNEW(SkBitmap);
430 setup_bitmap(*out, fPicture->width(), fPicture->height());
431 fCanvas->readPixels(*out, 0, 0);
432 }
433
borenet@google.com070d3542012-10-26 13:26:55 +0000434 return true;
keyar@chromium.org451bb9f2012-07-26 17:27:57 +0000435}
436
scroggo@google.com0a049b82012-11-02 22:01:26 +0000437SkString SimplePictureRenderer::getConfigNameInternal() {
438 return SkString("simple");
439}
440
scroggo@google.comacfb30e2012-09-18 14:32:35 +0000441///////////////////////////////////////////////////////////////////////////////////////////////
442
keyar@chromium.org451bb9f2012-07-26 17:27:57 +0000443TiledPictureRenderer::TiledPictureRenderer()
scroggo@google.coma62da2f2012-11-02 21:28:12 +0000444 : fTileWidth(kDefaultTileWidth)
rileya@google.comb947b912012-08-29 17:35:07 +0000445 , fTileHeight(kDefaultTileHeight)
rileya@google.coma04dc022012-09-10 19:01:38 +0000446 , fTileWidthPercentage(0.0)
rileya@google.comb947b912012-08-29 17:35:07 +0000447 , fTileHeightPercentage(0.0)
scroggo@google.comcbcef702012-12-13 22:09:28 +0000448 , fTileMinPowerOf2Width(0)
449 , fCurrentTileOffset(-1)
450 , fTilesX(0)
451 , fTilesY(0) { }
keyar@chromium.org451bb9f2012-07-26 17:27:57 +0000452
keyar@chromium.org9d696c02012-08-07 17:11:33 +0000453void TiledPictureRenderer::init(SkPicture* pict) {
454 SkASSERT(pict != NULL);
scroggo@google.comacfb30e2012-09-18 14:32:35 +0000455 SkASSERT(0 == fTileRects.count());
456 if (NULL == pict || fTileRects.count() != 0) {
keyar@chromium.org9d696c02012-08-07 17:11:33 +0000457 return;
458 }
459
scroggo@google.comacfb30e2012-09-18 14:32:35 +0000460 // Do not call INHERITED::init(), which would create a (potentially large) canvas which is not
461 // used by bench_pictures.
462 fPicture = pict;
junov@chromium.org9313ca42012-11-02 18:11:49 +0000463 fPicture->ref();
scroggo@google.coma62da2f2012-11-02 21:28:12 +0000464 this->buildBBoxHierarchy();
keyar@chromium.orgcc6e5ef2012-07-27 20:09:26 +0000465
466 if (fTileWidthPercentage > 0) {
robertphillips@google.com5d8d1862012-08-15 14:36:41 +0000467 fTileWidth = sk_float_ceil2int(float(fTileWidthPercentage * fPicture->width() / 100));
keyar@chromium.orgcc6e5ef2012-07-27 20:09:26 +0000468 }
469 if (fTileHeightPercentage > 0) {
robertphillips@google.com5d8d1862012-08-15 14:36:41 +0000470 fTileHeight = sk_float_ceil2int(float(fTileHeightPercentage * fPicture->height() / 100));
keyar@chromium.orgcc6e5ef2012-07-27 20:09:26 +0000471 }
472
keyar@chromium.orgf4959ab2012-08-23 20:53:25 +0000473 if (fTileMinPowerOf2Width > 0) {
474 this->setupPowerOf2Tiles();
475 } else {
476 this->setupTiles();
477 }
scroggo@google.comcbcef702012-12-13 22:09:28 +0000478 fCanvas.reset(this->setupCanvas(fTileWidth, fTileHeight));
479 // Initialize to -1 so that the first call to nextTile will set this up to draw tile 0 on the
480 // first call to drawCurrentTile.
481 fCurrentTileOffset = -1;
keyar@chromium.org451bb9f2012-07-26 17:27:57 +0000482}
483
keyar@chromium.org9d696c02012-08-07 17:11:33 +0000484void TiledPictureRenderer::end() {
scroggo@google.combcdf2ec2012-09-20 14:42:33 +0000485 fTileRects.reset();
keyar@chromium.org9d696c02012-08-07 17:11:33 +0000486 this->INHERITED::end();
keyar@chromium.org451bb9f2012-07-26 17:27:57 +0000487}
488
keyar@chromium.org9d696c02012-08-07 17:11:33 +0000489void TiledPictureRenderer::setupTiles() {
scroggo@google.comc0d5e542012-12-13 21:40:48 +0000490 // Only use enough tiles to cover the viewport
491 const int width = this->getViewWidth();
492 const int height = this->getViewHeight();
493
scroggo@google.comcbcef702012-12-13 22:09:28 +0000494 fTilesX = fTilesY = 0;
scroggo@google.comc0d5e542012-12-13 21:40:48 +0000495 for (int tile_y_start = 0; tile_y_start < height; tile_y_start += fTileHeight) {
scroggo@google.comcbcef702012-12-13 22:09:28 +0000496 fTilesY++;
scroggo@google.comc0d5e542012-12-13 21:40:48 +0000497 for (int tile_x_start = 0; tile_x_start < width; tile_x_start += fTileWidth) {
scroggo@google.comcbcef702012-12-13 22:09:28 +0000498 if (0 == tile_y_start) {
499 // Only count tiles in the X direction on the first pass.
500 fTilesX++;
501 }
scroggo@google.comacfb30e2012-09-18 14:32:35 +0000502 *fTileRects.append() = SkRect::MakeXYWH(SkIntToScalar(tile_x_start),
503 SkIntToScalar(tile_y_start),
504 SkIntToScalar(fTileWidth),
505 SkIntToScalar(fTileHeight));
keyar@chromium.orgf4959ab2012-08-23 20:53:25 +0000506 }
507 }
508}
509
scroggo@google.comcbcef702012-12-13 22:09:28 +0000510bool TiledPictureRenderer::tileDimensions(int &x, int &y) {
511 if (fTileRects.count() == 0 || NULL == fPicture) {
512 return false;
513 }
514 x = fTilesX;
515 y = fTilesY;
516 return true;
517}
518
keyar@chromium.orgf4959ab2012-08-23 20:53:25 +0000519// The goal of the powers of two tiles is to minimize the amount of wasted tile
520// space in the width-wise direction and then minimize the number of tiles. The
521// constraints are that every tile must have a pixel width that is a power of
522// two and also be of some minimal width (that is also a power of two).
523//
scroggo@google.com58b4ead2012-08-31 16:15:22 +0000524// This is solved by first taking our picture size and rounding it up to the
keyar@chromium.orgf4959ab2012-08-23 20:53:25 +0000525// multiple of the minimal width. The binary representation of this rounded
526// value gives us the tiles we need: a bit of value one means we need a tile of
527// that size.
528void TiledPictureRenderer::setupPowerOf2Tiles() {
scroggo@google.comc0d5e542012-12-13 21:40:48 +0000529 // Only use enough tiles to cover the viewport
530 const int width = this->getViewWidth();
531 const int height = this->getViewHeight();
532
533 int rounded_value = width;
534 if (width % fTileMinPowerOf2Width != 0) {
535 rounded_value = width - (width % fTileMinPowerOf2Width) + fTileMinPowerOf2Width;
keyar@chromium.orgf4959ab2012-08-23 20:53:25 +0000536 }
537
reed@google.come15b2f52013-12-18 04:59:26 +0000538 int num_bits = SkScalarCeilToInt(scalar_log2(SkIntToScalar(width)));
keyar@chromium.orgf4959ab2012-08-23 20:53:25 +0000539 int largest_possible_tile_size = 1 << num_bits;
540
scroggo@google.comcbcef702012-12-13 22:09:28 +0000541 fTilesX = fTilesY = 0;
keyar@chromium.orgf4959ab2012-08-23 20:53:25 +0000542 // The tile height is constant for a particular picture.
scroggo@google.comc0d5e542012-12-13 21:40:48 +0000543 for (int tile_y_start = 0; tile_y_start < height; tile_y_start += fTileHeight) {
scroggo@google.comcbcef702012-12-13 22:09:28 +0000544 fTilesY++;
keyar@chromium.orgf4959ab2012-08-23 20:53:25 +0000545 int tile_x_start = 0;
546 int current_width = largest_possible_tile_size;
scroggo@google.comacfb30e2012-09-18 14:32:35 +0000547 // Set fTileWidth to be the width of the widest tile, so that each canvas is large enough
548 // to draw each tile.
549 fTileWidth = current_width;
keyar@chromium.orgf4959ab2012-08-23 20:53:25 +0000550
551 while (current_width >= fTileMinPowerOf2Width) {
552 // It is very important this is a bitwise AND.
553 if (current_width & rounded_value) {
scroggo@google.comcbcef702012-12-13 22:09:28 +0000554 if (0 == tile_y_start) {
555 // Only count tiles in the X direction on the first pass.
556 fTilesX++;
557 }
scroggo@google.comacfb30e2012-09-18 14:32:35 +0000558 *fTileRects.append() = SkRect::MakeXYWH(SkIntToScalar(tile_x_start),
559 SkIntToScalar(tile_y_start),
560 SkIntToScalar(current_width),
561 SkIntToScalar(fTileHeight));
keyar@chromium.orgf4959ab2012-08-23 20:53:25 +0000562 tile_x_start += current_width;
563 }
564
565 current_width >>= 1;
keyar@chromium.org451bb9f2012-07-26 17:27:57 +0000566 }
567 }
568}
569
scroggo@google.combcdf2ec2012-09-20 14:42:33 +0000570/**
571 * Draw the specified playback to the canvas translated to rectangle provided, so that this mini
572 * canvas represents the rectangle's portion of the overall picture.
573 * Saves and restores so that the initial clip and matrix return to their state before this function
574 * is called.
575 */
576template<class T>
577static void DrawTileToCanvas(SkCanvas* canvas, const SkRect& tileRect, T* playback) {
578 int saveCount = canvas->save();
scroggo@google.com82ec0b02012-12-17 19:25:54 +0000579 // Translate so that we draw the correct portion of the picture.
580 // Perform a postTranslate so that the scaleFactor does not interfere with the positioning.
581 SkMatrix mat(canvas->getTotalMatrix());
582 mat.postTranslate(-tileRect.fLeft, -tileRect.fTop);
583 canvas->setMatrix(mat);
scroggo@google.combcdf2ec2012-09-20 14:42:33 +0000584 playback->draw(canvas);
585 canvas->restoreToCount(saveCount);
586 canvas->flush();
keyar@chromium.org451bb9f2012-07-26 17:27:57 +0000587}
588
scroggo@google.com58b4ead2012-08-31 16:15:22 +0000589///////////////////////////////////////////////////////////////////////////////////////////////
scroggo@google.combcdf2ec2012-09-20 14:42:33 +0000590
commit-bot@chromium.orga3f882c2013-12-13 20:52:36 +0000591/**
592 * Copies the entirety of the src bitmap (typically a tile) into a portion of the dst bitmap.
593 * If the src bitmap is too large to fit within the dst bitmap after the x and y
594 * offsets have been applied, any excess will be ignored (so only the top-left portion of the
595 * src bitmap will be copied).
596 *
597 * @param src source bitmap
598 * @param dst destination bitmap
599 * @param xOffset x-offset within destination bitmap
600 * @param yOffset y-offset within destination bitmap
601 */
602static void bitmapCopyAtOffset(const SkBitmap& src, SkBitmap* dst,
603 int xOffset, int yOffset) {
604 for (int y = 0; y <src.height() && y + yOffset < dst->height() ; y++) {
605 for (int x = 0; x < src.width() && x + xOffset < dst->width() ; x++) {
606 *dst->getAddr32(xOffset + x, yOffset + y) = *src.getAddr32(x, y);
edisonn@google.com84f548c2012-12-18 22:24:03 +0000607 }
608 }
609}
610
scroggo@google.comcbcef702012-12-13 22:09:28 +0000611bool TiledPictureRenderer::nextTile(int &i, int &j) {
612 if (++fCurrentTileOffset < fTileRects.count()) {
613 i = fCurrentTileOffset % fTilesX;
614 j = fCurrentTileOffset / fTilesX;
615 return true;
616 }
617 return false;
618}
619
620void TiledPictureRenderer::drawCurrentTile() {
621 SkASSERT(fCurrentTileOffset >= 0 && fCurrentTileOffset < fTileRects.count());
622 DrawTileToCanvas(fCanvas, fTileRects[fCurrentTileOffset], fPicture);
623}
624
edisonn@google.com84f548c2012-12-18 22:24:03 +0000625bool TiledPictureRenderer::render(const SkString* path, SkBitmap** out) {
scroggo@google.comacfb30e2012-09-18 14:32:35 +0000626 SkASSERT(fPicture != NULL);
627 if (NULL == fPicture) {
scroggo@google.com81f9d2e2012-09-20 14:54:21 +0000628 return false;
scroggo@google.comacfb30e2012-09-18 14:32:35 +0000629 }
630
edisonn@google.com84f548c2012-12-18 22:24:03 +0000631 SkBitmap bitmap;
632 if (out){
633 *out = SkNEW(SkBitmap);
634 setup_bitmap(*out, fPicture->width(), fPicture->height());
635 setup_bitmap(&bitmap, fTileWidth, fTileHeight);
636 }
scroggo@google.coma62da2f2012-11-02 21:28:12 +0000637 bool success = true;
638 for (int i = 0; i < fTileRects.count(); ++i) {
scroggo@google.comcbcef702012-12-13 22:09:28 +0000639 DrawTileToCanvas(fCanvas, fTileRects[i], fPicture);
scroggo@google.coma62da2f2012-11-02 21:28:12 +0000640 if (NULL != path) {
commit-bot@chromium.orga3f882c2013-12-13 20:52:36 +0000641 success &= writeAppendNumber(fCanvas, path, i, fJsonSummaryPtr);
scroggo@google.com58b4ead2012-08-31 16:15:22 +0000642 }
edisonn@google.com84f548c2012-12-18 22:24:03 +0000643 if (NULL != out) {
644 if (fCanvas->readPixels(&bitmap, 0, 0)) {
commit-bot@chromium.orga3f882c2013-12-13 20:52:36 +0000645 // Add this tile to the entire bitmap.
646 bitmapCopyAtOffset(bitmap, *out, SkScalarFloorToInt(fTileRects[i].left()),
647 SkScalarFloorToInt(fTileRects[i].top()));
edisonn@google.com84f548c2012-12-18 22:24:03 +0000648 } else {
649 success = false;
650 }
651 }
keyar@chromium.org163b5672012-08-01 17:53:29 +0000652 }
scroggo@google.coma62da2f2012-11-02 21:28:12 +0000653 return success;
keyar@chromium.org163b5672012-08-01 17:53:29 +0000654}
655
scroggo@google.combcdf2ec2012-09-20 14:42:33 +0000656SkCanvas* TiledPictureRenderer::setupCanvas(int width, int height) {
657 SkCanvas* canvas = this->INHERITED::setupCanvas(width, height);
658 SkASSERT(fPicture != NULL);
scroggo@google.com82ec0b02012-12-17 19:25:54 +0000659 // Clip the tile to an area that is completely inside both the SkPicture and the viewport. This
660 // is mostly important for tiles on the right and bottom edges as they may go over this area and
661 // the picture may have some commands that draw outside of this area and so should not actually
662 // be written.
663 // Uses a clipRegion so that it will be unaffected by the scale factor, which may have been set
664 // by INHERITED::setupCanvas.
665 SkRegion clipRegion;
666 clipRegion.setRect(0, 0, this->getViewWidth(), this->getViewHeight());
667 canvas->clipRegion(clipRegion);
scroggo@google.combcdf2ec2012-09-20 14:42:33 +0000668 return canvas;
669}
scroggo@google.com0a049b82012-11-02 22:01:26 +0000670
671SkString TiledPictureRenderer::getConfigNameInternal() {
672 SkString name;
673 if (fTileMinPowerOf2Width > 0) {
674 name.append("pow2tile_");
675 name.appendf("%i", fTileMinPowerOf2Width);
676 } else {
677 name.append("tile_");
678 if (fTileWidthPercentage > 0) {
679 name.appendf("%.f%%", fTileWidthPercentage);
680 } else {
681 name.appendf("%i", fTileWidth);
682 }
683 }
684 name.append("x");
685 if (fTileHeightPercentage > 0) {
686 name.appendf("%.f%%", fTileHeightPercentage);
687 } else {
688 name.appendf("%i", fTileHeight);
689 }
690 return name;
691}
692
scroggo@google.coma62da2f2012-11-02 21:28:12 +0000693///////////////////////////////////////////////////////////////////////////////////////////////
694
695// Holds all of the information needed to draw a set of tiles.
696class CloneData : public SkRunnable {
697
698public:
699 CloneData(SkPicture* clone, SkCanvas* canvas, SkTDArray<SkRect>& rects, int start, int end,
commit-bot@chromium.orga3f882c2013-12-13 20:52:36 +0000700 SkRunnable* done, ImageResultsSummary* jsonSummaryPtr)
scroggo@google.coma62da2f2012-11-02 21:28:12 +0000701 : fClone(clone)
702 , fCanvas(canvas)
703 , fPath(NULL)
704 , fRects(rects)
705 , fStart(start)
706 , fEnd(end)
707 , fSuccess(NULL)
commit-bot@chromium.orga3f882c2013-12-13 20:52:36 +0000708 , fDone(done)
709 , fJsonSummaryPtr(jsonSummaryPtr) {
scroggo@google.coma62da2f2012-11-02 21:28:12 +0000710 SkASSERT(fDone != NULL);
711 }
712
713 virtual void run() SK_OVERRIDE {
714 SkGraphics::SetTLSFontCacheLimit(1024 * 1024);
edisonn@google.com84f548c2012-12-18 22:24:03 +0000715
716 SkBitmap bitmap;
717 if (fBitmap != NULL) {
718 // All tiles are the same size.
jvanverth@google.com9c4e5ac2013-01-07 18:41:28 +0000719 setup_bitmap(&bitmap, SkScalarFloorToInt(fRects[0].width()), SkScalarFloorToInt(fRects[0].height()));
edisonn@google.com84f548c2012-12-18 22:24:03 +0000720 }
skia.committer@gmail.coma7d8e3e2012-12-19 02:01:38 +0000721
scroggo@google.coma62da2f2012-11-02 21:28:12 +0000722 for (int i = fStart; i < fEnd; i++) {
723 DrawTileToCanvas(fCanvas, fRects[i], fClone);
commit-bot@chromium.orga3f882c2013-12-13 20:52:36 +0000724 if ((fPath != NULL) && !writeAppendNumber(fCanvas, fPath, i, fJsonSummaryPtr)
scroggo@google.coma62da2f2012-11-02 21:28:12 +0000725 && fSuccess != NULL) {
726 *fSuccess = false;
727 // If one tile fails to write to a file, do not continue drawing the rest.
728 break;
729 }
edisonn@google.com84f548c2012-12-18 22:24:03 +0000730 if (fBitmap != NULL) {
731 if (fCanvas->readPixels(&bitmap, 0, 0)) {
732 SkAutoLockPixels alp(*fBitmap);
commit-bot@chromium.orga3f882c2013-12-13 20:52:36 +0000733 bitmapCopyAtOffset(bitmap, fBitmap, SkScalarFloorToInt(fRects[i].left()),
734 SkScalarFloorToInt(fRects[i].top()));
edisonn@google.com84f548c2012-12-18 22:24:03 +0000735 } else {
736 *fSuccess = false;
737 // If one tile fails to read pixels, do not continue drawing the rest.
738 break;
739 }
740 }
scroggo@google.coma62da2f2012-11-02 21:28:12 +0000741 }
742 fDone->run();
743 }
744
745 void setPathAndSuccess(const SkString* path, bool* success) {
746 fPath = path;
747 fSuccess = success;
748 }
749
edisonn@google.com84f548c2012-12-18 22:24:03 +0000750 void setBitmap(SkBitmap* bitmap) {
751 fBitmap = bitmap;
752 }
753
scroggo@google.coma62da2f2012-11-02 21:28:12 +0000754private:
755 // All pointers unowned.
756 SkPicture* fClone; // Picture to draw from. Each CloneData has a unique one which
757 // is threadsafe.
758 SkCanvas* fCanvas; // Canvas to draw to. Reused for each tile.
759 const SkString* fPath; // If non-null, path to write the result to as a PNG.
760 SkTDArray<SkRect>& fRects; // All tiles of the picture.
761 const int fStart; // Range of tiles drawn by this thread.
762 const int fEnd;
763 bool* fSuccess; // Only meaningful if path is non-null. Shared by all threads,
764 // and only set to false upon failure to write to a PNG.
765 SkRunnable* fDone;
edisonn@google.com84f548c2012-12-18 22:24:03 +0000766 SkBitmap* fBitmap;
commit-bot@chromium.orga3f882c2013-12-13 20:52:36 +0000767 ImageResultsSummary* fJsonSummaryPtr;
scroggo@google.coma62da2f2012-11-02 21:28:12 +0000768};
769
770MultiCorePictureRenderer::MultiCorePictureRenderer(int threadCount)
771: fNumThreads(threadCount)
772, fThreadPool(threadCount)
773, fCountdown(threadCount) {
774 // Only need to create fNumThreads - 1 clones, since one thread will use the base
775 // picture.
776 fPictureClones = SkNEW_ARRAY(SkPicture, fNumThreads - 1);
777 fCloneData = SkNEW_ARRAY(CloneData*, fNumThreads);
778}
779
780void MultiCorePictureRenderer::init(SkPicture *pict) {
781 // Set fPicture and the tiles.
782 this->INHERITED::init(pict);
783 for (int i = 0; i < fNumThreads; ++i) {
784 *fCanvasPool.append() = this->setupCanvas(this->getTileWidth(), this->getTileHeight());
785 }
786 // Only need to create fNumThreads - 1 clones, since one thread will use the base picture.
787 fPicture->clone(fPictureClones, fNumThreads - 1);
788 // Populate each thread with the appropriate data.
789 // Group the tiles into nearly equal size chunks, rounding up so we're sure to cover them all.
790 const int chunkSize = (fTileRects.count() + fNumThreads - 1) / fNumThreads;
791
792 for (int i = 0; i < fNumThreads; i++) {
793 SkPicture* pic;
794 if (i == fNumThreads-1) {
795 // The last set will use the original SkPicture.
796 pic = fPicture;
797 } else {
798 pic = &fPictureClones[i];
799 }
800 const int start = i * chunkSize;
801 const int end = SkMin32(start + chunkSize, fTileRects.count());
802 fCloneData[i] = SkNEW_ARGS(CloneData,
commit-bot@chromium.orga3f882c2013-12-13 20:52:36 +0000803 (pic, fCanvasPool[i], fTileRects, start, end, &fCountdown,
804 fJsonSummaryPtr));
scroggo@google.coma62da2f2012-11-02 21:28:12 +0000805 }
806}
807
edisonn@google.com84f548c2012-12-18 22:24:03 +0000808bool MultiCorePictureRenderer::render(const SkString *path, SkBitmap** out) {
scroggo@google.coma62da2f2012-11-02 21:28:12 +0000809 bool success = true;
810 if (path != NULL) {
811 for (int i = 0; i < fNumThreads-1; i++) {
812 fCloneData[i]->setPathAndSuccess(path, &success);
813 }
814 }
815
edisonn@google.com84f548c2012-12-18 22:24:03 +0000816 if (NULL != out) {
817 *out = SkNEW(SkBitmap);
818 setup_bitmap(*out, fPicture->width(), fPicture->height());
819 for (int i = 0; i < fNumThreads; i++) {
820 fCloneData[i]->setBitmap(*out);
821 }
822 } else {
823 for (int i = 0; i < fNumThreads; i++) {
824 fCloneData[i]->setBitmap(NULL);
825 }
826 }
827
scroggo@google.coma62da2f2012-11-02 21:28:12 +0000828 fCountdown.reset(fNumThreads);
829 for (int i = 0; i < fNumThreads; i++) {
830 fThreadPool.add(fCloneData[i]);
831 }
832 fCountdown.wait();
833
834 return success;
835}
836
837void MultiCorePictureRenderer::end() {
838 for (int i = 0; i < fNumThreads - 1; i++) {
839 SkDELETE(fCloneData[i]);
840 fCloneData[i] = NULL;
841 }
842
843 fCanvasPool.unrefAll();
844
845 this->INHERITED::end();
846}
847
848MultiCorePictureRenderer::~MultiCorePictureRenderer() {
849 // Each individual CloneData was deleted in end.
850 SkDELETE_ARRAY(fCloneData);
851 SkDELETE_ARRAY(fPictureClones);
852}
scroggo@google.combcdf2ec2012-09-20 14:42:33 +0000853
scroggo@google.com0a049b82012-11-02 22:01:26 +0000854SkString MultiCorePictureRenderer::getConfigNameInternal() {
855 SkString name = this->INHERITED::getConfigNameInternal();
856 name.appendf("_multi_%i_threads", fNumThreads);
857 return name;
858}
859
scroggo@google.comacfb30e2012-09-18 14:32:35 +0000860///////////////////////////////////////////////////////////////////////////////////////////////
scroggo@google.com9a412522012-09-07 15:21:18 +0000861
862void PlaybackCreationRenderer::setup() {
junov@chromium.org9313ca42012-11-02 18:11:49 +0000863 fReplayer.reset(this->createPicture());
scroggo@google.com82ec0b02012-12-17 19:25:54 +0000864 SkCanvas* recorder = fReplayer->beginRecording(this->getViewWidth(), this->getViewHeight(),
junov@chromium.org9313ca42012-11-02 18:11:49 +0000865 this->recordFlags());
scroggo@google.com82ec0b02012-12-17 19:25:54 +0000866 this->scaleToScaleFactor(recorder);
scroggo@google.com9a412522012-09-07 15:21:18 +0000867 fPicture->draw(recorder);
868}
869
edisonn@google.com84f548c2012-12-18 22:24:03 +0000870bool PlaybackCreationRenderer::render(const SkString*, SkBitmap** out) {
junov@chromium.org9313ca42012-11-02 18:11:49 +0000871 fReplayer->endRecording();
scroggo@google.com81f9d2e2012-09-20 14:54:21 +0000872 // Since this class does not actually render, return false.
873 return false;
keyar@chromium.org451bb9f2012-07-26 17:27:57 +0000874}
875
scroggo@google.com0a049b82012-11-02 22:01:26 +0000876SkString PlaybackCreationRenderer::getConfigNameInternal() {
877 return SkString("playback_creation");
878}
879
junov@chromium.org9313ca42012-11-02 18:11:49 +0000880///////////////////////////////////////////////////////////////////////////////////////////////
881// SkPicture variants for each BBoxHierarchy type
882
883class RTreePicture : public SkPicture {
884public:
885 virtual SkBBoxHierarchy* createBBoxHierarchy() const SK_OVERRIDE{
886 static const int kRTreeMinChildren = 6;
887 static const int kRTreeMaxChildren = 11;
888 SkScalar aspectRatio = SkScalarDiv(SkIntToScalar(fWidth),
889 SkIntToScalar(fHeight));
sglez@google.com8c902122013-08-30 17:27:47 +0000890 bool sortDraws = false;
junov@chromium.org9313ca42012-11-02 18:11:49 +0000891 return SkRTree::Create(kRTreeMinChildren, kRTreeMaxChildren,
sglez@google.com8c902122013-08-30 17:27:47 +0000892 aspectRatio, sortDraws);
junov@chromium.org9313ca42012-11-02 18:11:49 +0000893 }
894};
895
896SkPicture* PictureRenderer::createPicture() {
897 switch (fBBoxHierarchyType) {
898 case kNone_BBoxHierarchyType:
899 return SkNEW(SkPicture);
commit-bot@chromium.orgc22d1392014-02-03 18:08:33 +0000900 case kQuadTree_BBoxHierarchyType:
901 return SkNEW_ARGS(SkQuadTreePicture, (SkIRect::MakeWH(fPicture->width(),
902 fPicture->height())));
junov@chromium.org9313ca42012-11-02 18:11:49 +0000903 case kRTree_BBoxHierarchyType:
904 return SkNEW(RTreePicture);
junov@chromium.org7b537062012-11-06 18:58:43 +0000905 case kTileGrid_BBoxHierarchyType:
junov@chromium.org29b19e52013-02-27 18:35:16 +0000906 return SkNEW_ARGS(SkTileGridPicture, (fPicture->width(),
907 fPicture->height(), fGridInfo));
junov@chromium.org9313ca42012-11-02 18:11:49 +0000908 }
909 SkASSERT(0); // invalid bbhType
910 return NULL;
keyar@chromium.org451bb9f2012-07-26 17:27:57 +0000911}
junov@chromium.org9313ca42012-11-02 18:11:49 +0000912
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000913///////////////////////////////////////////////////////////////////////////////
914
915class GatherRenderer : public PictureRenderer {
916public:
edisonn@google.com84f548c2012-12-18 22:24:03 +0000917 virtual bool render(const SkString* path, SkBitmap** out = NULL)
918 SK_OVERRIDE {
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000919 SkRect bounds = SkRect::MakeWH(SkIntToScalar(fPicture->width()),
920 SkIntToScalar(fPicture->height()));
921 SkData* data = SkPictureUtils::GatherPixelRefs(fPicture, bounds);
922 SkSafeUnref(data);
skia.committer@gmail.comc7b4be72012-12-11 02:01:20 +0000923
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000924 return NULL == path; // we don't have anything to write
925 }
skia.committer@gmail.comc7b4be72012-12-11 02:01:20 +0000926
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000927private:
928 virtual SkString getConfigNameInternal() SK_OVERRIDE {
929 return SkString("gather_pixelrefs");
930 }
931};
932
933PictureRenderer* CreateGatherPixelRefsRenderer() {
934 return SkNEW(GatherRenderer);
935}
skia.committer@gmail.comc3d7d902012-11-30 02:01:24 +0000936
reed@google.com5a34fd32012-12-10 16:05:09 +0000937///////////////////////////////////////////////////////////////////////////////
938
939class PictureCloneRenderer : public PictureRenderer {
940public:
edisonn@google.com84f548c2012-12-18 22:24:03 +0000941 virtual bool render(const SkString* path, SkBitmap** out = NULL)
942 SK_OVERRIDE {
reed@google.com5a34fd32012-12-10 16:05:09 +0000943 for (int i = 0; i < 100; ++i) {
944 SkPicture* clone = fPicture->clone();
945 SkSafeUnref(clone);
946 }
skia.committer@gmail.comc7b4be72012-12-11 02:01:20 +0000947
reed@google.com5a34fd32012-12-10 16:05:09 +0000948 return NULL == path; // we don't have anything to write
949 }
skia.committer@gmail.comc7b4be72012-12-11 02:01:20 +0000950
reed@google.com5a34fd32012-12-10 16:05:09 +0000951private:
952 virtual SkString getConfigNameInternal() SK_OVERRIDE {
953 return SkString("picture_clone");
954 }
955};
956
957PictureRenderer* CreatePictureCloneRenderer() {
958 return SkNEW(PictureCloneRenderer);
959}
960
junov@chromium.org9313ca42012-11-02 18:11:49 +0000961} // namespace sk_tools