blob: 13b60ecb097da7f485599ab6db83d59290bb0c8c [file] [log] [blame]
caryclark@google.com411bb722012-11-06 21:29:16 +00001/*
keyar@chromium.org451bb9f2012-07-26 17:27:57 +00002 * Copyright 2012 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#ifndef PictureRenderer_DEFINED
9#define PictureRenderer_DEFINED
scroggo@google.coma62da2f2012-11-02 21:28:12 +000010
scroggo@google.com161e1ba2013-03-04 16:41:06 +000011#include "SkCanvas.h"
caryclark@google.coma3622372012-11-06 21:26:13 +000012#include "SkDrawFilter.h"
kelvinly4d1a3642014-06-26 11:26:40 -070013#include "SkJSONCPP.h"
keyar@chromium.orgf4959ab2012-08-23 20:53:25 +000014#include "SkMath.h"
reed@google.comea6a3062012-11-06 22:14:54 +000015#include "SkPaint.h"
scroggo@google.com9a412522012-09-07 15:21:18 +000016#include "SkPicture.h"
robertphillips@google.com770963f2014-04-18 18:04:41 +000017#include "SkPictureRecorder.h"
scroggo@google.comacfb30e2012-09-18 14:32:35 +000018#include "SkRect.h"
keyar@chromium.org451bb9f2012-07-26 17:27:57 +000019#include "SkRefCnt.h"
scroggo@google.com9a412522012-09-07 15:21:18 +000020#include "SkString.h"
scroggo@google.coma62da2f2012-11-02 21:28:12 +000021#include "SkTDArray.h"
scroggo@google.coma62da2f2012-11-02 21:28:12 +000022#include "SkTypes.h"
keyar@chromium.org451bb9f2012-07-26 17:27:57 +000023
keyar@chromium.org06125642012-08-20 15:03:33 +000024#if SK_SUPPORT_GPU
25#include "GrContextFactory.h"
26#include "GrContext.h"
27#endif
28
commit-bot@chromium.org90c0fbd2014-05-09 03:18:41 +000029#include "image_expectations.h"
30
keyar@chromium.org451bb9f2012-07-26 17:27:57 +000031class SkBitmap;
32class SkCanvas;
robertphillips@google.com6177e692013-02-28 20:16:25 +000033class SkGLContextHelper;
scroggo@google.coma62da2f2012-11-02 21:28:12 +000034class SkThread;
keyar@chromium.org451bb9f2012-07-26 17:27:57 +000035
36namespace sk_tools {
37
scroggo@google.comcbcef702012-12-13 22:09:28 +000038class TiledPictureRenderer;
39
keyar@chromium.org451bb9f2012-07-26 17:27:57 +000040class PictureRenderer : public SkRefCnt {
scroggo@google.comcbcef702012-12-13 22:09:28 +000041
keyar@chromium.org451bb9f2012-07-26 17:27:57 +000042public:
keyar@chromium.orgc81686c2012-08-20 15:04:04 +000043 enum SkDeviceTypes {
scroggo@google.com0556ea02013-02-08 19:38:21 +000044#if SK_ANGLE
45 kAngle_DeviceType,
46#endif
rmistry@google.com6ab96732014-01-06 18:37:24 +000047#if SK_MESA
48 kMesa_DeviceType,
49#endif
keyar@chromium.orgc81686c2012-08-20 15:04:04 +000050 kBitmap_DeviceType,
51#if SK_SUPPORT_GPU
scroggo@google.com0556ea02013-02-08 19:38:21 +000052 kGPU_DeviceType,
commit-bot@chromium.org0fd52702014-03-07 18:41:14 +000053 kNVPR_DeviceType,
keyar@chromium.orgc81686c2012-08-20 15:04:04 +000054#endif
55 };
56
junov@chromium.org9313ca42012-11-02 18:11:49 +000057 enum BBoxHierarchyType {
58 kNone_BBoxHierarchyType = 0,
commit-bot@chromium.orgc22d1392014-02-03 18:08:33 +000059 kQuadTree_BBoxHierarchyType,
junov@chromium.org9313ca42012-11-02 18:11:49 +000060 kRTree_BBoxHierarchyType,
junov@chromium.org7b537062012-11-06 18:58:43 +000061 kTileGrid_BBoxHierarchyType,
commit-bot@chromium.orgcdd0f922014-03-11 17:27:07 +000062
63 kLast_BBoxHierarchyType = kTileGrid_BBoxHierarchyType,
junov@chromium.org9313ca42012-11-02 18:11:49 +000064 };
65
caryclark@google.coma3622372012-11-06 21:26:13 +000066 // this uses SkPaint::Flags as a base and adds additional flags
67 enum DrawFilterFlags {
68 kNone_DrawFilterFlag = 0,
reed@google.com881b10b2013-05-22 14:03:45 +000069 kHinting_DrawFilterFlag = 0x10000, // toggles between no hinting and normal hinting
70 kSlightHinting_DrawFilterFlag = 0x20000, // toggles between slight and normal hinting
71 kAAClip_DrawFilterFlag = 0x40000, // toggles between soft and hard clip
humper@google.com387db0a2013-07-09 14:13:04 +000072 kMaskFilter_DrawFilterFlag = 0x80000, // toggles on/off mask filters (e.g., blurs)
caryclark@google.coma3622372012-11-06 21:26:13 +000073 };
74
robertphillips@google.com49149312013-07-03 15:34:35 +000075 SK_COMPILE_ASSERT(!(kMaskFilter_DrawFilterFlag & SkPaint::kAllFlags), maskfilter_flag_must_be_greater);
caryclark@google.coma3622372012-11-06 21:26:13 +000076 SK_COMPILE_ASSERT(!(kHinting_DrawFilterFlag & SkPaint::kAllFlags),
77 hinting_flag_must_be_greater);
78 SK_COMPILE_ASSERT(!(kSlightHinting_DrawFilterFlag & SkPaint::kAllFlags),
79 slight_hinting_flag_must_be_greater);
80
scroggo@google.coma62da2f2012-11-02 21:28:12 +000081 /**
82 * Called with each new SkPicture to render.
commit-bot@chromium.orgf5e315c2014-03-19 17:26:07 +000083 *
84 * @param pict The SkPicture to render.
commit-bot@chromium.org3f045172014-05-15 15:10:48 +000085 * @param writePath The output directory within which this renderer should write all images,
86 * or NULL if this renderer should not write all images.
87 * @param mismatchPath The output directory within which this renderer should write any images
88 * which do not match expectations, or NULL if this renderer should not write mismatches.
commit-bot@chromium.orgf5e315c2014-03-19 17:26:07 +000089 * @param inputFilename The name of the input file we are rendering.
90 * @param useChecksumBasedFilenames Whether to use checksum-based filenames when writing
91 * bitmap images to disk.
scroggo@google.coma62da2f2012-11-02 21:28:12 +000092 */
commit-bot@chromium.org3f045172014-05-15 15:10:48 +000093 virtual void init(SkPicture* pict, const SkString* writePath, const SkString* mismatchPath,
commit-bot@chromium.orgf5e315c2014-03-19 17:26:07 +000094 const SkString* inputFilename, bool useChecksumBasedFilenames);
scroggo@google.com9a412522012-09-07 15:21:18 +000095
96 /**
commit-bot@chromium.org8991c672014-05-22 00:36:05 +000097 * TODO(epoger): Temporary hack, while we work on http://skbug.com/2584 ('bench_pictures is
98 * timing reading pixels and writing json files'), such that:
99 * - render_pictures can call this method and continue to work
100 * - any other callers (bench_pictures) will skip calls to write() by default
101 */
102 void enableWrites() { fEnableWrites = true; }
103
104 /**
scroggo@google.comc0d5e542012-12-13 21:40:48 +0000105 * Set the viewport so that only the portion listed gets drawn.
106 */
107 void setViewport(SkISize size) { fViewport = size; }
108
109 /**
scroggo@google.com82ec0b02012-12-17 19:25:54 +0000110 * Set the scale factor at which draw the picture.
111 */
112 void setScaleFactor(SkScalar scale) { fScaleFactor = scale; }
113
114 /**
scroggo@google.com9a412522012-09-07 15:21:18 +0000115 * Perform any setup that should done prior to each iteration of render() which should not be
116 * timed.
117 */
118 virtual void setup() {}
119
120 /**
commit-bot@chromium.orgf5e315c2014-03-19 17:26:07 +0000121 * Perform the work. If this is being called within the context of bench_pictures,
122 * this is the step that will be timed.
123 *
124 * Typically "the work" is rendering an SkPicture into a bitmap, but in some subclasses
125 * it is recording the source SkPicture into another SkPicture.
126 *
commit-bot@chromium.org3f045172014-05-15 15:10:48 +0000127 * If fWritePath has been specified, the result of the work will be written to that dir.
128 * If fMismatchPath has been specified, and the actual image result differs from its
129 * expectation, the result of the work will be written to that dir.
commit-bot@chromium.orgf5e315c2014-03-19 17:26:07 +0000130 *
131 * @param out If non-null, the implementing subclass MAY allocate an SkBitmap, copy the
132 * output image into it, and return it here. (Some subclasses ignore this parameter)
commit-bot@chromium.org3f045172014-05-15 15:10:48 +0000133 * @return bool True if rendering succeeded and, if fWritePath had been specified, the output
commit-bot@chromium.orgf5e315c2014-03-19 17:26:07 +0000134 * was successfully written to a file.
scroggo@google.com9a412522012-09-07 15:21:18 +0000135 */
commit-bot@chromium.orgf5e315c2014-03-19 17:26:07 +0000136 virtual bool render(SkBitmap** out = NULL) = 0;
scroggo@google.com9a412522012-09-07 15:21:18 +0000137
scroggo@google.coma62da2f2012-11-02 21:28:12 +0000138 /**
139 * Called once finished with a particular SkPicture, before calling init again, and before
140 * being done with this Renderer.
141 */
keyar@chromium.org9d696c02012-08-07 17:11:33 +0000142 virtual void end();
scroggo@google.coma62da2f2012-11-02 21:28:12 +0000143
scroggo@google.comcbcef702012-12-13 22:09:28 +0000144 /**
145 * If this PictureRenderer is actually a TiledPictureRender, return a pointer to this as a
146 * TiledPictureRender so its methods can be called.
147 */
148 virtual TiledPictureRenderer* getTiledRenderer() { return NULL; }
149
scroggo@google.com08085f82013-01-28 20:40:24 +0000150 /**
151 * Resets the GPU's state. Does nothing if the backing is raster. For a GPU renderer, calls
commit-bot@chromium.org51c040e2014-03-11 22:58:00 +0000152 * flush, swapBuffers and, if callFinish is true, finish.
scroggo@google.com08085f82013-01-28 20:40:24 +0000153 * @param callFinish Whether to call finish.
154 */
155 void resetState(bool callFinish);
keyar@chromium.org9d696c02012-08-07 17:11:33 +0000156
scroggo@google.com0556ea02013-02-08 19:38:21 +0000157 /**
robertphillips@google.com94d8f1e2013-12-18 17:25:33 +0000158 * Remove all decoded textures from the CPU caches and all uploaded textures
159 * from the GPU.
160 */
161 void purgeTextures();
162
163 /**
scroggo@google.com0556ea02013-02-08 19:38:21 +0000164 * Set the backend type. Returns true on success and false on failure.
165 */
166 bool setDeviceType(SkDeviceTypes deviceType) {
keyar@chromium.orgc81686c2012-08-20 15:04:04 +0000167 fDeviceType = deviceType;
scroggo@google.com0556ea02013-02-08 19:38:21 +0000168#if SK_SUPPORT_GPU
169 // In case this function is called more than once
170 SkSafeUnref(fGrContext);
171 fGrContext = NULL;
172 // Set to Native so it will have an initial value.
173 GrContextFactory::GLContextType glContextType = GrContextFactory::kNative_GLContextType;
174#endif
175 switch(deviceType) {
176 case kBitmap_DeviceType:
177 return true;
178#if SK_SUPPORT_GPU
179 case kGPU_DeviceType:
180 // Already set to GrContextFactory::kNative_GLContextType, above.
181 break;
commit-bot@chromium.org0fd52702014-03-07 18:41:14 +0000182 case kNVPR_DeviceType:
183 glContextType = GrContextFactory::kNVPR_GLContextType;
184 break;
scroggo@google.com0556ea02013-02-08 19:38:21 +0000185#if SK_ANGLE
186 case kAngle_DeviceType:
187 glContextType = GrContextFactory::kANGLE_GLContextType;
188 break;
189#endif
rmistry@google.com6ab96732014-01-06 18:37:24 +0000190#if SK_MESA
191 case kMesa_DeviceType:
192 glContextType = GrContextFactory::kMESA_GLContextType;
193 break;
194#endif
scroggo@google.com0556ea02013-02-08 19:38:21 +0000195#endif
196 default:
197 // Invalid device type.
198 return false;
199 }
200#if SK_SUPPORT_GPU
rmistry05ead8a2014-06-23 06:13:46 -0700201 fGrContext = fGrContextFactory.get(glContextType);
scroggo@google.com0556ea02013-02-08 19:38:21 +0000202 if (NULL == fGrContext) {
203 return false;
204 } else {
205 fGrContext->ref();
206 return true;
207 }
208#endif
keyar@chromium.orgfe6391a2012-08-20 15:03:41 +0000209 }
210
jvanverth@google.comf6a90332013-05-02 12:39:37 +0000211#if SK_SUPPORT_GPU
212 void setSampleCount(int sampleCount) {
213 fSampleCount = sampleCount;
214 }
215#endif
216
caryclark@google.come3e940c2012-11-07 16:42:17 +0000217 void setDrawFilters(DrawFilterFlags const * const filters, const SkString& configName) {
218 memcpy(fDrawFilters, filters, sizeof(fDrawFilters));
caryclark@google.coma3622372012-11-06 21:26:13 +0000219 fDrawFiltersConfig = configName;
220 }
221
junov@chromium.org9313ca42012-11-02 18:11:49 +0000222 void setBBoxHierarchyType(BBoxHierarchyType bbhType) {
223 fBBoxHierarchyType = bbhType;
224 }
225
junov@chromium.orge286e842013-03-13 17:27:16 +0000226 BBoxHierarchyType getBBoxHierarchyType() { return fBBoxHierarchyType; }
227
junov@chromium.org7b537062012-11-06 18:58:43 +0000228 void setGridSize(int width, int height) {
junov@chromium.org29b19e52013-02-27 18:35:16 +0000229 fGridInfo.fTileInterval.set(width, height);
junov@chromium.org7b537062012-11-06 18:58:43 +0000230 }
231
commit-bot@chromium.org205ce482014-05-12 15:37:20 +0000232 void setJsonSummaryPtr(ImageResultsAndExpectations* jsonSummaryPtr) {
commit-bot@chromium.orga3f882c2013-12-13 20:52:36 +0000233 fJsonSummaryPtr = jsonSummaryPtr;
234 }
235
keyar@chromium.orgfe6391a2012-08-20 15:03:41 +0000236 bool isUsingBitmapDevice() {
keyar@chromium.org78a35c52012-08-20 15:03:44 +0000237 return kBitmap_DeviceType == fDeviceType;
keyar@chromium.org4ea96c52012-08-20 15:03:29 +0000238 }
239
scroggo@google.com9a412522012-09-07 15:21:18 +0000240 virtual SkString getPerIterTimeFormat() { return SkString("%.2f"); }
241
242 virtual SkString getNormalTimeFormat() { return SkString("%6.2f"); }
243
scroggo@google.com0a049b82012-11-02 22:01:26 +0000244 /**
245 * Reports the configuration of this PictureRenderer.
246 */
247 SkString getConfigName() {
248 SkString config = this->getConfigNameInternal();
scroggo@google.comc4013c12012-12-13 22:07:08 +0000249 if (!fViewport.isEmpty()) {
250 config.appendf("_viewport_%ix%i", fViewport.width(), fViewport.height());
251 }
commit-bot@chromium.org9de35eb2013-12-20 21:49:33 +0000252 if (fScaleFactor != SK_Scalar1) {
253 config.appendf("_scalar_%f", SkScalarToFloat(fScaleFactor));
254 }
scroggo@google.com0a049b82012-11-02 22:01:26 +0000255 if (kRTree_BBoxHierarchyType == fBBoxHierarchyType) {
256 config.append("_rtree");
commit-bot@chromium.orgc22d1392014-02-03 18:08:33 +0000257 } else if (kQuadTree_BBoxHierarchyType == fBBoxHierarchyType) {
258 config.append("_quadtree");
junov@chromium.org7b537062012-11-06 18:58:43 +0000259 } else if (kTileGrid_BBoxHierarchyType == fBBoxHierarchyType) {
260 config.append("_grid");
kelvinly06fdc692014-06-03 15:43:34 -0700261 config.append("_");
262 config.appendS32(fGridInfo.fTileInterval.width());
263 config.append("x");
264 config.appendS32(fGridInfo.fTileInterval.height());
scroggo@google.com0a049b82012-11-02 22:01:26 +0000265 }
266#if SK_SUPPORT_GPU
robertphillips@google.come8fe4bc2013-02-13 13:26:13 +0000267 switch (fDeviceType) {
scroggo@google.com0556ea02013-02-08 19:38:21 +0000268 case kGPU_DeviceType:
jvanverth@google.comf6a90332013-05-02 12:39:37 +0000269 if (fSampleCount) {
270 config.appendf("_msaa%d", fSampleCount);
271 } else {
272 config.append("_gpu");
273 }
scroggo@google.com0556ea02013-02-08 19:38:21 +0000274 break;
commit-bot@chromium.org0fd52702014-03-07 18:41:14 +0000275 case kNVPR_DeviceType:
276 config.appendf("_nvprmsaa%d", fSampleCount);
277 break;
scroggo@google.com0556ea02013-02-08 19:38:21 +0000278#if SK_ANGLE
279 case kAngle_DeviceType:
280 config.append("_angle");
281 break;
scroggo@google.com0a049b82012-11-02 22:01:26 +0000282#endif
rmistry@google.com6ab96732014-01-06 18:37:24 +0000283#if SK_MESA
284 case kMesa_DeviceType:
285 config.append("_mesa");
286 break;
287#endif
scroggo@google.com0556ea02013-02-08 19:38:21 +0000288 default:
289 // Assume that no extra info means bitmap.
290 break;
291 }
robertphillips@google.come8fe4bc2013-02-13 13:26:13 +0000292#endif
caryclark@google.coma3622372012-11-06 21:26:13 +0000293 config.append(fDrawFiltersConfig.c_str());
scroggo@google.com0a049b82012-11-02 22:01:26 +0000294 return config;
295 }
296
kelvinly4d1a3642014-06-26 11:26:40 -0700297 Json::Value getJSONConfig() {
298 Json::Value result;
299
300 result["mode"] = this->getConfigNameInternal().c_str();
301 result["scale"] = 1.0f;
302 if (SK_Scalar1 != fScaleFactor) {
303 result["scale"] = SkScalarToFloat(fScaleFactor);
304 }
305 if (kRTree_BBoxHierarchyType == fBBoxHierarchyType) {
306 result["bbh"] = "rtree";
307 } else if (kQuadTree_BBoxHierarchyType == fBBoxHierarchyType) {
308 result["bbh"] = "quadtree";
309 } else if (kTileGrid_BBoxHierarchyType == fBBoxHierarchyType) {
310 SkString tmp("grid_");
311 tmp.appendS32(fGridInfo.fTileInterval.width());
312 tmp.append("x");
313 tmp.appendS32(fGridInfo.fTileInterval.height());
314 result["bbh"] = tmp.c_str();
315 }
316#if SK_SUPPORT_GPU
317 SkString tmp;
318 switch (fDeviceType) {
319 case kGPU_DeviceType:
320 if (0 != fSampleCount) {
321 tmp = "msaa";
322 tmp.appendS32(fSampleCount);
323 result["config"] = tmp.c_str();
324 } else {
325 result["config"] = "gpu";
326 }
327 break;
328 case kNVPR_DeviceType:
329 tmp = "nvprmsaa";
330 tmp.appendS32(fSampleCount);
331 result["config"] = tmp.c_str();
332 break;
333#if SK_ANGLE
334 case kAngle_DeviceType:
335 result["config"] = "angle";
336 break;
337#endif
338#if SK_MESA
339 case kMesa_DeviceType:
340 result["config"] = "mesa";
341 break;
342#endif
343 default:
344 // Assume that no extra info means bitmap.
345 break;
346 }
347#endif
348 return result;
349 }
350
keyar@chromium.org4ea96c52012-08-20 15:03:29 +0000351#if SK_SUPPORT_GPU
keyar@chromium.orgfe6391a2012-08-20 15:03:41 +0000352 bool isUsingGpuDevice() {
scroggo@google.com0556ea02013-02-08 19:38:21 +0000353 switch (fDeviceType) {
354 case kGPU_DeviceType:
commit-bot@chromium.org0fd52702014-03-07 18:41:14 +0000355 case kNVPR_DeviceType:
scroggo@google.com0556ea02013-02-08 19:38:21 +0000356 // fall through
357#if SK_ANGLE
358 case kAngle_DeviceType:
rmistry@google.com6ab96732014-01-06 18:37:24 +0000359 // fall through
360#endif
361#if SK_MESA
362 case kMesa_DeviceType:
scroggo@google.com0556ea02013-02-08 19:38:21 +0000363#endif
364 return true;
365 default:
366 return false;
367 }
keyar@chromium.orgfe6391a2012-08-20 15:03:41 +0000368 }
keyar@chromium.org77a55222012-08-20 15:03:47 +0000369
robertphillips@google.com6177e692013-02-28 20:16:25 +0000370 SkGLContextHelper* getGLContext() {
scroggo@google.com0556ea02013-02-08 19:38:21 +0000371 GrContextFactory::GLContextType glContextType
372 = GrContextFactory::kNull_GLContextType;
373 switch(fDeviceType) {
374 case kGPU_DeviceType:
375 glContextType = GrContextFactory::kNative_GLContextType;
376 break;
commit-bot@chromium.org0fd52702014-03-07 18:41:14 +0000377 case kNVPR_DeviceType:
378 glContextType = GrContextFactory::kNVPR_GLContextType;
379 break;
scroggo@google.com0556ea02013-02-08 19:38:21 +0000380#if SK_ANGLE
381 case kAngle_DeviceType:
382 glContextType = GrContextFactory::kANGLE_GLContextType;
383 break;
384#endif
rmistry@google.com6ab96732014-01-06 18:37:24 +0000385#if SK_MESA
386 case kMesa_DeviceType:
387 glContextType = GrContextFactory::kMESA_GLContextType;
388 break;
389#endif
scroggo@google.com0556ea02013-02-08 19:38:21 +0000390 default:
391 return NULL;
keyar@chromium.org77a55222012-08-20 15:03:47 +0000392 }
scroggo@google.com0556ea02013-02-08 19:38:21 +0000393 return fGrContextFactory.getGLContext(glContextType);
keyar@chromium.org77a55222012-08-20 15:03:47 +0000394 }
robertphillips@google.com163c84b2012-09-13 15:40:37 +0000395
396 GrContext* getGrContext() {
397 return fGrContext;
398 }
keyar@chromium.org4ea96c52012-08-20 15:03:29 +0000399#endif
400
commit-bot@chromium.org145d1c02014-03-16 19:46:36 +0000401 SkCanvas* getCanvas() {
402 return fCanvas;
403 }
404
commit-bot@chromium.org8ddc26b2014-03-31 17:55:12 +0000405 SkPicture* getPicture() {
406 return fPicture;
407 }
408
keyar@chromium.org02dfb122012-08-20 15:03:36 +0000409 PictureRenderer()
robertphillips@google.com84b18c72014-04-13 19:09:42 +0000410 : fJsonSummaryPtr(NULL)
keyar@chromium.org06125642012-08-20 15:03:33 +0000411 , fDeviceType(kBitmap_DeviceType)
commit-bot@chromium.org8991c672014-05-22 00:36:05 +0000412 , fEnableWrites(false)
junov@chromium.org50ff9bd2012-11-02 19:16:22 +0000413 , fBBoxHierarchyType(kNone_BBoxHierarchyType)
scroggo@google.com06d6ac62013-02-08 21:16:19 +0000414 , fScaleFactor(SK_Scalar1)
keyar@chromium.org06125642012-08-20 15:03:33 +0000415#if SK_SUPPORT_GPU
scroggo@google.com0556ea02013-02-08 19:38:21 +0000416 , fGrContext(NULL)
jvanverth@google.comf6a90332013-05-02 12:39:37 +0000417 , fSampleCount(0)
keyar@chromium.org06125642012-08-20 15:03:33 +0000418#endif
caryclark@google.come3e940c2012-11-07 16:42:17 +0000419 {
robertphillips@google.com7ae918e2013-03-02 17:45:27 +0000420 fGridInfo.fMargin.setEmpty();
421 fGridInfo.fOffset.setZero();
422 fGridInfo.fTileInterval.set(1, 1);
caryclark@google.come3e940c2012-11-07 16:42:17 +0000423 sk_bzero(fDrawFilters, sizeof(fDrawFilters));
scroggo@google.comc0d5e542012-12-13 21:40:48 +0000424 fViewport.set(0, 0);
caryclark@google.come3e940c2012-11-07 16:42:17 +0000425 }
keyar@chromium.org06125642012-08-20 15:03:33 +0000426
scroggo@google.com0556ea02013-02-08 19:38:21 +0000427#if SK_SUPPORT_GPU
428 virtual ~PictureRenderer() {
429 SkSafeUnref(fGrContext);
430 }
431#endif
432
keyar@chromium.org9d696c02012-08-07 17:11:33 +0000433protected:
434 SkAutoTUnref<SkCanvas> fCanvas;
robertphillips@google.com84b18c72014-04-13 19:09:42 +0000435 SkAutoTUnref<SkPicture> fPicture;
commit-bot@chromium.orgf5e315c2014-03-19 17:26:07 +0000436 bool fUseChecksumBasedFilenames;
commit-bot@chromium.org205ce482014-05-12 15:37:20 +0000437 ImageResultsAndExpectations* fJsonSummaryPtr;
scroggo@google.comc0d5e542012-12-13 21:40:48 +0000438 SkDeviceTypes fDeviceType;
commit-bot@chromium.org8991c672014-05-22 00:36:05 +0000439 bool fEnableWrites;
scroggo@google.comc0d5e542012-12-13 21:40:48 +0000440 BBoxHierarchyType fBBoxHierarchyType;
441 DrawFilterFlags fDrawFilters[SkDrawFilter::kTypeCount];
442 SkString fDrawFiltersConfig;
commit-bot@chromium.org3f045172014-05-15 15:10:48 +0000443 SkString fWritePath;
444 SkString fMismatchPath;
commit-bot@chromium.orgf5e315c2014-03-19 17:26:07 +0000445 SkString fInputFilename;
commit-bot@chromium.org5fb2ce32014-04-17 23:35:06 +0000446 SkTileGridFactory::TileGridInfo fGridInfo; // used when fBBoxHierarchyType is TileGrid
keyar@chromium.org06125642012-08-20 15:03:33 +0000447
scroggo@google.comc0d5e542012-12-13 21:40:48 +0000448 void buildBBoxHierarchy();
449
450 /**
451 * Return the total width that should be drawn. If the viewport width has been set greater than
452 * 0, this will be the minimum of the current SkPicture's width and the viewport's width.
453 */
454 int getViewWidth();
455
456 /**
457 * Return the total height that should be drawn. If the viewport height has been set greater
458 * than 0, this will be the minimum of the current SkPicture's height and the viewport's height.
459 */
460 int getViewHeight();
461
scroggo@google.com82ec0b02012-12-17 19:25:54 +0000462 /**
463 * Scales the provided canvas to the scale factor set by setScaleFactor.
464 */
465 void scaleToScaleFactor(SkCanvas*);
466
commit-bot@chromium.org5fb2ce32014-04-17 23:35:06 +0000467 SkBBHFactory* getFactory();
robertphillips9f1c2412014-06-09 06:25:34 -0700468 uint32_t recordFlags() const { return 0; }
scroggo@google.comc0d5e542012-12-13 21:40:48 +0000469 SkCanvas* setupCanvas();
470 virtual SkCanvas* setupCanvas(int width, int height);
471
commit-bot@chromium.orgf5e315c2014-03-19 17:26:07 +0000472 /**
473 * Copy src to dest; if src==NULL, set dest to empty string.
474 */
475 static void CopyString(SkString* dest, const SkString* src);
476
keyar@chromium.org9d696c02012-08-07 17:11:33 +0000477private:
scroggo@google.comc0d5e542012-12-13 21:40:48 +0000478 SkISize fViewport;
scroggo@google.com82ec0b02012-12-17 19:25:54 +0000479 SkScalar fScaleFactor;
scroggo@google.com0556ea02013-02-08 19:38:21 +0000480#if SK_SUPPORT_GPU
481 GrContextFactory fGrContextFactory;
482 GrContext* fGrContext;
jvanverth@google.comf6a90332013-05-02 12:39:37 +0000483 int fSampleCount;
scroggo@google.com0556ea02013-02-08 19:38:21 +0000484#endif
scroggo@google.comc0d5e542012-12-13 21:40:48 +0000485
scroggo@google.com0a049b82012-11-02 22:01:26 +0000486 virtual SkString getConfigNameInternal() = 0;
487
keyar@chromium.org9d696c02012-08-07 17:11:33 +0000488 typedef SkRefCnt INHERITED;
keyar@chromium.org451bb9f2012-07-26 17:27:57 +0000489};
490
scroggo@google.com9a412522012-09-07 15:21:18 +0000491/**
492 * This class does not do any rendering, but its render function executes recording, which we want
493 * to time.
494 */
495class RecordPictureRenderer : public PictureRenderer {
commit-bot@chromium.orgf5e315c2014-03-19 17:26:07 +0000496 virtual bool render(SkBitmap** out = NULL) SK_OVERRIDE;
scroggo@google.com9a412522012-09-07 15:21:18 +0000497
498 virtual SkString getPerIterTimeFormat() SK_OVERRIDE { return SkString("%.4f"); }
499
500 virtual SkString getNormalTimeFormat() SK_OVERRIDE { return SkString("%6.4f"); }
scroggo@google.com0a049b82012-11-02 22:01:26 +0000501
djsollen@google.comfd9720c2012-11-06 16:54:40 +0000502protected:
503 virtual SkCanvas* setupCanvas(int width, int height) SK_OVERRIDE;
504
scroggo@google.com0a049b82012-11-02 22:01:26 +0000505private:
506 virtual SkString getConfigNameInternal() SK_OVERRIDE;
scroggo@google.com9a412522012-09-07 15:21:18 +0000507};
508
keyar@chromium.org451bb9f2012-07-26 17:27:57 +0000509class PipePictureRenderer : public PictureRenderer {
keyar@chromium.org163b5672012-08-01 17:53:29 +0000510public:
commit-bot@chromium.orgf5e315c2014-03-19 17:26:07 +0000511 virtual bool render(SkBitmap** out = NULL) SK_OVERRIDE;
keyar@chromium.org9d696c02012-08-07 17:11:33 +0000512
513private:
scroggo@google.com0a049b82012-11-02 22:01:26 +0000514 virtual SkString getConfigNameInternal() SK_OVERRIDE;
515
keyar@chromium.org9d696c02012-08-07 17:11:33 +0000516 typedef PictureRenderer INHERITED;
keyar@chromium.org451bb9f2012-07-26 17:27:57 +0000517};
518
519class SimplePictureRenderer : public PictureRenderer {
keyar@chromium.org163b5672012-08-01 17:53:29 +0000520public:
commit-bot@chromium.org3f045172014-05-15 15:10:48 +0000521 virtual void init(SkPicture* pict, const SkString* writePath, const SkString* mismatchPath,
commit-bot@chromium.orgf5e315c2014-03-19 17:26:07 +0000522 const SkString* inputFilename, bool useChecksumBasedFilenames) SK_OVERRIDE;
junov@chromium.org9313ca42012-11-02 18:11:49 +0000523
commit-bot@chromium.orgf5e315c2014-03-19 17:26:07 +0000524 virtual bool render(SkBitmap** out = NULL) SK_OVERRIDE;
keyar@chromium.org9d696c02012-08-07 17:11:33 +0000525
526private:
scroggo@google.com0a049b82012-11-02 22:01:26 +0000527 virtual SkString getConfigNameInternal() SK_OVERRIDE;
528
keyar@chromium.org9d696c02012-08-07 17:11:33 +0000529 typedef PictureRenderer INHERITED;
keyar@chromium.org451bb9f2012-07-26 17:27:57 +0000530};
531
532class TiledPictureRenderer : public PictureRenderer {
533public:
534 TiledPictureRenderer();
535
commit-bot@chromium.org3f045172014-05-15 15:10:48 +0000536 virtual void init(SkPicture* pict, const SkString* writePath, const SkString* mismatchPath,
commit-bot@chromium.orgf5e315c2014-03-19 17:26:07 +0000537 const SkString* inputFilename, bool useChecksumBasedFilenames) SK_OVERRIDE;
scroggo@google.com81f9d2e2012-09-20 14:54:21 +0000538
scroggo@google.com81f9d2e2012-09-20 14:54:21 +0000539 /**
commit-bot@chromium.orgf5e315c2014-03-19 17:26:07 +0000540 * Renders to tiles, rather than a single canvas.
commit-bot@chromium.org3f045172014-05-15 15:10:48 +0000541 * If fWritePath was provided, a separate file is
scroggo@google.com81f9d2e2012-09-20 14:54:21 +0000542 * created for each tile, named "path0.png", "path1.png", etc.
scroggo@google.com81f9d2e2012-09-20 14:54:21 +0000543 */
commit-bot@chromium.orgf5e315c2014-03-19 17:26:07 +0000544 virtual bool render(SkBitmap** out = NULL) SK_OVERRIDE;
scroggo@google.com81f9d2e2012-09-20 14:54:21 +0000545
keyar@chromium.org9d696c02012-08-07 17:11:33 +0000546 virtual void end() SK_OVERRIDE;
keyar@chromium.org451bb9f2012-07-26 17:27:57 +0000547
keyar@chromium.orgcc6e5ef2012-07-27 20:09:26 +0000548 void setTileWidth(int width) {
549 fTileWidth = width;
550 }
551
552 int getTileWidth() const {
553 return fTileWidth;
554 }
555
556 void setTileHeight(int height) {
557 fTileHeight = height;
558 }
559
560 int getTileHeight() const {
561 return fTileHeight;
562 }
563
564 void setTileWidthPercentage(double percentage) {
565 fTileWidthPercentage = percentage;
566 }
567
keyar@chromium.org163b5672012-08-01 17:53:29 +0000568 double getTileWidthPercentage() const {
keyar@chromium.orgcc6e5ef2012-07-27 20:09:26 +0000569 return fTileWidthPercentage;
570 }
571
572 void setTileHeightPercentage(double percentage) {
573 fTileHeightPercentage = percentage;
574 }
575
keyar@chromium.org163b5672012-08-01 17:53:29 +0000576 double getTileHeightPercentage() const {
keyar@chromium.orgcc6e5ef2012-07-27 20:09:26 +0000577 return fTileHeightPercentage;
578 }
579
keyar@chromium.orgf4959ab2012-08-23 20:53:25 +0000580 void setTileMinPowerOf2Width(int width) {
581 SkASSERT(SkIsPow2(width) && width > 0);
582 if (!SkIsPow2(width) || width <= 0) {
583 return;
584 }
585
586 fTileMinPowerOf2Width = width;
587 }
588
589 int getTileMinPowerOf2Width() const {
590 return fTileMinPowerOf2Width;
591 }
592
scroggo@google.comcbcef702012-12-13 22:09:28 +0000593 virtual TiledPictureRenderer* getTiledRenderer() SK_OVERRIDE { return this; }
594
scroggo@google.com161e1ba2013-03-04 16:41:06 +0000595 virtual bool supportsTimingIndividualTiles() { return true; }
596
scroggo@google.comcbcef702012-12-13 22:09:28 +0000597 /**
598 * Report the number of tiles in the x and y directions. Must not be called before init.
599 * @param x Output parameter identifying the number of tiles in the x direction.
600 * @param y Output parameter identifying the number of tiles in the y direction.
601 * @return True if the tiles have been set up, and x and y are meaningful. If false, x and y are
602 * unmodified.
603 */
604 bool tileDimensions(int& x, int&y);
605
606 /**
607 * Move to the next tile and return its indices. Must be called before calling drawCurrentTile
608 * for the first time.
609 * @param i Output parameter identifying the column of the next tile to be drawn on the next
610 * call to drawNextTile.
611 * @param j Output parameter identifying the row of the next tile to be drawn on the next call
612 * to drawNextTile.
613 * @param True if the tiles have been created and the next tile to be drawn by drawCurrentTile
614 * is within the range of tiles. If false, i and j are unmodified.
615 */
616 bool nextTile(int& i, int& j);
617
618 /**
619 * Render one tile. This will draw the same tile each time it is called until nextTile is
620 * called. The tile rendered will depend on how many calls have been made to nextTile.
621 * It is an error to call this without first calling nextTile, or if nextTile returns false.
622 */
623 void drawCurrentTile();
624
scroggo@google.coma62da2f2012-11-02 21:28:12 +0000625protected:
scroggo@google.coma62da2f2012-11-02 21:28:12 +0000626 SkTDArray<SkRect> fTileRects;
keyar@chromium.org451bb9f2012-07-26 17:27:57 +0000627
scroggo@google.com0a049b82012-11-02 22:01:26 +0000628 virtual SkCanvas* setupCanvas(int width, int height) SK_OVERRIDE;
629 virtual SkString getConfigNameInternal() SK_OVERRIDE;
630
keyar@chromium.org451bb9f2012-07-26 17:27:57 +0000631private:
scroggo@google.comcbcef702012-12-13 22:09:28 +0000632 int fTileWidth;
633 int fTileHeight;
634 double fTileWidthPercentage;
635 double fTileHeightPercentage;
636 int fTileMinPowerOf2Width;
637
638 // These variables are only used for timing individual tiles.
639 // Next tile to draw in fTileRects.
640 int fCurrentTileOffset;
641 // Number of tiles in the x direction.
642 int fTilesX;
643 // Number of tiles in the y direction.
644 int fTilesY;
scroggo@google.combcdf2ec2012-09-20 14:42:33 +0000645
keyar@chromium.org9d696c02012-08-07 17:11:33 +0000646 void setupTiles();
keyar@chromium.orgf4959ab2012-08-23 20:53:25 +0000647 void setupPowerOf2Tiles();
keyar@chromium.org9d696c02012-08-07 17:11:33 +0000648
649 typedef PictureRenderer INHERITED;
keyar@chromium.org451bb9f2012-07-26 17:27:57 +0000650};
651
scroggo@google.com9a412522012-09-07 15:21:18 +0000652/**
653 * This class does not do any rendering, but its render function executes turning an SkPictureRecord
654 * into an SkPicturePlayback, which we want to time.
655 */
656class PlaybackCreationRenderer : public PictureRenderer {
657public:
658 virtual void setup() SK_OVERRIDE;
659
commit-bot@chromium.orgf5e315c2014-03-19 17:26:07 +0000660 virtual bool render(SkBitmap** out = NULL) SK_OVERRIDE;
scroggo@google.com9a412522012-09-07 15:21:18 +0000661
662 virtual SkString getPerIterTimeFormat() SK_OVERRIDE { return SkString("%.4f"); }
663
664 virtual SkString getNormalTimeFormat() SK_OVERRIDE { return SkString("%6.4f"); }
665
666private:
robertphillips@google.com84b18c72014-04-13 19:09:42 +0000667 SkAutoTDelete<SkPictureRecorder> fRecorder;
scroggo@google.com0a049b82012-11-02 22:01:26 +0000668
669 virtual SkString getConfigNameInternal() SK_OVERRIDE;
670
scroggo@google.com9a412522012-09-07 15:21:18 +0000671 typedef PictureRenderer INHERITED;
672};
673
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000674extern PictureRenderer* CreateGatherPixelRefsRenderer();
675
keyar@chromium.org451bb9f2012-07-26 17:27:57 +0000676}
677
678#endif // PictureRenderer_DEFINED