blob: 12ed32e07056172a7df6c740319199eeebaf8664 [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 */
kkinnunen80549fc2014-06-30 06:36:31 -0700166#if SK_SUPPORT_GPU
167 bool setDeviceType(SkDeviceTypes deviceType, GrGLStandard gpuAPI = kNone_GrGLStandard) {
168#else
scroggo@google.com0556ea02013-02-08 19:38:21 +0000169 bool setDeviceType(SkDeviceTypes deviceType) {
kkinnunen80549fc2014-06-30 06:36:31 -0700170#endif
keyar@chromium.orgc81686c2012-08-20 15:04:04 +0000171 fDeviceType = deviceType;
scroggo@google.com0556ea02013-02-08 19:38:21 +0000172#if SK_SUPPORT_GPU
173 // In case this function is called more than once
174 SkSafeUnref(fGrContext);
175 fGrContext = NULL;
176 // Set to Native so it will have an initial value.
177 GrContextFactory::GLContextType glContextType = GrContextFactory::kNative_GLContextType;
178#endif
179 switch(deviceType) {
180 case kBitmap_DeviceType:
181 return true;
182#if SK_SUPPORT_GPU
183 case kGPU_DeviceType:
184 // Already set to GrContextFactory::kNative_GLContextType, above.
185 break;
commit-bot@chromium.org0fd52702014-03-07 18:41:14 +0000186 case kNVPR_DeviceType:
187 glContextType = GrContextFactory::kNVPR_GLContextType;
188 break;
scroggo@google.com0556ea02013-02-08 19:38:21 +0000189#if SK_ANGLE
190 case kAngle_DeviceType:
191 glContextType = GrContextFactory::kANGLE_GLContextType;
192 break;
193#endif
rmistry@google.com6ab96732014-01-06 18:37:24 +0000194#if SK_MESA
195 case kMesa_DeviceType:
196 glContextType = GrContextFactory::kMESA_GLContextType;
197 break;
198#endif
scroggo@google.com0556ea02013-02-08 19:38:21 +0000199#endif
200 default:
201 // Invalid device type.
202 return false;
203 }
204#if SK_SUPPORT_GPU
kkinnunen80549fc2014-06-30 06:36:31 -0700205 fGrContext = fGrContextFactory.get(glContextType, gpuAPI);
scroggo@google.com0556ea02013-02-08 19:38:21 +0000206 if (NULL == fGrContext) {
207 return false;
208 } else {
209 fGrContext->ref();
210 return true;
211 }
212#endif
keyar@chromium.orgfe6391a2012-08-20 15:03:41 +0000213 }
214
jvanverth@google.comf6a90332013-05-02 12:39:37 +0000215#if SK_SUPPORT_GPU
216 void setSampleCount(int sampleCount) {
217 fSampleCount = sampleCount;
218 }
219#endif
220
caryclark@google.come3e940c2012-11-07 16:42:17 +0000221 void setDrawFilters(DrawFilterFlags const * const filters, const SkString& configName) {
222 memcpy(fDrawFilters, filters, sizeof(fDrawFilters));
caryclark@google.coma3622372012-11-06 21:26:13 +0000223 fDrawFiltersConfig = configName;
224 }
225
junov@chromium.org9313ca42012-11-02 18:11:49 +0000226 void setBBoxHierarchyType(BBoxHierarchyType bbhType) {
227 fBBoxHierarchyType = bbhType;
228 }
229
junov@chromium.orge286e842013-03-13 17:27:16 +0000230 BBoxHierarchyType getBBoxHierarchyType() { return fBBoxHierarchyType; }
231
junov@chromium.org7b537062012-11-06 18:58:43 +0000232 void setGridSize(int width, int height) {
junov@chromium.org29b19e52013-02-27 18:35:16 +0000233 fGridInfo.fTileInterval.set(width, height);
junov@chromium.org7b537062012-11-06 18:58:43 +0000234 }
235
commit-bot@chromium.org205ce482014-05-12 15:37:20 +0000236 void setJsonSummaryPtr(ImageResultsAndExpectations* jsonSummaryPtr) {
commit-bot@chromium.orga3f882c2013-12-13 20:52:36 +0000237 fJsonSummaryPtr = jsonSummaryPtr;
238 }
239
keyar@chromium.orgfe6391a2012-08-20 15:03:41 +0000240 bool isUsingBitmapDevice() {
keyar@chromium.org78a35c52012-08-20 15:03:44 +0000241 return kBitmap_DeviceType == fDeviceType;
keyar@chromium.org4ea96c52012-08-20 15:03:29 +0000242 }
243
scroggo@google.com9a412522012-09-07 15:21:18 +0000244 virtual SkString getPerIterTimeFormat() { return SkString("%.2f"); }
245
246 virtual SkString getNormalTimeFormat() { return SkString("%6.2f"); }
247
scroggo@google.com0a049b82012-11-02 22:01:26 +0000248 /**
249 * Reports the configuration of this PictureRenderer.
250 */
251 SkString getConfigName() {
252 SkString config = this->getConfigNameInternal();
scroggo@google.comc4013c12012-12-13 22:07:08 +0000253 if (!fViewport.isEmpty()) {
254 config.appendf("_viewport_%ix%i", fViewport.width(), fViewport.height());
255 }
commit-bot@chromium.org9de35eb2013-12-20 21:49:33 +0000256 if (fScaleFactor != SK_Scalar1) {
257 config.appendf("_scalar_%f", SkScalarToFloat(fScaleFactor));
258 }
scroggo@google.com0a049b82012-11-02 22:01:26 +0000259 if (kRTree_BBoxHierarchyType == fBBoxHierarchyType) {
260 config.append("_rtree");
commit-bot@chromium.orgc22d1392014-02-03 18:08:33 +0000261 } else if (kQuadTree_BBoxHierarchyType == fBBoxHierarchyType) {
262 config.append("_quadtree");
junov@chromium.org7b537062012-11-06 18:58:43 +0000263 } else if (kTileGrid_BBoxHierarchyType == fBBoxHierarchyType) {
264 config.append("_grid");
kelvinly06fdc692014-06-03 15:43:34 -0700265 config.append("_");
266 config.appendS32(fGridInfo.fTileInterval.width());
267 config.append("x");
268 config.appendS32(fGridInfo.fTileInterval.height());
scroggo@google.com0a049b82012-11-02 22:01:26 +0000269 }
270#if SK_SUPPORT_GPU
robertphillips@google.come8fe4bc2013-02-13 13:26:13 +0000271 switch (fDeviceType) {
scroggo@google.com0556ea02013-02-08 19:38:21 +0000272 case kGPU_DeviceType:
jvanverth@google.comf6a90332013-05-02 12:39:37 +0000273 if (fSampleCount) {
274 config.appendf("_msaa%d", fSampleCount);
275 } else {
276 config.append("_gpu");
277 }
scroggo@google.com0556ea02013-02-08 19:38:21 +0000278 break;
commit-bot@chromium.org0fd52702014-03-07 18:41:14 +0000279 case kNVPR_DeviceType:
280 config.appendf("_nvprmsaa%d", fSampleCount);
281 break;
scroggo@google.com0556ea02013-02-08 19:38:21 +0000282#if SK_ANGLE
283 case kAngle_DeviceType:
284 config.append("_angle");
285 break;
scroggo@google.com0a049b82012-11-02 22:01:26 +0000286#endif
rmistry@google.com6ab96732014-01-06 18:37:24 +0000287#if SK_MESA
288 case kMesa_DeviceType:
289 config.append("_mesa");
290 break;
291#endif
scroggo@google.com0556ea02013-02-08 19:38:21 +0000292 default:
293 // Assume that no extra info means bitmap.
294 break;
295 }
robertphillips@google.come8fe4bc2013-02-13 13:26:13 +0000296#endif
caryclark@google.coma3622372012-11-06 21:26:13 +0000297 config.append(fDrawFiltersConfig.c_str());
scroggo@google.com0a049b82012-11-02 22:01:26 +0000298 return config;
299 }
300
kelvinly4d1a3642014-06-26 11:26:40 -0700301 Json::Value getJSONConfig() {
302 Json::Value result;
303
304 result["mode"] = this->getConfigNameInternal().c_str();
305 result["scale"] = 1.0f;
306 if (SK_Scalar1 != fScaleFactor) {
307 result["scale"] = SkScalarToFloat(fScaleFactor);
308 }
309 if (kRTree_BBoxHierarchyType == fBBoxHierarchyType) {
310 result["bbh"] = "rtree";
311 } else if (kQuadTree_BBoxHierarchyType == fBBoxHierarchyType) {
312 result["bbh"] = "quadtree";
313 } else if (kTileGrid_BBoxHierarchyType == fBBoxHierarchyType) {
314 SkString tmp("grid_");
315 tmp.appendS32(fGridInfo.fTileInterval.width());
316 tmp.append("x");
317 tmp.appendS32(fGridInfo.fTileInterval.height());
318 result["bbh"] = tmp.c_str();
319 }
320#if SK_SUPPORT_GPU
321 SkString tmp;
322 switch (fDeviceType) {
323 case kGPU_DeviceType:
324 if (0 != fSampleCount) {
325 tmp = "msaa";
326 tmp.appendS32(fSampleCount);
327 result["config"] = tmp.c_str();
328 } else {
329 result["config"] = "gpu";
330 }
331 break;
332 case kNVPR_DeviceType:
333 tmp = "nvprmsaa";
334 tmp.appendS32(fSampleCount);
335 result["config"] = tmp.c_str();
336 break;
337#if SK_ANGLE
338 case kAngle_DeviceType:
339 result["config"] = "angle";
340 break;
341#endif
342#if SK_MESA
343 case kMesa_DeviceType:
344 result["config"] = "mesa";
345 break;
346#endif
347 default:
348 // Assume that no extra info means bitmap.
349 break;
350 }
351#endif
352 return result;
353 }
354
keyar@chromium.org4ea96c52012-08-20 15:03:29 +0000355#if SK_SUPPORT_GPU
keyar@chromium.orgfe6391a2012-08-20 15:03:41 +0000356 bool isUsingGpuDevice() {
scroggo@google.com0556ea02013-02-08 19:38:21 +0000357 switch (fDeviceType) {
358 case kGPU_DeviceType:
commit-bot@chromium.org0fd52702014-03-07 18:41:14 +0000359 case kNVPR_DeviceType:
scroggo@google.com0556ea02013-02-08 19:38:21 +0000360 // fall through
361#if SK_ANGLE
362 case kAngle_DeviceType:
rmistry@google.com6ab96732014-01-06 18:37:24 +0000363 // fall through
364#endif
365#if SK_MESA
366 case kMesa_DeviceType:
scroggo@google.com0556ea02013-02-08 19:38:21 +0000367#endif
368 return true;
369 default:
370 return false;
371 }
keyar@chromium.orgfe6391a2012-08-20 15:03:41 +0000372 }
keyar@chromium.org77a55222012-08-20 15:03:47 +0000373
robertphillips@google.com6177e692013-02-28 20:16:25 +0000374 SkGLContextHelper* getGLContext() {
scroggo@google.com0556ea02013-02-08 19:38:21 +0000375 GrContextFactory::GLContextType glContextType
376 = GrContextFactory::kNull_GLContextType;
377 switch(fDeviceType) {
378 case kGPU_DeviceType:
379 glContextType = GrContextFactory::kNative_GLContextType;
380 break;
commit-bot@chromium.org0fd52702014-03-07 18:41:14 +0000381 case kNVPR_DeviceType:
382 glContextType = GrContextFactory::kNVPR_GLContextType;
383 break;
scroggo@google.com0556ea02013-02-08 19:38:21 +0000384#if SK_ANGLE
385 case kAngle_DeviceType:
386 glContextType = GrContextFactory::kANGLE_GLContextType;
387 break;
388#endif
rmistry@google.com6ab96732014-01-06 18:37:24 +0000389#if SK_MESA
390 case kMesa_DeviceType:
391 glContextType = GrContextFactory::kMESA_GLContextType;
392 break;
393#endif
scroggo@google.com0556ea02013-02-08 19:38:21 +0000394 default:
395 return NULL;
keyar@chromium.org77a55222012-08-20 15:03:47 +0000396 }
scroggo@google.com0556ea02013-02-08 19:38:21 +0000397 return fGrContextFactory.getGLContext(glContextType);
keyar@chromium.org77a55222012-08-20 15:03:47 +0000398 }
robertphillips@google.com163c84b2012-09-13 15:40:37 +0000399
400 GrContext* getGrContext() {
401 return fGrContext;
402 }
keyar@chromium.org4ea96c52012-08-20 15:03:29 +0000403#endif
404
commit-bot@chromium.org145d1c02014-03-16 19:46:36 +0000405 SkCanvas* getCanvas() {
406 return fCanvas;
407 }
408
commit-bot@chromium.org8ddc26b2014-03-31 17:55:12 +0000409 SkPicture* getPicture() {
410 return fPicture;
411 }
412
keyar@chromium.org02dfb122012-08-20 15:03:36 +0000413 PictureRenderer()
robertphillips@google.com84b18c72014-04-13 19:09:42 +0000414 : fJsonSummaryPtr(NULL)
keyar@chromium.org06125642012-08-20 15:03:33 +0000415 , fDeviceType(kBitmap_DeviceType)
commit-bot@chromium.org8991c672014-05-22 00:36:05 +0000416 , fEnableWrites(false)
junov@chromium.org50ff9bd2012-11-02 19:16:22 +0000417 , fBBoxHierarchyType(kNone_BBoxHierarchyType)
scroggo@google.com06d6ac62013-02-08 21:16:19 +0000418 , fScaleFactor(SK_Scalar1)
keyar@chromium.org06125642012-08-20 15:03:33 +0000419#if SK_SUPPORT_GPU
scroggo@google.com0556ea02013-02-08 19:38:21 +0000420 , fGrContext(NULL)
jvanverth@google.comf6a90332013-05-02 12:39:37 +0000421 , fSampleCount(0)
keyar@chromium.org06125642012-08-20 15:03:33 +0000422#endif
caryclark@google.come3e940c2012-11-07 16:42:17 +0000423 {
robertphillips@google.com7ae918e2013-03-02 17:45:27 +0000424 fGridInfo.fMargin.setEmpty();
425 fGridInfo.fOffset.setZero();
426 fGridInfo.fTileInterval.set(1, 1);
caryclark@google.come3e940c2012-11-07 16:42:17 +0000427 sk_bzero(fDrawFilters, sizeof(fDrawFilters));
scroggo@google.comc0d5e542012-12-13 21:40:48 +0000428 fViewport.set(0, 0);
caryclark@google.come3e940c2012-11-07 16:42:17 +0000429 }
keyar@chromium.org06125642012-08-20 15:03:33 +0000430
scroggo@google.com0556ea02013-02-08 19:38:21 +0000431#if SK_SUPPORT_GPU
432 virtual ~PictureRenderer() {
433 SkSafeUnref(fGrContext);
434 }
435#endif
436
keyar@chromium.org9d696c02012-08-07 17:11:33 +0000437protected:
438 SkAutoTUnref<SkCanvas> fCanvas;
robertphillips@google.com84b18c72014-04-13 19:09:42 +0000439 SkAutoTUnref<SkPicture> fPicture;
commit-bot@chromium.orgf5e315c2014-03-19 17:26:07 +0000440 bool fUseChecksumBasedFilenames;
commit-bot@chromium.org205ce482014-05-12 15:37:20 +0000441 ImageResultsAndExpectations* fJsonSummaryPtr;
scroggo@google.comc0d5e542012-12-13 21:40:48 +0000442 SkDeviceTypes fDeviceType;
commit-bot@chromium.org8991c672014-05-22 00:36:05 +0000443 bool fEnableWrites;
scroggo@google.comc0d5e542012-12-13 21:40:48 +0000444 BBoxHierarchyType fBBoxHierarchyType;
445 DrawFilterFlags fDrawFilters[SkDrawFilter::kTypeCount];
446 SkString fDrawFiltersConfig;
commit-bot@chromium.org3f045172014-05-15 15:10:48 +0000447 SkString fWritePath;
448 SkString fMismatchPath;
commit-bot@chromium.orgf5e315c2014-03-19 17:26:07 +0000449 SkString fInputFilename;
commit-bot@chromium.org5fb2ce32014-04-17 23:35:06 +0000450 SkTileGridFactory::TileGridInfo fGridInfo; // used when fBBoxHierarchyType is TileGrid
keyar@chromium.org06125642012-08-20 15:03:33 +0000451
scroggo@google.comc0d5e542012-12-13 21:40:48 +0000452 void buildBBoxHierarchy();
453
454 /**
455 * Return the total width that should be drawn. If the viewport width has been set greater than
456 * 0, this will be the minimum of the current SkPicture's width and the viewport's width.
457 */
458 int getViewWidth();
459
460 /**
461 * Return the total height that should be drawn. If the viewport height has been set greater
462 * than 0, this will be the minimum of the current SkPicture's height and the viewport's height.
463 */
464 int getViewHeight();
465
scroggo@google.com82ec0b02012-12-17 19:25:54 +0000466 /**
467 * Scales the provided canvas to the scale factor set by setScaleFactor.
468 */
469 void scaleToScaleFactor(SkCanvas*);
470
commit-bot@chromium.org5fb2ce32014-04-17 23:35:06 +0000471 SkBBHFactory* getFactory();
robertphillips9f1c2412014-06-09 06:25:34 -0700472 uint32_t recordFlags() const { return 0; }
scroggo@google.comc0d5e542012-12-13 21:40:48 +0000473 SkCanvas* setupCanvas();
474 virtual SkCanvas* setupCanvas(int width, int height);
475
commit-bot@chromium.orgf5e315c2014-03-19 17:26:07 +0000476 /**
477 * Copy src to dest; if src==NULL, set dest to empty string.
478 */
479 static void CopyString(SkString* dest, const SkString* src);
480
keyar@chromium.org9d696c02012-08-07 17:11:33 +0000481private:
scroggo@google.comc0d5e542012-12-13 21:40:48 +0000482 SkISize fViewport;
scroggo@google.com82ec0b02012-12-17 19:25:54 +0000483 SkScalar fScaleFactor;
scroggo@google.com0556ea02013-02-08 19:38:21 +0000484#if SK_SUPPORT_GPU
485 GrContextFactory fGrContextFactory;
486 GrContext* fGrContext;
jvanverth@google.comf6a90332013-05-02 12:39:37 +0000487 int fSampleCount;
scroggo@google.com0556ea02013-02-08 19:38:21 +0000488#endif
scroggo@google.comc0d5e542012-12-13 21:40:48 +0000489
scroggo@google.com0a049b82012-11-02 22:01:26 +0000490 virtual SkString getConfigNameInternal() = 0;
491
keyar@chromium.org9d696c02012-08-07 17:11:33 +0000492 typedef SkRefCnt INHERITED;
keyar@chromium.org451bb9f2012-07-26 17:27:57 +0000493};
494
scroggo@google.com9a412522012-09-07 15:21:18 +0000495/**
496 * This class does not do any rendering, but its render function executes recording, which we want
497 * to time.
498 */
499class RecordPictureRenderer : public PictureRenderer {
commit-bot@chromium.orgf5e315c2014-03-19 17:26:07 +0000500 virtual bool render(SkBitmap** out = NULL) SK_OVERRIDE;
scroggo@google.com9a412522012-09-07 15:21:18 +0000501
502 virtual SkString getPerIterTimeFormat() SK_OVERRIDE { return SkString("%.4f"); }
503
504 virtual SkString getNormalTimeFormat() SK_OVERRIDE { return SkString("%6.4f"); }
scroggo@google.com0a049b82012-11-02 22:01:26 +0000505
djsollen@google.comfd9720c2012-11-06 16:54:40 +0000506protected:
507 virtual SkCanvas* setupCanvas(int width, int height) SK_OVERRIDE;
508
scroggo@google.com0a049b82012-11-02 22:01:26 +0000509private:
510 virtual SkString getConfigNameInternal() SK_OVERRIDE;
scroggo@google.com9a412522012-09-07 15:21:18 +0000511};
512
keyar@chromium.org451bb9f2012-07-26 17:27:57 +0000513class PipePictureRenderer : public PictureRenderer {
keyar@chromium.org163b5672012-08-01 17:53:29 +0000514public:
commit-bot@chromium.orgf5e315c2014-03-19 17:26:07 +0000515 virtual bool render(SkBitmap** out = NULL) SK_OVERRIDE;
keyar@chromium.org9d696c02012-08-07 17:11:33 +0000516
517private:
scroggo@google.com0a049b82012-11-02 22:01:26 +0000518 virtual SkString getConfigNameInternal() SK_OVERRIDE;
519
keyar@chromium.org9d696c02012-08-07 17:11:33 +0000520 typedef PictureRenderer INHERITED;
keyar@chromium.org451bb9f2012-07-26 17:27:57 +0000521};
522
523class SimplePictureRenderer : public PictureRenderer {
keyar@chromium.org163b5672012-08-01 17:53:29 +0000524public:
commit-bot@chromium.org3f045172014-05-15 15:10:48 +0000525 virtual void init(SkPicture* pict, const SkString* writePath, const SkString* mismatchPath,
commit-bot@chromium.orgf5e315c2014-03-19 17:26:07 +0000526 const SkString* inputFilename, bool useChecksumBasedFilenames) SK_OVERRIDE;
junov@chromium.org9313ca42012-11-02 18:11:49 +0000527
commit-bot@chromium.orgf5e315c2014-03-19 17:26:07 +0000528 virtual bool render(SkBitmap** out = NULL) SK_OVERRIDE;
keyar@chromium.org9d696c02012-08-07 17:11:33 +0000529
530private:
scroggo@google.com0a049b82012-11-02 22:01:26 +0000531 virtual SkString getConfigNameInternal() SK_OVERRIDE;
532
keyar@chromium.org9d696c02012-08-07 17:11:33 +0000533 typedef PictureRenderer INHERITED;
keyar@chromium.org451bb9f2012-07-26 17:27:57 +0000534};
535
536class TiledPictureRenderer : public PictureRenderer {
537public:
538 TiledPictureRenderer();
539
commit-bot@chromium.org3f045172014-05-15 15:10:48 +0000540 virtual void init(SkPicture* pict, const SkString* writePath, const SkString* mismatchPath,
commit-bot@chromium.orgf5e315c2014-03-19 17:26:07 +0000541 const SkString* inputFilename, bool useChecksumBasedFilenames) SK_OVERRIDE;
scroggo@google.com81f9d2e2012-09-20 14:54:21 +0000542
scroggo@google.com81f9d2e2012-09-20 14:54:21 +0000543 /**
commit-bot@chromium.orgf5e315c2014-03-19 17:26:07 +0000544 * Renders to tiles, rather than a single canvas.
commit-bot@chromium.org3f045172014-05-15 15:10:48 +0000545 * If fWritePath was provided, a separate file is
scroggo@google.com81f9d2e2012-09-20 14:54:21 +0000546 * created for each tile, named "path0.png", "path1.png", etc.
scroggo@google.com81f9d2e2012-09-20 14:54:21 +0000547 */
commit-bot@chromium.orgf5e315c2014-03-19 17:26:07 +0000548 virtual bool render(SkBitmap** out = NULL) SK_OVERRIDE;
scroggo@google.com81f9d2e2012-09-20 14:54:21 +0000549
keyar@chromium.org9d696c02012-08-07 17:11:33 +0000550 virtual void end() SK_OVERRIDE;
keyar@chromium.org451bb9f2012-07-26 17:27:57 +0000551
keyar@chromium.orgcc6e5ef2012-07-27 20:09:26 +0000552 void setTileWidth(int width) {
553 fTileWidth = width;
554 }
555
556 int getTileWidth() const {
557 return fTileWidth;
558 }
559
560 void setTileHeight(int height) {
561 fTileHeight = height;
562 }
563
564 int getTileHeight() const {
565 return fTileHeight;
566 }
567
568 void setTileWidthPercentage(double percentage) {
569 fTileWidthPercentage = percentage;
570 }
571
keyar@chromium.org163b5672012-08-01 17:53:29 +0000572 double getTileWidthPercentage() const {
keyar@chromium.orgcc6e5ef2012-07-27 20:09:26 +0000573 return fTileWidthPercentage;
574 }
575
576 void setTileHeightPercentage(double percentage) {
577 fTileHeightPercentage = percentage;
578 }
579
keyar@chromium.org163b5672012-08-01 17:53:29 +0000580 double getTileHeightPercentage() const {
keyar@chromium.orgcc6e5ef2012-07-27 20:09:26 +0000581 return fTileHeightPercentage;
582 }
583
keyar@chromium.orgf4959ab2012-08-23 20:53:25 +0000584 void setTileMinPowerOf2Width(int width) {
585 SkASSERT(SkIsPow2(width) && width > 0);
586 if (!SkIsPow2(width) || width <= 0) {
587 return;
588 }
589
590 fTileMinPowerOf2Width = width;
591 }
592
593 int getTileMinPowerOf2Width() const {
594 return fTileMinPowerOf2Width;
595 }
596
scroggo@google.comcbcef702012-12-13 22:09:28 +0000597 virtual TiledPictureRenderer* getTiledRenderer() SK_OVERRIDE { return this; }
598
scroggo@google.com161e1ba2013-03-04 16:41:06 +0000599 virtual bool supportsTimingIndividualTiles() { return true; }
600
scroggo@google.comcbcef702012-12-13 22:09:28 +0000601 /**
602 * Report the number of tiles in the x and y directions. Must not be called before init.
603 * @param x Output parameter identifying the number of tiles in the x direction.
604 * @param y Output parameter identifying the number of tiles in the y direction.
605 * @return True if the tiles have been set up, and x and y are meaningful. If false, x and y are
606 * unmodified.
607 */
608 bool tileDimensions(int& x, int&y);
609
610 /**
611 * Move to the next tile and return its indices. Must be called before calling drawCurrentTile
612 * for the first time.
613 * @param i Output parameter identifying the column of the next tile to be drawn on the next
614 * call to drawNextTile.
615 * @param j Output parameter identifying the row of the next tile to be drawn on the next call
616 * to drawNextTile.
617 * @param True if the tiles have been created and the next tile to be drawn by drawCurrentTile
618 * is within the range of tiles. If false, i and j are unmodified.
619 */
620 bool nextTile(int& i, int& j);
621
622 /**
623 * Render one tile. This will draw the same tile each time it is called until nextTile is
624 * called. The tile rendered will depend on how many calls have been made to nextTile.
625 * It is an error to call this without first calling nextTile, or if nextTile returns false.
626 */
627 void drawCurrentTile();
628
scroggo@google.coma62da2f2012-11-02 21:28:12 +0000629protected:
scroggo@google.coma62da2f2012-11-02 21:28:12 +0000630 SkTDArray<SkRect> fTileRects;
keyar@chromium.org451bb9f2012-07-26 17:27:57 +0000631
scroggo@google.com0a049b82012-11-02 22:01:26 +0000632 virtual SkCanvas* setupCanvas(int width, int height) SK_OVERRIDE;
633 virtual SkString getConfigNameInternal() SK_OVERRIDE;
634
keyar@chromium.org451bb9f2012-07-26 17:27:57 +0000635private:
scroggo@google.comcbcef702012-12-13 22:09:28 +0000636 int fTileWidth;
637 int fTileHeight;
638 double fTileWidthPercentage;
639 double fTileHeightPercentage;
640 int fTileMinPowerOf2Width;
641
642 // These variables are only used for timing individual tiles.
643 // Next tile to draw in fTileRects.
644 int fCurrentTileOffset;
645 // Number of tiles in the x direction.
646 int fTilesX;
647 // Number of tiles in the y direction.
648 int fTilesY;
scroggo@google.combcdf2ec2012-09-20 14:42:33 +0000649
keyar@chromium.org9d696c02012-08-07 17:11:33 +0000650 void setupTiles();
keyar@chromium.orgf4959ab2012-08-23 20:53:25 +0000651 void setupPowerOf2Tiles();
keyar@chromium.org9d696c02012-08-07 17:11:33 +0000652
653 typedef PictureRenderer INHERITED;
keyar@chromium.org451bb9f2012-07-26 17:27:57 +0000654};
655
scroggo@google.com9a412522012-09-07 15:21:18 +0000656/**
657 * This class does not do any rendering, but its render function executes turning an SkPictureRecord
658 * into an SkPicturePlayback, which we want to time.
659 */
660class PlaybackCreationRenderer : public PictureRenderer {
661public:
662 virtual void setup() SK_OVERRIDE;
663
commit-bot@chromium.orgf5e315c2014-03-19 17:26:07 +0000664 virtual bool render(SkBitmap** out = NULL) SK_OVERRIDE;
scroggo@google.com9a412522012-09-07 15:21:18 +0000665
666 virtual SkString getPerIterTimeFormat() SK_OVERRIDE { return SkString("%.4f"); }
667
668 virtual SkString getNormalTimeFormat() SK_OVERRIDE { return SkString("%6.4f"); }
669
670private:
robertphillips@google.com84b18c72014-04-13 19:09:42 +0000671 SkAutoTDelete<SkPictureRecorder> fRecorder;
scroggo@google.com0a049b82012-11-02 22:01:26 +0000672
673 virtual SkString getConfigNameInternal() SK_OVERRIDE;
674
scroggo@google.com9a412522012-09-07 15:21:18 +0000675 typedef PictureRenderer INHERITED;
676};
677
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000678extern PictureRenderer* CreateGatherPixelRefsRenderer();
679
keyar@chromium.org451bb9f2012-07-26 17:27:57 +0000680}
681
682#endif // PictureRenderer_DEFINED