blob: d52b988819606135f44c7e11f75ebd8a877dff4a [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;
kkinnunen9e61bb72014-10-09 05:24:15 -070033class SkGLContext;
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,
59 kRTree_BBoxHierarchyType,
commit-bot@chromium.orgcdd0f922014-03-11 17:27:07 +000060
mtklein703dd2e2015-01-09 06:41:48 -080061 kLast_BBoxHierarchyType = kRTree_BBoxHierarchyType,
junov@chromium.org9313ca42012-11-02 18:11:49 +000062 };
63
caryclark@google.coma3622372012-11-06 21:26:13 +000064 // this uses SkPaint::Flags as a base and adds additional flags
65 enum DrawFilterFlags {
66 kNone_DrawFilterFlag = 0,
reed@google.com881b10b2013-05-22 14:03:45 +000067 kHinting_DrawFilterFlag = 0x10000, // toggles between no hinting and normal hinting
68 kSlightHinting_DrawFilterFlag = 0x20000, // toggles between slight and normal hinting
69 kAAClip_DrawFilterFlag = 0x40000, // toggles between soft and hard clip
humper@google.com387db0a2013-07-09 14:13:04 +000070 kMaskFilter_DrawFilterFlag = 0x80000, // toggles on/off mask filters (e.g., blurs)
caryclark@google.coma3622372012-11-06 21:26:13 +000071 };
72
robertphillips@google.com49149312013-07-03 15:34:35 +000073 SK_COMPILE_ASSERT(!(kMaskFilter_DrawFilterFlag & SkPaint::kAllFlags), maskfilter_flag_must_be_greater);
caryclark@google.coma3622372012-11-06 21:26:13 +000074 SK_COMPILE_ASSERT(!(kHinting_DrawFilterFlag & SkPaint::kAllFlags),
75 hinting_flag_must_be_greater);
76 SK_COMPILE_ASSERT(!(kSlightHinting_DrawFilterFlag & SkPaint::kAllFlags),
77 slight_hinting_flag_must_be_greater);
78
scroggo@google.coma62da2f2012-11-02 21:28:12 +000079 /**
80 * Called with each new SkPicture to render.
commit-bot@chromium.orgf5e315c2014-03-19 17:26:07 +000081 *
82 * @param pict The SkPicture to render.
commit-bot@chromium.org3f045172014-05-15 15:10:48 +000083 * @param writePath The output directory within which this renderer should write all images,
84 * or NULL if this renderer should not write all images.
85 * @param mismatchPath The output directory within which this renderer should write any images
86 * which do not match expectations, or NULL if this renderer should not write mismatches.
commit-bot@chromium.orgf5e315c2014-03-19 17:26:07 +000087 * @param inputFilename The name of the input file we are rendering.
88 * @param useChecksumBasedFilenames Whether to use checksum-based filenames when writing
89 * bitmap images to disk.
robertphillips78c71272014-10-09 04:59:19 -070090 * @param useMultiPictureDraw true if MultiPictureDraw should be used for rendering
scroggo@google.coma62da2f2012-11-02 21:28:12 +000091 */
mtklein2a65a232014-08-26 14:07:04 -070092 virtual void init(const SkPicture* pict,
93 const SkString* writePath,
robertphillipsce4dd3d2014-07-07 13:46:35 -070094 const SkString* mismatchPath,
mtklein2a65a232014-08-26 14:07:04 -070095 const SkString* inputFilename,
robertphillips78c71272014-10-09 04:59:19 -070096 bool useChecksumBasedFilenames,
97 bool useMultiPictureDraw);
scroggo@google.com9a412522012-09-07 15:21:18 +000098
99 /**
commit-bot@chromium.org8991c672014-05-22 00:36:05 +0000100 * TODO(epoger): Temporary hack, while we work on http://skbug.com/2584 ('bench_pictures is
101 * timing reading pixels and writing json files'), such that:
102 * - render_pictures can call this method and continue to work
103 * - any other callers (bench_pictures) will skip calls to write() by default
104 */
105 void enableWrites() { fEnableWrites = true; }
106
107 /**
scroggo@google.comc0d5e542012-12-13 21:40:48 +0000108 * Set the viewport so that only the portion listed gets drawn.
109 */
110 void setViewport(SkISize size) { fViewport = size; }
111
112 /**
scroggo@google.com82ec0b02012-12-17 19:25:54 +0000113 * Set the scale factor at which draw the picture.
114 */
115 void setScaleFactor(SkScalar scale) { fScaleFactor = scale; }
116
117 /**
scroggo@google.com9a412522012-09-07 15:21:18 +0000118 * Perform any setup that should done prior to each iteration of render() which should not be
119 * timed.
120 */
121 virtual void setup() {}
122
123 /**
commit-bot@chromium.orgf5e315c2014-03-19 17:26:07 +0000124 * Perform the work. If this is being called within the context of bench_pictures,
125 * this is the step that will be timed.
126 *
127 * Typically "the work" is rendering an SkPicture into a bitmap, but in some subclasses
128 * it is recording the source SkPicture into another SkPicture.
129 *
commit-bot@chromium.org3f045172014-05-15 15:10:48 +0000130 * If fWritePath has been specified, the result of the work will be written to that dir.
131 * If fMismatchPath has been specified, and the actual image result differs from its
132 * expectation, the result of the work will be written to that dir.
commit-bot@chromium.orgf5e315c2014-03-19 17:26:07 +0000133 *
134 * @param out If non-null, the implementing subclass MAY allocate an SkBitmap, copy the
135 * output image into it, and return it here. (Some subclasses ignore this parameter)
commit-bot@chromium.org3f045172014-05-15 15:10:48 +0000136 * @return bool True if rendering succeeded and, if fWritePath had been specified, the output
commit-bot@chromium.orgf5e315c2014-03-19 17:26:07 +0000137 * was successfully written to a file.
scroggo@google.com9a412522012-09-07 15:21:18 +0000138 */
commit-bot@chromium.orgf5e315c2014-03-19 17:26:07 +0000139 virtual bool render(SkBitmap** out = NULL) = 0;
scroggo@google.com9a412522012-09-07 15:21:18 +0000140
scroggo@google.coma62da2f2012-11-02 21:28:12 +0000141 /**
142 * Called once finished with a particular SkPicture, before calling init again, and before
143 * being done with this Renderer.
144 */
keyar@chromium.org9d696c02012-08-07 17:11:33 +0000145 virtual void end();
scroggo@google.coma62da2f2012-11-02 21:28:12 +0000146
scroggo@google.comcbcef702012-12-13 22:09:28 +0000147 /**
148 * If this PictureRenderer is actually a TiledPictureRender, return a pointer to this as a
149 * TiledPictureRender so its methods can be called.
150 */
151 virtual TiledPictureRenderer* getTiledRenderer() { return NULL; }
152
scroggo@google.com08085f82013-01-28 20:40:24 +0000153 /**
154 * 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 +0000155 * flush, swapBuffers and, if callFinish is true, finish.
scroggo@google.com08085f82013-01-28 20:40:24 +0000156 * @param callFinish Whether to call finish.
157 */
158 void resetState(bool callFinish);
keyar@chromium.org9d696c02012-08-07 17:11:33 +0000159
scroggo@google.com0556ea02013-02-08 19:38:21 +0000160 /**
robertphillips@google.com94d8f1e2013-12-18 17:25:33 +0000161 * Remove all decoded textures from the CPU caches and all uploaded textures
162 * from the GPU.
163 */
164 void purgeTextures();
165
166 /**
scroggo@google.com0556ea02013-02-08 19:38:21 +0000167 * Set the backend type. Returns true on success and false on failure.
168 */
kkinnunen80549fc2014-06-30 06:36:31 -0700169#if SK_SUPPORT_GPU
170 bool setDeviceType(SkDeviceTypes deviceType, GrGLStandard gpuAPI = kNone_GrGLStandard) {
171#else
scroggo@google.com0556ea02013-02-08 19:38:21 +0000172 bool setDeviceType(SkDeviceTypes deviceType) {
kkinnunen80549fc2014-06-30 06:36:31 -0700173#endif
keyar@chromium.orgc81686c2012-08-20 15:04:04 +0000174 fDeviceType = deviceType;
scroggo@google.com0556ea02013-02-08 19:38:21 +0000175#if SK_SUPPORT_GPU
176 // In case this function is called more than once
177 SkSafeUnref(fGrContext);
178 fGrContext = NULL;
179 // Set to Native so it will have an initial value.
180 GrContextFactory::GLContextType glContextType = GrContextFactory::kNative_GLContextType;
181#endif
182 switch(deviceType) {
183 case kBitmap_DeviceType:
184 return true;
185#if SK_SUPPORT_GPU
186 case kGPU_DeviceType:
187 // Already set to GrContextFactory::kNative_GLContextType, above.
188 break;
commit-bot@chromium.org0fd52702014-03-07 18:41:14 +0000189 case kNVPR_DeviceType:
190 glContextType = GrContextFactory::kNVPR_GLContextType;
191 break;
scroggo@google.com0556ea02013-02-08 19:38:21 +0000192#if SK_ANGLE
193 case kAngle_DeviceType:
194 glContextType = GrContextFactory::kANGLE_GLContextType;
195 break;
196#endif
rmistry@google.com6ab96732014-01-06 18:37:24 +0000197#if SK_MESA
198 case kMesa_DeviceType:
199 glContextType = GrContextFactory::kMESA_GLContextType;
200 break;
201#endif
scroggo@google.com0556ea02013-02-08 19:38:21 +0000202#endif
203 default:
204 // Invalid device type.
205 return false;
206 }
207#if SK_SUPPORT_GPU
kkinnunen80549fc2014-06-30 06:36:31 -0700208 fGrContext = fGrContextFactory.get(glContextType, gpuAPI);
scroggo@google.com0556ea02013-02-08 19:38:21 +0000209 if (NULL == fGrContext) {
210 return false;
211 } else {
212 fGrContext->ref();
213 return true;
214 }
215#endif
keyar@chromium.orgfe6391a2012-08-20 15:03:41 +0000216 }
217
jvanverth@google.comf6a90332013-05-02 12:39:37 +0000218#if SK_SUPPORT_GPU
219 void setSampleCount(int sampleCount) {
220 fSampleCount = sampleCount;
221 }
jvanverth4736e142014-11-07 07:12:46 -0800222
223 void setUseDFText(bool useDFText) {
224 fUseDFText = useDFText;
225 }
jvanverth@google.comf6a90332013-05-02 12:39:37 +0000226#endif
227
caryclark@google.come3e940c2012-11-07 16:42:17 +0000228 void setDrawFilters(DrawFilterFlags const * const filters, const SkString& configName) {
229 memcpy(fDrawFilters, filters, sizeof(fDrawFilters));
caryclark@google.coma3622372012-11-06 21:26:13 +0000230 fDrawFiltersConfig = configName;
231 }
232
junov@chromium.org9313ca42012-11-02 18:11:49 +0000233 void setBBoxHierarchyType(BBoxHierarchyType bbhType) {
234 fBBoxHierarchyType = bbhType;
235 }
236
junov@chromium.orge286e842013-03-13 17:27:16 +0000237 BBoxHierarchyType getBBoxHierarchyType() { return fBBoxHierarchyType; }
238
commit-bot@chromium.org205ce482014-05-12 15:37:20 +0000239 void setJsonSummaryPtr(ImageResultsAndExpectations* jsonSummaryPtr) {
commit-bot@chromium.orga3f882c2013-12-13 20:52:36 +0000240 fJsonSummaryPtr = jsonSummaryPtr;
241 }
242
keyar@chromium.orgfe6391a2012-08-20 15:03:41 +0000243 bool isUsingBitmapDevice() {
keyar@chromium.org78a35c52012-08-20 15:03:44 +0000244 return kBitmap_DeviceType == fDeviceType;
keyar@chromium.org4ea96c52012-08-20 15:03:29 +0000245 }
246
scroggo@google.com9a412522012-09-07 15:21:18 +0000247 virtual SkString getPerIterTimeFormat() { return SkString("%.2f"); }
248
249 virtual SkString getNormalTimeFormat() { return SkString("%6.2f"); }
250
scroggo@google.com0a049b82012-11-02 22:01:26 +0000251 /**
252 * Reports the configuration of this PictureRenderer.
253 */
254 SkString getConfigName() {
255 SkString config = this->getConfigNameInternal();
scroggo@google.comc4013c12012-12-13 22:07:08 +0000256 if (!fViewport.isEmpty()) {
257 config.appendf("_viewport_%ix%i", fViewport.width(), fViewport.height());
258 }
commit-bot@chromium.org9de35eb2013-12-20 21:49:33 +0000259 if (fScaleFactor != SK_Scalar1) {
260 config.appendf("_scalar_%f", SkScalarToFloat(fScaleFactor));
261 }
scroggo@google.com0a049b82012-11-02 22:01:26 +0000262 if (kRTree_BBoxHierarchyType == fBBoxHierarchyType) {
263 config.append("_rtree");
264 }
265#if SK_SUPPORT_GPU
robertphillips@google.come8fe4bc2013-02-13 13:26:13 +0000266 switch (fDeviceType) {
scroggo@google.com0556ea02013-02-08 19:38:21 +0000267 case kGPU_DeviceType:
jvanverth@google.comf6a90332013-05-02 12:39:37 +0000268 if (fSampleCount) {
269 config.appendf("_msaa%d", fSampleCount);
jvanverth4736e142014-11-07 07:12:46 -0800270 } else if (fUseDFText) {
271 config.append("_gpudft");
jvanverth@google.comf6a90332013-05-02 12:39:37 +0000272 } else {
273 config.append("_gpu");
274 }
scroggo@google.com0556ea02013-02-08 19:38:21 +0000275 break;
commit-bot@chromium.org0fd52702014-03-07 18:41:14 +0000276 case kNVPR_DeviceType:
277 config.appendf("_nvprmsaa%d", fSampleCount);
278 break;
scroggo@google.com0556ea02013-02-08 19:38:21 +0000279#if SK_ANGLE
280 case kAngle_DeviceType:
281 config.append("_angle");
282 break;
scroggo@google.com0a049b82012-11-02 22:01:26 +0000283#endif
rmistry@google.com6ab96732014-01-06 18:37:24 +0000284#if SK_MESA
285 case kMesa_DeviceType:
286 config.append("_mesa");
287 break;
288#endif
scroggo@google.com0556ea02013-02-08 19:38:21 +0000289 default:
290 // Assume that no extra info means bitmap.
291 break;
292 }
robertphillips@google.come8fe4bc2013-02-13 13:26:13 +0000293#endif
caryclark@google.coma3622372012-11-06 21:26:13 +0000294 config.append(fDrawFiltersConfig.c_str());
scroggo@google.com0a049b82012-11-02 22:01:26 +0000295 return config;
296 }
297
kelvinly4d1a3642014-06-26 11:26:40 -0700298 Json::Value getJSONConfig() {
299 Json::Value result;
300
301 result["mode"] = this->getConfigNameInternal().c_str();
302 result["scale"] = 1.0f;
303 if (SK_Scalar1 != fScaleFactor) {
304 result["scale"] = SkScalarToFloat(fScaleFactor);
305 }
306 if (kRTree_BBoxHierarchyType == fBBoxHierarchyType) {
307 result["bbh"] = "rtree";
kelvinly4d1a3642014-06-26 11:26:40 -0700308 }
309#if SK_SUPPORT_GPU
310 SkString tmp;
311 switch (fDeviceType) {
312 case kGPU_DeviceType:
313 if (0 != fSampleCount) {
314 tmp = "msaa";
315 tmp.appendS32(fSampleCount);
316 result["config"] = tmp.c_str();
jvanverth4736e142014-11-07 07:12:46 -0800317 } else if (fUseDFText) {
318 result["config"] = "gpudft";
kelvinly4d1a3642014-06-26 11:26:40 -0700319 } else {
320 result["config"] = "gpu";
321 }
322 break;
323 case kNVPR_DeviceType:
324 tmp = "nvprmsaa";
325 tmp.appendS32(fSampleCount);
326 result["config"] = tmp.c_str();
327 break;
328#if SK_ANGLE
329 case kAngle_DeviceType:
330 result["config"] = "angle";
331 break;
332#endif
333#if SK_MESA
334 case kMesa_DeviceType:
335 result["config"] = "mesa";
336 break;
337#endif
338 default:
339 // Assume that no extra info means bitmap.
340 break;
341 }
342#endif
343 return result;
344 }
345
keyar@chromium.org4ea96c52012-08-20 15:03:29 +0000346#if SK_SUPPORT_GPU
keyar@chromium.orgfe6391a2012-08-20 15:03:41 +0000347 bool isUsingGpuDevice() {
scroggo@google.com0556ea02013-02-08 19:38:21 +0000348 switch (fDeviceType) {
349 case kGPU_DeviceType:
commit-bot@chromium.org0fd52702014-03-07 18:41:14 +0000350 case kNVPR_DeviceType:
scroggo@google.com0556ea02013-02-08 19:38:21 +0000351 // fall through
352#if SK_ANGLE
353 case kAngle_DeviceType:
rmistry@google.com6ab96732014-01-06 18:37:24 +0000354 // fall through
355#endif
356#if SK_MESA
357 case kMesa_DeviceType:
scroggo@google.com0556ea02013-02-08 19:38:21 +0000358#endif
359 return true;
360 default:
361 return false;
362 }
keyar@chromium.orgfe6391a2012-08-20 15:03:41 +0000363 }
keyar@chromium.org77a55222012-08-20 15:03:47 +0000364
kkinnunen9e61bb72014-10-09 05:24:15 -0700365 SkGLContext* getGLContext() {
scroggo@google.com0556ea02013-02-08 19:38:21 +0000366 GrContextFactory::GLContextType glContextType
367 = GrContextFactory::kNull_GLContextType;
368 switch(fDeviceType) {
369 case kGPU_DeviceType:
370 glContextType = GrContextFactory::kNative_GLContextType;
371 break;
commit-bot@chromium.org0fd52702014-03-07 18:41:14 +0000372 case kNVPR_DeviceType:
373 glContextType = GrContextFactory::kNVPR_GLContextType;
374 break;
scroggo@google.com0556ea02013-02-08 19:38:21 +0000375#if SK_ANGLE
376 case kAngle_DeviceType:
377 glContextType = GrContextFactory::kANGLE_GLContextType;
378 break;
379#endif
rmistry@google.com6ab96732014-01-06 18:37:24 +0000380#if SK_MESA
381 case kMesa_DeviceType:
382 glContextType = GrContextFactory::kMESA_GLContextType;
383 break;
384#endif
scroggo@google.com0556ea02013-02-08 19:38:21 +0000385 default:
386 return NULL;
keyar@chromium.org77a55222012-08-20 15:03:47 +0000387 }
scroggo@google.com0556ea02013-02-08 19:38:21 +0000388 return fGrContextFactory.getGLContext(glContextType);
keyar@chromium.org77a55222012-08-20 15:03:47 +0000389 }
robertphillips@google.com163c84b2012-09-13 15:40:37 +0000390
391 GrContext* getGrContext() {
392 return fGrContext;
393 }
krajcevskib1aded82014-08-18 07:52:17 -0700394
395 const GrContext::Options& getGrContextOptions() {
396 return fGrContextFactory.getGlobalOptions();
397 }
keyar@chromium.org4ea96c52012-08-20 15:03:29 +0000398#endif
399
commit-bot@chromium.org145d1c02014-03-16 19:46:36 +0000400 SkCanvas* getCanvas() {
401 return fCanvas;
402 }
403
robertphillipsce4dd3d2014-07-07 13:46:35 -0700404 const SkPicture* getPicture() {
commit-bot@chromium.org8ddc26b2014-03-31 17:55:12 +0000405 return fPicture;
406 }
mtklein2a65a232014-08-26 14:07:04 -0700407
krajcevskib1aded82014-08-18 07:52:17 -0700408#if SK_SUPPORT_GPU
409 explicit PictureRenderer(const GrContext::Options &opts)
410#else
keyar@chromium.org02dfb122012-08-20 15:03:36 +0000411 PictureRenderer()
krajcevskib1aded82014-08-18 07:52:17 -0700412#endif
robertphillips@google.com84b18c72014-04-13 19:09:42 +0000413 : fJsonSummaryPtr(NULL)
keyar@chromium.org06125642012-08-20 15:03:33 +0000414 , fDeviceType(kBitmap_DeviceType)
commit-bot@chromium.org8991c672014-05-22 00:36:05 +0000415 , fEnableWrites(false)
junov@chromium.org50ff9bd2012-11-02 19:16:22 +0000416 , fBBoxHierarchyType(kNone_BBoxHierarchyType)
scroggo@google.com06d6ac62013-02-08 21:16:19 +0000417 , fScaleFactor(SK_Scalar1)
keyar@chromium.org06125642012-08-20 15:03:33 +0000418#if SK_SUPPORT_GPU
krajcevskib1aded82014-08-18 07:52:17 -0700419 , fGrContextFactory(opts)
scroggo@google.com0556ea02013-02-08 19:38:21 +0000420 , fGrContext(NULL)
jvanverth@google.comf6a90332013-05-02 12:39:37 +0000421 , fSampleCount(0)
jvanverth4736e142014-11-07 07:12:46 -0800422 , fUseDFText(false)
keyar@chromium.org06125642012-08-20 15:03:33 +0000423#endif
caryclark@google.come3e940c2012-11-07 16:42:17 +0000424 {
425 sk_bzero(fDrawFilters, sizeof(fDrawFilters));
scroggo@google.comc0d5e542012-12-13 21:40:48 +0000426 fViewport.set(0, 0);
caryclark@google.come3e940c2012-11-07 16:42:17 +0000427 }
keyar@chromium.org06125642012-08-20 15:03:33 +0000428
scroggo@google.com0556ea02013-02-08 19:38:21 +0000429#if SK_SUPPORT_GPU
430 virtual ~PictureRenderer() {
431 SkSafeUnref(fGrContext);
432 }
433#endif
434
keyar@chromium.org9d696c02012-08-07 17:11:33 +0000435protected:
436 SkAutoTUnref<SkCanvas> fCanvas;
robertphillipsce4dd3d2014-07-07 13:46:35 -0700437 SkAutoTUnref<const SkPicture> fPicture;
commit-bot@chromium.orgf5e315c2014-03-19 17:26:07 +0000438 bool fUseChecksumBasedFilenames;
robertphillips78c71272014-10-09 04:59:19 -0700439 bool fUseMultiPictureDraw;
commit-bot@chromium.org205ce482014-05-12 15:37:20 +0000440 ImageResultsAndExpectations* fJsonSummaryPtr;
scroggo@google.comc0d5e542012-12-13 21:40:48 +0000441 SkDeviceTypes fDeviceType;
commit-bot@chromium.org8991c672014-05-22 00:36:05 +0000442 bool fEnableWrites;
scroggo@google.comc0d5e542012-12-13 21:40:48 +0000443 BBoxHierarchyType fBBoxHierarchyType;
444 DrawFilterFlags fDrawFilters[SkDrawFilter::kTypeCount];
445 SkString fDrawFiltersConfig;
commit-bot@chromium.org3f045172014-05-15 15:10:48 +0000446 SkString fWritePath;
447 SkString fMismatchPath;
commit-bot@chromium.orgf5e315c2014-03-19 17:26:07 +0000448 SkString fInputFilename;
keyar@chromium.org06125642012-08-20 15:03:33 +0000449
scroggo@google.comc0d5e542012-12-13 21:40:48 +0000450 void buildBBoxHierarchy();
451
452 /**
453 * Return the total width that should be drawn. If the viewport width has been set greater than
454 * 0, this will be the minimum of the current SkPicture's width and the viewport's width.
455 */
456 int getViewWidth();
457
458 /**
459 * Return the total height that should be drawn. If the viewport height has been set greater
460 * than 0, this will be the minimum of the current SkPicture's height and the viewport's height.
461 */
462 int getViewHeight();
463
scroggo@google.com82ec0b02012-12-17 19:25:54 +0000464 /**
465 * Scales the provided canvas to the scale factor set by setScaleFactor.
466 */
467 void scaleToScaleFactor(SkCanvas*);
468
commit-bot@chromium.org5fb2ce32014-04-17 23:35:06 +0000469 SkBBHFactory* getFactory();
robertphillips9f1c2412014-06-09 06:25:34 -0700470 uint32_t recordFlags() const { return 0; }
scroggo@google.comc0d5e542012-12-13 21:40:48 +0000471 SkCanvas* setupCanvas();
472 virtual SkCanvas* setupCanvas(int width, int height);
473
commit-bot@chromium.orgf5e315c2014-03-19 17:26:07 +0000474 /**
475 * Copy src to dest; if src==NULL, set dest to empty string.
476 */
477 static void CopyString(SkString* dest, const SkString* src);
478
keyar@chromium.org9d696c02012-08-07 17:11:33 +0000479private:
scroggo@google.comc0d5e542012-12-13 21:40:48 +0000480 SkISize fViewport;
scroggo@google.com82ec0b02012-12-17 19:25:54 +0000481 SkScalar fScaleFactor;
scroggo@google.com0556ea02013-02-08 19:38:21 +0000482#if SK_SUPPORT_GPU
483 GrContextFactory fGrContextFactory;
484 GrContext* fGrContext;
jvanverth@google.comf6a90332013-05-02 12:39:37 +0000485 int fSampleCount;
jvanverth4736e142014-11-07 07:12:46 -0800486 bool fUseDFText;
scroggo@google.com0556ea02013-02-08 19:38:21 +0000487#endif
scroggo@google.comc0d5e542012-12-13 21:40:48 +0000488
scroggo@google.com0a049b82012-11-02 22:01:26 +0000489 virtual SkString getConfigNameInternal() = 0;
490
keyar@chromium.org9d696c02012-08-07 17:11:33 +0000491 typedef SkRefCnt INHERITED;
keyar@chromium.org451bb9f2012-07-26 17:27:57 +0000492};
493
scroggo@google.com9a412522012-09-07 15:21:18 +0000494/**
495 * This class does not do any rendering, but its render function executes recording, which we want
496 * to time.
497 */
498class RecordPictureRenderer : public PictureRenderer {
krajcevskib1aded82014-08-18 07:52:17 -0700499public:
500#if SK_SUPPORT_GPU
501 RecordPictureRenderer(const GrContext::Options &opts) : INHERITED(opts) { }
502#endif
503
mtklein72c9faa2015-01-09 10:06:39 -0800504 bool render(SkBitmap** out = NULL) SK_OVERRIDE;
scroggo@google.com9a412522012-09-07 15:21:18 +0000505
mtklein72c9faa2015-01-09 10:06:39 -0800506 SkString getPerIterTimeFormat() SK_OVERRIDE { return SkString("%.4f"); }
scroggo@google.com9a412522012-09-07 15:21:18 +0000507
mtklein72c9faa2015-01-09 10:06:39 -0800508 SkString getNormalTimeFormat() SK_OVERRIDE { return SkString("%6.4f"); }
scroggo@google.com0a049b82012-11-02 22:01:26 +0000509
djsollen@google.comfd9720c2012-11-06 16:54:40 +0000510protected:
mtklein72c9faa2015-01-09 10:06:39 -0800511 SkCanvas* setupCanvas(int width, int height) SK_OVERRIDE;
djsollen@google.comfd9720c2012-11-06 16:54:40 +0000512
scroggo@google.com0a049b82012-11-02 22:01:26 +0000513private:
mtklein72c9faa2015-01-09 10:06:39 -0800514 SkString getConfigNameInternal() SK_OVERRIDE;
krajcevskib1aded82014-08-18 07:52:17 -0700515
516 typedef PictureRenderer INHERITED;
scroggo@google.com9a412522012-09-07 15:21:18 +0000517};
518
keyar@chromium.org451bb9f2012-07-26 17:27:57 +0000519class PipePictureRenderer : public PictureRenderer {
keyar@chromium.org163b5672012-08-01 17:53:29 +0000520public:
krajcevskib1aded82014-08-18 07:52:17 -0700521#if SK_SUPPORT_GPU
522 PipePictureRenderer(const GrContext::Options &opts) : INHERITED(opts) { }
523#endif
524
mtklein72c9faa2015-01-09 10:06:39 -0800525 bool render(SkBitmap** out = NULL) SK_OVERRIDE;
keyar@chromium.org9d696c02012-08-07 17:11:33 +0000526
527private:
mtklein72c9faa2015-01-09 10:06:39 -0800528 SkString getConfigNameInternal() SK_OVERRIDE;
scroggo@google.com0a049b82012-11-02 22:01:26 +0000529
keyar@chromium.org9d696c02012-08-07 17:11:33 +0000530 typedef PictureRenderer INHERITED;
keyar@chromium.org451bb9f2012-07-26 17:27:57 +0000531};
532
533class SimplePictureRenderer : public PictureRenderer {
keyar@chromium.org163b5672012-08-01 17:53:29 +0000534public:
krajcevskib1aded82014-08-18 07:52:17 -0700535#if SK_SUPPORT_GPU
536 SimplePictureRenderer(const GrContext::Options &opts) : INHERITED(opts) { }
537#endif
538
robertphillipsce4dd3d2014-07-07 13:46:35 -0700539 virtual void init(const SkPicture* pict,
mtklein2a65a232014-08-26 14:07:04 -0700540 const SkString* writePath,
robertphillipsce4dd3d2014-07-07 13:46:35 -0700541 const SkString* mismatchPath,
mtklein2a65a232014-08-26 14:07:04 -0700542 const SkString* inputFilename,
robertphillips78c71272014-10-09 04:59:19 -0700543 bool useChecksumBasedFilenames,
544 bool useMultiPictureDraw) SK_OVERRIDE;
junov@chromium.org9313ca42012-11-02 18:11:49 +0000545
mtklein72c9faa2015-01-09 10:06:39 -0800546 bool render(SkBitmap** out = NULL) SK_OVERRIDE;
keyar@chromium.org9d696c02012-08-07 17:11:33 +0000547
548private:
mtklein72c9faa2015-01-09 10:06:39 -0800549 SkString getConfigNameInternal() SK_OVERRIDE;
scroggo@google.com0a049b82012-11-02 22:01:26 +0000550
keyar@chromium.org9d696c02012-08-07 17:11:33 +0000551 typedef PictureRenderer INHERITED;
keyar@chromium.org451bb9f2012-07-26 17:27:57 +0000552};
553
554class TiledPictureRenderer : public PictureRenderer {
555public:
krajcevskib1aded82014-08-18 07:52:17 -0700556#if SK_SUPPORT_GPU
557 TiledPictureRenderer(const GrContext::Options &opts);
558#else
keyar@chromium.org451bb9f2012-07-26 17:27:57 +0000559 TiledPictureRenderer();
krajcevskib1aded82014-08-18 07:52:17 -0700560#endif
keyar@chromium.org451bb9f2012-07-26 17:27:57 +0000561
mtklein2a65a232014-08-26 14:07:04 -0700562 virtual void init(const SkPicture* pict,
563 const SkString* writePath,
robertphillipsce4dd3d2014-07-07 13:46:35 -0700564 const SkString* mismatchPath,
mtklein2a65a232014-08-26 14:07:04 -0700565 const SkString* inputFilename,
robertphillips78c71272014-10-09 04:59:19 -0700566 bool useChecksumBasedFilenames,
567 bool useMultiPictureDraw) SK_OVERRIDE;
scroggo@google.com81f9d2e2012-09-20 14:54:21 +0000568
scroggo@google.com81f9d2e2012-09-20 14:54:21 +0000569 /**
commit-bot@chromium.orgf5e315c2014-03-19 17:26:07 +0000570 * Renders to tiles, rather than a single canvas.
commit-bot@chromium.org3f045172014-05-15 15:10:48 +0000571 * If fWritePath was provided, a separate file is
scroggo@google.com81f9d2e2012-09-20 14:54:21 +0000572 * created for each tile, named "path0.png", "path1.png", etc.
scroggo@google.com81f9d2e2012-09-20 14:54:21 +0000573 */
mtklein72c9faa2015-01-09 10:06:39 -0800574 bool render(SkBitmap** out = NULL) SK_OVERRIDE;
scroggo@google.com81f9d2e2012-09-20 14:54:21 +0000575
mtklein72c9faa2015-01-09 10:06:39 -0800576 void end() SK_OVERRIDE;
keyar@chromium.org451bb9f2012-07-26 17:27:57 +0000577
keyar@chromium.orgcc6e5ef2012-07-27 20:09:26 +0000578 void setTileWidth(int width) {
579 fTileWidth = width;
580 }
581
582 int getTileWidth() const {
583 return fTileWidth;
584 }
585
586 void setTileHeight(int height) {
587 fTileHeight = height;
588 }
589
590 int getTileHeight() const {
591 return fTileHeight;
592 }
593
594 void setTileWidthPercentage(double percentage) {
595 fTileWidthPercentage = percentage;
596 }
597
keyar@chromium.org163b5672012-08-01 17:53:29 +0000598 double getTileWidthPercentage() const {
keyar@chromium.orgcc6e5ef2012-07-27 20:09:26 +0000599 return fTileWidthPercentage;
600 }
601
602 void setTileHeightPercentage(double percentage) {
603 fTileHeightPercentage = percentage;
604 }
605
keyar@chromium.org163b5672012-08-01 17:53:29 +0000606 double getTileHeightPercentage() const {
keyar@chromium.orgcc6e5ef2012-07-27 20:09:26 +0000607 return fTileHeightPercentage;
608 }
609
keyar@chromium.orgf4959ab2012-08-23 20:53:25 +0000610 void setTileMinPowerOf2Width(int width) {
611 SkASSERT(SkIsPow2(width) && width > 0);
612 if (!SkIsPow2(width) || width <= 0) {
613 return;
614 }
615
616 fTileMinPowerOf2Width = width;
617 }
618
619 int getTileMinPowerOf2Width() const {
620 return fTileMinPowerOf2Width;
621 }
622
mtklein72c9faa2015-01-09 10:06:39 -0800623 TiledPictureRenderer* getTiledRenderer() SK_OVERRIDE { return this; }
scroggo@google.comcbcef702012-12-13 22:09:28 +0000624
scroggo@google.com161e1ba2013-03-04 16:41:06 +0000625 virtual bool supportsTimingIndividualTiles() { return true; }
626
scroggo@google.comcbcef702012-12-13 22:09:28 +0000627 /**
628 * Report the number of tiles in the x and y directions. Must not be called before init.
629 * @param x Output parameter identifying the number of tiles in the x direction.
630 * @param y Output parameter identifying the number of tiles in the y direction.
631 * @return True if the tiles have been set up, and x and y are meaningful. If false, x and y are
632 * unmodified.
633 */
634 bool tileDimensions(int& x, int&y);
635
636 /**
637 * Move to the next tile and return its indices. Must be called before calling drawCurrentTile
638 * for the first time.
639 * @param i Output parameter identifying the column of the next tile to be drawn on the next
640 * call to drawNextTile.
641 * @param j Output parameter identifying the row of the next tile to be drawn on the next call
642 * to drawNextTile.
643 * @param True if the tiles have been created and the next tile to be drawn by drawCurrentTile
644 * is within the range of tiles. If false, i and j are unmodified.
645 */
646 bool nextTile(int& i, int& j);
647
648 /**
649 * Render one tile. This will draw the same tile each time it is called until nextTile is
650 * called. The tile rendered will depend on how many calls have been made to nextTile.
651 * It is an error to call this without first calling nextTile, or if nextTile returns false.
652 */
653 void drawCurrentTile();
654
scroggo@google.coma62da2f2012-11-02 21:28:12 +0000655protected:
robertphillips78c71272014-10-09 04:59:19 -0700656 SkTDArray<SkIRect> fTileRects;
keyar@chromium.org451bb9f2012-07-26 17:27:57 +0000657
mtklein72c9faa2015-01-09 10:06:39 -0800658 SkCanvas* setupCanvas(int width, int height) SK_OVERRIDE;
659 SkString getConfigNameInternal() SK_OVERRIDE;
scroggo@google.com0a049b82012-11-02 22:01:26 +0000660
keyar@chromium.org451bb9f2012-07-26 17:27:57 +0000661private:
scroggo@google.comcbcef702012-12-13 22:09:28 +0000662 int fTileWidth;
663 int fTileHeight;
664 double fTileWidthPercentage;
665 double fTileHeightPercentage;
666 int fTileMinPowerOf2Width;
667
668 // These variables are only used for timing individual tiles.
669 // Next tile to draw in fTileRects.
670 int fCurrentTileOffset;
671 // Number of tiles in the x direction.
672 int fTilesX;
673 // Number of tiles in the y direction.
674 int fTilesY;
scroggo@google.combcdf2ec2012-09-20 14:42:33 +0000675
keyar@chromium.org9d696c02012-08-07 17:11:33 +0000676 void setupTiles();
keyar@chromium.orgf4959ab2012-08-23 20:53:25 +0000677 void setupPowerOf2Tiles();
mtklein703dd2e2015-01-09 06:41:48 -0800678 bool postRender(SkCanvas*, const SkIRect& tileRect,
robertphillips78c71272014-10-09 04:59:19 -0700679 SkBitmap* tempBM, SkBitmap** out,
680 int tileNumber);
keyar@chromium.org9d696c02012-08-07 17:11:33 +0000681
682 typedef PictureRenderer INHERITED;
keyar@chromium.org451bb9f2012-07-26 17:27:57 +0000683};
684
scroggo@google.com9a412522012-09-07 15:21:18 +0000685/**
686 * This class does not do any rendering, but its render function executes turning an SkPictureRecord
687 * into an SkPicturePlayback, which we want to time.
688 */
689class PlaybackCreationRenderer : public PictureRenderer {
690public:
krajcevskib1aded82014-08-18 07:52:17 -0700691#if SK_SUPPORT_GPU
692 PlaybackCreationRenderer(const GrContext::Options &opts) : INHERITED(opts) { }
693#endif
694
mtklein72c9faa2015-01-09 10:06:39 -0800695 void setup() SK_OVERRIDE;
scroggo@google.com9a412522012-09-07 15:21:18 +0000696
mtklein72c9faa2015-01-09 10:06:39 -0800697 bool render(SkBitmap** out = NULL) SK_OVERRIDE;
scroggo@google.com9a412522012-09-07 15:21:18 +0000698
mtklein72c9faa2015-01-09 10:06:39 -0800699 SkString getPerIterTimeFormat() SK_OVERRIDE { return SkString("%.4f"); }
scroggo@google.com9a412522012-09-07 15:21:18 +0000700
mtklein72c9faa2015-01-09 10:06:39 -0800701 SkString getNormalTimeFormat() SK_OVERRIDE { return SkString("%6.4f"); }
scroggo@google.com9a412522012-09-07 15:21:18 +0000702
703private:
robertphillips@google.com84b18c72014-04-13 19:09:42 +0000704 SkAutoTDelete<SkPictureRecorder> fRecorder;
scroggo@google.com0a049b82012-11-02 22:01:26 +0000705
mtklein72c9faa2015-01-09 10:06:39 -0800706 SkString getConfigNameInternal() SK_OVERRIDE;
scroggo@google.com0a049b82012-11-02 22:01:26 +0000707
scroggo@google.com9a412522012-09-07 15:21:18 +0000708 typedef PictureRenderer INHERITED;
709};
710
krajcevskib1aded82014-08-18 07:52:17 -0700711#if SK_SUPPORT_GPU
712extern PictureRenderer* CreateGatherPixelRefsRenderer(const GrContext::Options& opts);
713#else
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000714extern PictureRenderer* CreateGatherPixelRefsRenderer();
krajcevskib1aded82014-08-18 07:52:17 -0700715#endif
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000716
keyar@chromium.org451bb9f2012-07-26 17:27:57 +0000717}
718
719#endif // PictureRenderer_DEFINED