blob: fadf97085fcd79f1b33e84b182cf7f24198dfa00 [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
bsalomon682c2692015-05-22 14:01:46 -070031struct GrContextOptions;
keyar@chromium.org451bb9f2012-07-26 17:27:57 +000032class SkBitmap;
33class SkCanvas;
kkinnunen9e61bb72014-10-09 05:24:15 -070034class SkGLContext;
scroggo@google.coma62da2f2012-11-02 21:28:12 +000035class SkThread;
keyar@chromium.org451bb9f2012-07-26 17:27:57 +000036
37namespace sk_tools {
38
scroggo@google.comcbcef702012-12-13 22:09:28 +000039class TiledPictureRenderer;
40
keyar@chromium.org451bb9f2012-07-26 17:27:57 +000041class PictureRenderer : public SkRefCnt {
scroggo@google.comcbcef702012-12-13 22:09:28 +000042
keyar@chromium.org451bb9f2012-07-26 17:27:57 +000043public:
keyar@chromium.orgc81686c2012-08-20 15:04:04 +000044 enum SkDeviceTypes {
scroggo@google.com0556ea02013-02-08 19:38:21 +000045#if SK_ANGLE
46 kAngle_DeviceType,
47#endif
rmistry@google.com6ab96732014-01-06 18:37:24 +000048#if SK_MESA
49 kMesa_DeviceType,
50#endif
keyar@chromium.orgc81686c2012-08-20 15:04:04 +000051 kBitmap_DeviceType,
52#if SK_SUPPORT_GPU
scroggo@google.com0556ea02013-02-08 19:38:21 +000053 kGPU_DeviceType,
commit-bot@chromium.org0fd52702014-03-07 18:41:14 +000054 kNVPR_DeviceType,
keyar@chromium.orgc81686c2012-08-20 15:04:04 +000055#endif
56 };
57
junov@chromium.org9313ca42012-11-02 18:11:49 +000058 enum BBoxHierarchyType {
59 kNone_BBoxHierarchyType = 0,
60 kRTree_BBoxHierarchyType,
commit-bot@chromium.orgcdd0f922014-03-11 17:27:07 +000061
mtklein703dd2e2015-01-09 06:41:48 -080062 kLast_BBoxHierarchyType = kRTree_BBoxHierarchyType,
junov@chromium.org9313ca42012-11-02 18:11:49 +000063 };
64
caryclark@google.coma3622372012-11-06 21:26:13 +000065 // this uses SkPaint::Flags as a base and adds additional flags
66 enum DrawFilterFlags {
67 kNone_DrawFilterFlag = 0,
reed@google.com881b10b2013-05-22 14:03:45 +000068 kHinting_DrawFilterFlag = 0x10000, // toggles between no hinting and normal hinting
69 kSlightHinting_DrawFilterFlag = 0x20000, // toggles between slight and normal hinting
70 kAAClip_DrawFilterFlag = 0x40000, // toggles between soft and hard clip
humper@google.com387db0a2013-07-09 14:13:04 +000071 kMaskFilter_DrawFilterFlag = 0x80000, // toggles on/off mask filters (e.g., blurs)
caryclark@google.coma3622372012-11-06 21:26:13 +000072 };
73
robertphillips@google.com49149312013-07-03 15:34:35 +000074 SK_COMPILE_ASSERT(!(kMaskFilter_DrawFilterFlag & SkPaint::kAllFlags), maskfilter_flag_must_be_greater);
caryclark@google.coma3622372012-11-06 21:26:13 +000075 SK_COMPILE_ASSERT(!(kHinting_DrawFilterFlag & SkPaint::kAllFlags),
76 hinting_flag_must_be_greater);
77 SK_COMPILE_ASSERT(!(kSlightHinting_DrawFilterFlag & SkPaint::kAllFlags),
78 slight_hinting_flag_must_be_greater);
79
scroggo@google.coma62da2f2012-11-02 21:28:12 +000080 /**
81 * Called with each new SkPicture to render.
commit-bot@chromium.orgf5e315c2014-03-19 17:26:07 +000082 *
83 * @param pict The SkPicture to render.
commit-bot@chromium.org3f045172014-05-15 15:10:48 +000084 * @param writePath The output directory within which this renderer should write all images,
85 * or NULL if this renderer should not write all images.
86 * @param mismatchPath The output directory within which this renderer should write any images
87 * which do not match expectations, or NULL if this renderer should not write mismatches.
commit-bot@chromium.orgf5e315c2014-03-19 17:26:07 +000088 * @param inputFilename The name of the input file we are rendering.
89 * @param useChecksumBasedFilenames Whether to use checksum-based filenames when writing
90 * bitmap images to disk.
robertphillips78c71272014-10-09 04:59:19 -070091 * @param useMultiPictureDraw true if MultiPictureDraw should be used for rendering
scroggo@google.coma62da2f2012-11-02 21:28:12 +000092 */
mtklein2a65a232014-08-26 14:07:04 -070093 virtual void init(const SkPicture* pict,
94 const SkString* writePath,
robertphillipsce4dd3d2014-07-07 13:46:35 -070095 const SkString* mismatchPath,
mtklein2a65a232014-08-26 14:07:04 -070096 const SkString* inputFilename,
robertphillips78c71272014-10-09 04:59:19 -070097 bool useChecksumBasedFilenames,
98 bool useMultiPictureDraw);
scroggo@google.com9a412522012-09-07 15:21:18 +000099
100 /**
commit-bot@chromium.org8991c672014-05-22 00:36:05 +0000101 * TODO(epoger): Temporary hack, while we work on http://skbug.com/2584 ('bench_pictures is
102 * timing reading pixels and writing json files'), such that:
103 * - render_pictures can call this method and continue to work
104 * - any other callers (bench_pictures) will skip calls to write() by default
105 */
106 void enableWrites() { fEnableWrites = true; }
107
108 /**
scroggo@google.comc0d5e542012-12-13 21:40:48 +0000109 * Set the viewport so that only the portion listed gets drawn.
110 */
111 void setViewport(SkISize size) { fViewport = size; }
112
113 /**
scroggo@google.com82ec0b02012-12-17 19:25:54 +0000114 * Set the scale factor at which draw the picture.
115 */
116 void setScaleFactor(SkScalar scale) { fScaleFactor = scale; }
117
118 /**
scroggo@google.com9a412522012-09-07 15:21:18 +0000119 * Perform any setup that should done prior to each iteration of render() which should not be
120 * timed.
121 */
122 virtual void setup() {}
123
124 /**
commit-bot@chromium.orgf5e315c2014-03-19 17:26:07 +0000125 * Perform the work. If this is being called within the context of bench_pictures,
126 * this is the step that will be timed.
127 *
128 * Typically "the work" is rendering an SkPicture into a bitmap, but in some subclasses
129 * it is recording the source SkPicture into another SkPicture.
130 *
commit-bot@chromium.org3f045172014-05-15 15:10:48 +0000131 * If fWritePath has been specified, the result of the work will be written to that dir.
132 * If fMismatchPath has been specified, and the actual image result differs from its
133 * expectation, the result of the work will be written to that dir.
commit-bot@chromium.orgf5e315c2014-03-19 17:26:07 +0000134 *
135 * @param out If non-null, the implementing subclass MAY allocate an SkBitmap, copy the
136 * output image into it, and return it here. (Some subclasses ignore this parameter)
commit-bot@chromium.org3f045172014-05-15 15:10:48 +0000137 * @return bool True if rendering succeeded and, if fWritePath had been specified, the output
commit-bot@chromium.orgf5e315c2014-03-19 17:26:07 +0000138 * was successfully written to a file.
scroggo@google.com9a412522012-09-07 15:21:18 +0000139 */
commit-bot@chromium.orgf5e315c2014-03-19 17:26:07 +0000140 virtual bool render(SkBitmap** out = NULL) = 0;
scroggo@google.com9a412522012-09-07 15:21:18 +0000141
scroggo@google.coma62da2f2012-11-02 21:28:12 +0000142 /**
143 * Called once finished with a particular SkPicture, before calling init again, and before
144 * being done with this Renderer.
145 */
keyar@chromium.org9d696c02012-08-07 17:11:33 +0000146 virtual void end();
scroggo@google.coma62da2f2012-11-02 21:28:12 +0000147
scroggo@google.comcbcef702012-12-13 22:09:28 +0000148 /**
149 * If this PictureRenderer is actually a TiledPictureRender, return a pointer to this as a
150 * TiledPictureRender so its methods can be called.
151 */
152 virtual TiledPictureRenderer* getTiledRenderer() { return NULL; }
153
scroggo@google.com08085f82013-01-28 20:40:24 +0000154 /**
155 * 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 +0000156 * flush, swapBuffers and, if callFinish is true, finish.
scroggo@google.com08085f82013-01-28 20:40:24 +0000157 * @param callFinish Whether to call finish.
158 */
159 void resetState(bool callFinish);
keyar@chromium.org9d696c02012-08-07 17:11:33 +0000160
scroggo@google.com0556ea02013-02-08 19:38:21 +0000161 /**
robertphillips@google.com94d8f1e2013-12-18 17:25:33 +0000162 * Remove all decoded textures from the CPU caches and all uploaded textures
163 * from the GPU.
164 */
165 void purgeTextures();
166
167 /**
scroggo@google.com0556ea02013-02-08 19:38:21 +0000168 * Set the backend type. Returns true on success and false on failure.
169 */
kkinnunen80549fc2014-06-30 06:36:31 -0700170#if SK_SUPPORT_GPU
171 bool setDeviceType(SkDeviceTypes deviceType, GrGLStandard gpuAPI = kNone_GrGLStandard) {
172#else
scroggo@google.com0556ea02013-02-08 19:38:21 +0000173 bool setDeviceType(SkDeviceTypes deviceType) {
kkinnunen80549fc2014-06-30 06:36:31 -0700174#endif
keyar@chromium.orgc81686c2012-08-20 15:04:04 +0000175 fDeviceType = deviceType;
scroggo@google.com0556ea02013-02-08 19:38:21 +0000176#if SK_SUPPORT_GPU
177 // In case this function is called more than once
178 SkSafeUnref(fGrContext);
179 fGrContext = NULL;
180 // Set to Native so it will have an initial value.
181 GrContextFactory::GLContextType glContextType = GrContextFactory::kNative_GLContextType;
182#endif
183 switch(deviceType) {
184 case kBitmap_DeviceType:
185 return true;
186#if SK_SUPPORT_GPU
187 case kGPU_DeviceType:
188 // Already set to GrContextFactory::kNative_GLContextType, above.
189 break;
commit-bot@chromium.org0fd52702014-03-07 18:41:14 +0000190 case kNVPR_DeviceType:
191 glContextType = GrContextFactory::kNVPR_GLContextType;
192 break;
scroggo@google.com0556ea02013-02-08 19:38:21 +0000193#if SK_ANGLE
194 case kAngle_DeviceType:
195 glContextType = GrContextFactory::kANGLE_GLContextType;
196 break;
197#endif
rmistry@google.com6ab96732014-01-06 18:37:24 +0000198#if SK_MESA
199 case kMesa_DeviceType:
200 glContextType = GrContextFactory::kMESA_GLContextType;
201 break;
202#endif
scroggo@google.com0556ea02013-02-08 19:38:21 +0000203#endif
204 default:
205 // Invalid device type.
206 return false;
207 }
208#if SK_SUPPORT_GPU
kkinnunen80549fc2014-06-30 06:36:31 -0700209 fGrContext = fGrContextFactory.get(glContextType, gpuAPI);
scroggo@google.com0556ea02013-02-08 19:38:21 +0000210 if (NULL == fGrContext) {
211 return false;
212 } else {
213 fGrContext->ref();
214 return true;
215 }
216#endif
keyar@chromium.orgfe6391a2012-08-20 15:03:41 +0000217 }
218
jvanverth@google.comf6a90332013-05-02 12:39:37 +0000219#if SK_SUPPORT_GPU
220 void setSampleCount(int sampleCount) {
221 fSampleCount = sampleCount;
222 }
jvanverth4736e142014-11-07 07:12:46 -0800223
224 void setUseDFText(bool useDFText) {
225 fUseDFText = useDFText;
226 }
jvanverth@google.comf6a90332013-05-02 12:39:37 +0000227#endif
228
caryclark@google.come3e940c2012-11-07 16:42:17 +0000229 void setDrawFilters(DrawFilterFlags const * const filters, const SkString& configName) {
230 memcpy(fDrawFilters, filters, sizeof(fDrawFilters));
caryclark@google.coma3622372012-11-06 21:26:13 +0000231 fDrawFiltersConfig = configName;
232 }
233
junov@chromium.org9313ca42012-11-02 18:11:49 +0000234 void setBBoxHierarchyType(BBoxHierarchyType bbhType) {
235 fBBoxHierarchyType = bbhType;
236 }
237
junov@chromium.orge286e842013-03-13 17:27:16 +0000238 BBoxHierarchyType getBBoxHierarchyType() { return fBBoxHierarchyType; }
239
commit-bot@chromium.org205ce482014-05-12 15:37:20 +0000240 void setJsonSummaryPtr(ImageResultsAndExpectations* jsonSummaryPtr) {
commit-bot@chromium.orga3f882c2013-12-13 20:52:36 +0000241 fJsonSummaryPtr = jsonSummaryPtr;
242 }
243
keyar@chromium.orgfe6391a2012-08-20 15:03:41 +0000244 bool isUsingBitmapDevice() {
keyar@chromium.org78a35c52012-08-20 15:03:44 +0000245 return kBitmap_DeviceType == fDeviceType;
keyar@chromium.org4ea96c52012-08-20 15:03:29 +0000246 }
247
scroggo@google.com9a412522012-09-07 15:21:18 +0000248 virtual SkString getPerIterTimeFormat() { return SkString("%.2f"); }
249
250 virtual SkString getNormalTimeFormat() { return SkString("%6.2f"); }
251
scroggo@google.com0a049b82012-11-02 22:01:26 +0000252 /**
253 * Reports the configuration of this PictureRenderer.
254 */
255 SkString getConfigName() {
256 SkString config = this->getConfigNameInternal();
scroggo@google.comc4013c12012-12-13 22:07:08 +0000257 if (!fViewport.isEmpty()) {
258 config.appendf("_viewport_%ix%i", fViewport.width(), fViewport.height());
259 }
commit-bot@chromium.org9de35eb2013-12-20 21:49:33 +0000260 if (fScaleFactor != SK_Scalar1) {
261 config.appendf("_scalar_%f", SkScalarToFloat(fScaleFactor));
262 }
scroggo@google.com0a049b82012-11-02 22:01:26 +0000263 if (kRTree_BBoxHierarchyType == fBBoxHierarchyType) {
264 config.append("_rtree");
265 }
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);
jvanverth4736e142014-11-07 07:12:46 -0800271 } else if (fUseDFText) {
272 config.append("_gpudft");
jvanverth@google.comf6a90332013-05-02 12:39:37 +0000273 } else {
274 config.append("_gpu");
275 }
scroggo@google.com0556ea02013-02-08 19:38:21 +0000276 break;
commit-bot@chromium.org0fd52702014-03-07 18:41:14 +0000277 case kNVPR_DeviceType:
278 config.appendf("_nvprmsaa%d", fSampleCount);
279 break;
scroggo@google.com0556ea02013-02-08 19:38:21 +0000280#if SK_ANGLE
281 case kAngle_DeviceType:
282 config.append("_angle");
283 break;
scroggo@google.com0a049b82012-11-02 22:01:26 +0000284#endif
rmistry@google.com6ab96732014-01-06 18:37:24 +0000285#if SK_MESA
286 case kMesa_DeviceType:
287 config.append("_mesa");
288 break;
289#endif
scroggo@google.com0556ea02013-02-08 19:38:21 +0000290 default:
291 // Assume that no extra info means bitmap.
292 break;
293 }
robertphillips@google.come8fe4bc2013-02-13 13:26:13 +0000294#endif
caryclark@google.coma3622372012-11-06 21:26:13 +0000295 config.append(fDrawFiltersConfig.c_str());
scroggo@google.com0a049b82012-11-02 22:01:26 +0000296 return config;
297 }
298
kelvinly4d1a3642014-06-26 11:26:40 -0700299 Json::Value getJSONConfig() {
300 Json::Value result;
301
302 result["mode"] = this->getConfigNameInternal().c_str();
303 result["scale"] = 1.0f;
304 if (SK_Scalar1 != fScaleFactor) {
305 result["scale"] = SkScalarToFloat(fScaleFactor);
306 }
307 if (kRTree_BBoxHierarchyType == fBBoxHierarchyType) {
308 result["bbh"] = "rtree";
kelvinly4d1a3642014-06-26 11:26:40 -0700309 }
310#if SK_SUPPORT_GPU
311 SkString tmp;
312 switch (fDeviceType) {
313 case kGPU_DeviceType:
314 if (0 != fSampleCount) {
315 tmp = "msaa";
316 tmp.appendS32(fSampleCount);
317 result["config"] = tmp.c_str();
jvanverth4736e142014-11-07 07:12:46 -0800318 } else if (fUseDFText) {
319 result["config"] = "gpudft";
kelvinly4d1a3642014-06-26 11:26:40 -0700320 } else {
321 result["config"] = "gpu";
322 }
323 break;
324 case kNVPR_DeviceType:
325 tmp = "nvprmsaa";
326 tmp.appendS32(fSampleCount);
327 result["config"] = tmp.c_str();
328 break;
329#if SK_ANGLE
330 case kAngle_DeviceType:
331 result["config"] = "angle";
332 break;
333#endif
334#if SK_MESA
335 case kMesa_DeviceType:
336 result["config"] = "mesa";
337 break;
338#endif
339 default:
340 // Assume that no extra info means bitmap.
341 break;
342 }
343#endif
344 return result;
345 }
346
keyar@chromium.org4ea96c52012-08-20 15:03:29 +0000347#if SK_SUPPORT_GPU
keyar@chromium.orgfe6391a2012-08-20 15:03:41 +0000348 bool isUsingGpuDevice() {
scroggo@google.com0556ea02013-02-08 19:38:21 +0000349 switch (fDeviceType) {
350 case kGPU_DeviceType:
commit-bot@chromium.org0fd52702014-03-07 18:41:14 +0000351 case kNVPR_DeviceType:
scroggo@google.com0556ea02013-02-08 19:38:21 +0000352 // fall through
353#if SK_ANGLE
354 case kAngle_DeviceType:
rmistry@google.com6ab96732014-01-06 18:37:24 +0000355 // fall through
356#endif
357#if SK_MESA
358 case kMesa_DeviceType:
scroggo@google.com0556ea02013-02-08 19:38:21 +0000359#endif
360 return true;
361 default:
362 return false;
363 }
keyar@chromium.orgfe6391a2012-08-20 15:03:41 +0000364 }
keyar@chromium.org77a55222012-08-20 15:03:47 +0000365
kkinnunen9e61bb72014-10-09 05:24:15 -0700366 SkGLContext* getGLContext() {
scroggo@google.com0556ea02013-02-08 19:38:21 +0000367 GrContextFactory::GLContextType glContextType
368 = GrContextFactory::kNull_GLContextType;
369 switch(fDeviceType) {
370 case kGPU_DeviceType:
371 glContextType = GrContextFactory::kNative_GLContextType;
372 break;
commit-bot@chromium.org0fd52702014-03-07 18:41:14 +0000373 case kNVPR_DeviceType:
374 glContextType = GrContextFactory::kNVPR_GLContextType;
375 break;
scroggo@google.com0556ea02013-02-08 19:38:21 +0000376#if SK_ANGLE
377 case kAngle_DeviceType:
378 glContextType = GrContextFactory::kANGLE_GLContextType;
379 break;
380#endif
rmistry@google.com6ab96732014-01-06 18:37:24 +0000381#if SK_MESA
382 case kMesa_DeviceType:
383 glContextType = GrContextFactory::kMESA_GLContextType;
384 break;
385#endif
scroggo@google.com0556ea02013-02-08 19:38:21 +0000386 default:
387 return NULL;
keyar@chromium.org77a55222012-08-20 15:03:47 +0000388 }
scroggo@google.com0556ea02013-02-08 19:38:21 +0000389 return fGrContextFactory.getGLContext(glContextType);
keyar@chromium.org77a55222012-08-20 15:03:47 +0000390 }
robertphillips@google.com163c84b2012-09-13 15:40:37 +0000391
392 GrContext* getGrContext() {
393 return fGrContext;
394 }
krajcevskib1aded82014-08-18 07:52:17 -0700395
bsalomon682c2692015-05-22 14:01:46 -0700396 const GrContextOptions& getGrContextOptions() {
krajcevskib1aded82014-08-18 07:52:17 -0700397 return fGrContextFactory.getGlobalOptions();
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
robertphillipsce4dd3d2014-07-07 13:46:35 -0700405 const SkPicture* getPicture() {
commit-bot@chromium.org8ddc26b2014-03-31 17:55:12 +0000406 return fPicture;
407 }
mtklein2a65a232014-08-26 14:07:04 -0700408
krajcevskib1aded82014-08-18 07:52:17 -0700409#if SK_SUPPORT_GPU
bsalomon682c2692015-05-22 14:01:46 -0700410 explicit PictureRenderer(const GrContextOptions &opts)
krajcevskib1aded82014-08-18 07:52:17 -0700411#else
keyar@chromium.org02dfb122012-08-20 15:03:36 +0000412 PictureRenderer()
krajcevskib1aded82014-08-18 07:52:17 -0700413#endif
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
krajcevskib1aded82014-08-18 07:52:17 -0700420 , fGrContextFactory(opts)
scroggo@google.com0556ea02013-02-08 19:38:21 +0000421 , fGrContext(NULL)
jvanverth@google.comf6a90332013-05-02 12:39:37 +0000422 , fSampleCount(0)
jvanverth4736e142014-11-07 07:12:46 -0800423 , fUseDFText(false)
keyar@chromium.org06125642012-08-20 15:03:33 +0000424#endif
caryclark@google.come3e940c2012-11-07 16:42:17 +0000425 {
426 sk_bzero(fDrawFilters, sizeof(fDrawFilters));
scroggo@google.comc0d5e542012-12-13 21:40:48 +0000427 fViewport.set(0, 0);
caryclark@google.come3e940c2012-11-07 16:42:17 +0000428 }
keyar@chromium.org06125642012-08-20 15:03:33 +0000429
scroggo@google.com0556ea02013-02-08 19:38:21 +0000430#if SK_SUPPORT_GPU
431 virtual ~PictureRenderer() {
432 SkSafeUnref(fGrContext);
433 }
434#endif
435
keyar@chromium.org9d696c02012-08-07 17:11:33 +0000436protected:
437 SkAutoTUnref<SkCanvas> fCanvas;
robertphillipsce4dd3d2014-07-07 13:46:35 -0700438 SkAutoTUnref<const SkPicture> fPicture;
commit-bot@chromium.orgf5e315c2014-03-19 17:26:07 +0000439 bool fUseChecksumBasedFilenames;
robertphillips78c71272014-10-09 04:59:19 -0700440 bool fUseMultiPictureDraw;
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;
keyar@chromium.org06125642012-08-20 15:03:33 +0000450
scroggo@google.comc0d5e542012-12-13 21:40:48 +0000451 void buildBBoxHierarchy();
452
453 /**
454 * Return the total width that should be drawn. If the viewport width has been set greater than
455 * 0, this will be the minimum of the current SkPicture's width and the viewport's width.
456 */
457 int getViewWidth();
458
459 /**
460 * Return the total height that should be drawn. If the viewport height has been set greater
461 * than 0, this will be the minimum of the current SkPicture's height and the viewport's height.
462 */
463 int getViewHeight();
464
scroggo@google.com82ec0b02012-12-17 19:25:54 +0000465 /**
466 * Scales the provided canvas to the scale factor set by setScaleFactor.
467 */
468 void scaleToScaleFactor(SkCanvas*);
469
commit-bot@chromium.org5fb2ce32014-04-17 23:35:06 +0000470 SkBBHFactory* getFactory();
robertphillips9f1c2412014-06-09 06:25:34 -0700471 uint32_t recordFlags() const { return 0; }
scroggo@google.comc0d5e542012-12-13 21:40:48 +0000472 SkCanvas* setupCanvas();
473 virtual SkCanvas* setupCanvas(int width, int height);
474
commit-bot@chromium.orgf5e315c2014-03-19 17:26:07 +0000475 /**
476 * Copy src to dest; if src==NULL, set dest to empty string.
477 */
478 static void CopyString(SkString* dest, const SkString* src);
479
keyar@chromium.org9d696c02012-08-07 17:11:33 +0000480private:
scroggo@google.comc0d5e542012-12-13 21:40:48 +0000481 SkISize fViewport;
scroggo@google.com82ec0b02012-12-17 19:25:54 +0000482 SkScalar fScaleFactor;
scroggo@google.com0556ea02013-02-08 19:38:21 +0000483#if SK_SUPPORT_GPU
484 GrContextFactory fGrContextFactory;
485 GrContext* fGrContext;
jvanverth@google.comf6a90332013-05-02 12:39:37 +0000486 int fSampleCount;
jvanverth4736e142014-11-07 07:12:46 -0800487 bool fUseDFText;
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 {
krajcevskib1aded82014-08-18 07:52:17 -0700500public:
501#if SK_SUPPORT_GPU
bsalomon682c2692015-05-22 14:01:46 -0700502 RecordPictureRenderer(const GrContextOptions &opts) : INHERITED(opts) { }
krajcevskib1aded82014-08-18 07:52:17 -0700503#endif
504
mtklein36352bf2015-03-25 18:17:31 -0700505 bool render(SkBitmap** out = NULL) override;
scroggo@google.com9a412522012-09-07 15:21:18 +0000506
mtklein36352bf2015-03-25 18:17:31 -0700507 SkString getPerIterTimeFormat() override { return SkString("%.4f"); }
scroggo@google.com9a412522012-09-07 15:21:18 +0000508
mtklein36352bf2015-03-25 18:17:31 -0700509 SkString getNormalTimeFormat() override { return SkString("%6.4f"); }
scroggo@google.com0a049b82012-11-02 22:01:26 +0000510
djsollen@google.comfd9720c2012-11-06 16:54:40 +0000511protected:
mtklein36352bf2015-03-25 18:17:31 -0700512 SkCanvas* setupCanvas(int width, int height) override;
djsollen@google.comfd9720c2012-11-06 16:54:40 +0000513
scroggo@google.com0a049b82012-11-02 22:01:26 +0000514private:
mtklein36352bf2015-03-25 18:17:31 -0700515 SkString getConfigNameInternal() override;
krajcevskib1aded82014-08-18 07:52:17 -0700516
517 typedef PictureRenderer INHERITED;
scroggo@google.com9a412522012-09-07 15:21:18 +0000518};
519
keyar@chromium.org451bb9f2012-07-26 17:27:57 +0000520class PipePictureRenderer : public PictureRenderer {
keyar@chromium.org163b5672012-08-01 17:53:29 +0000521public:
krajcevskib1aded82014-08-18 07:52:17 -0700522#if SK_SUPPORT_GPU
bsalomon682c2692015-05-22 14:01:46 -0700523 PipePictureRenderer(const GrContextOptions &opts) : INHERITED(opts) { }
krajcevskib1aded82014-08-18 07:52:17 -0700524#endif
525
mtklein36352bf2015-03-25 18:17:31 -0700526 bool render(SkBitmap** out = NULL) override;
keyar@chromium.org9d696c02012-08-07 17:11:33 +0000527
528private:
mtklein36352bf2015-03-25 18:17:31 -0700529 SkString getConfigNameInternal() override;
scroggo@google.com0a049b82012-11-02 22:01:26 +0000530
keyar@chromium.org9d696c02012-08-07 17:11:33 +0000531 typedef PictureRenderer INHERITED;
keyar@chromium.org451bb9f2012-07-26 17:27:57 +0000532};
533
534class SimplePictureRenderer : public PictureRenderer {
keyar@chromium.org163b5672012-08-01 17:53:29 +0000535public:
krajcevskib1aded82014-08-18 07:52:17 -0700536#if SK_SUPPORT_GPU
bsalomon682c2692015-05-22 14:01:46 -0700537 SimplePictureRenderer(const GrContextOptions &opts) : INHERITED(opts) { }
krajcevskib1aded82014-08-18 07:52:17 -0700538#endif
539
robertphillipsce4dd3d2014-07-07 13:46:35 -0700540 virtual void init(const SkPicture* pict,
mtklein2a65a232014-08-26 14:07:04 -0700541 const SkString* writePath,
robertphillipsce4dd3d2014-07-07 13:46:35 -0700542 const SkString* mismatchPath,
mtklein2a65a232014-08-26 14:07:04 -0700543 const SkString* inputFilename,
robertphillips78c71272014-10-09 04:59:19 -0700544 bool useChecksumBasedFilenames,
mtklein36352bf2015-03-25 18:17:31 -0700545 bool useMultiPictureDraw) override;
junov@chromium.org9313ca42012-11-02 18:11:49 +0000546
mtklein36352bf2015-03-25 18:17:31 -0700547 bool render(SkBitmap** out = NULL) override;
keyar@chromium.org9d696c02012-08-07 17:11:33 +0000548
549private:
mtklein36352bf2015-03-25 18:17:31 -0700550 SkString getConfigNameInternal() override;
scroggo@google.com0a049b82012-11-02 22:01:26 +0000551
keyar@chromium.org9d696c02012-08-07 17:11:33 +0000552 typedef PictureRenderer INHERITED;
keyar@chromium.org451bb9f2012-07-26 17:27:57 +0000553};
554
555class TiledPictureRenderer : public PictureRenderer {
556public:
krajcevskib1aded82014-08-18 07:52:17 -0700557#if SK_SUPPORT_GPU
bsalomon682c2692015-05-22 14:01:46 -0700558 TiledPictureRenderer(const GrContextOptions &opts);
krajcevskib1aded82014-08-18 07:52:17 -0700559#else
keyar@chromium.org451bb9f2012-07-26 17:27:57 +0000560 TiledPictureRenderer();
krajcevskib1aded82014-08-18 07:52:17 -0700561#endif
keyar@chromium.org451bb9f2012-07-26 17:27:57 +0000562
mtklein2a65a232014-08-26 14:07:04 -0700563 virtual void init(const SkPicture* pict,
564 const SkString* writePath,
robertphillipsce4dd3d2014-07-07 13:46:35 -0700565 const SkString* mismatchPath,
mtklein2a65a232014-08-26 14:07:04 -0700566 const SkString* inputFilename,
robertphillips78c71272014-10-09 04:59:19 -0700567 bool useChecksumBasedFilenames,
mtklein36352bf2015-03-25 18:17:31 -0700568 bool useMultiPictureDraw) override;
scroggo@google.com81f9d2e2012-09-20 14:54:21 +0000569
scroggo@google.com81f9d2e2012-09-20 14:54:21 +0000570 /**
commit-bot@chromium.orgf5e315c2014-03-19 17:26:07 +0000571 * Renders to tiles, rather than a single canvas.
commit-bot@chromium.org3f045172014-05-15 15:10:48 +0000572 * If fWritePath was provided, a separate file is
scroggo@google.com81f9d2e2012-09-20 14:54:21 +0000573 * created for each tile, named "path0.png", "path1.png", etc.
scroggo@google.com81f9d2e2012-09-20 14:54:21 +0000574 */
mtklein36352bf2015-03-25 18:17:31 -0700575 bool render(SkBitmap** out = NULL) override;
scroggo@google.com81f9d2e2012-09-20 14:54:21 +0000576
mtklein36352bf2015-03-25 18:17:31 -0700577 void end() override;
keyar@chromium.org451bb9f2012-07-26 17:27:57 +0000578
keyar@chromium.orgcc6e5ef2012-07-27 20:09:26 +0000579 void setTileWidth(int width) {
580 fTileWidth = width;
581 }
582
583 int getTileWidth() const {
584 return fTileWidth;
585 }
586
587 void setTileHeight(int height) {
588 fTileHeight = height;
589 }
590
591 int getTileHeight() const {
592 return fTileHeight;
593 }
594
595 void setTileWidthPercentage(double percentage) {
596 fTileWidthPercentage = percentage;
597 }
598
keyar@chromium.org163b5672012-08-01 17:53:29 +0000599 double getTileWidthPercentage() const {
keyar@chromium.orgcc6e5ef2012-07-27 20:09:26 +0000600 return fTileWidthPercentage;
601 }
602
603 void setTileHeightPercentage(double percentage) {
604 fTileHeightPercentage = percentage;
605 }
606
keyar@chromium.org163b5672012-08-01 17:53:29 +0000607 double getTileHeightPercentage() const {
keyar@chromium.orgcc6e5ef2012-07-27 20:09:26 +0000608 return fTileHeightPercentage;
609 }
610
keyar@chromium.orgf4959ab2012-08-23 20:53:25 +0000611 void setTileMinPowerOf2Width(int width) {
612 SkASSERT(SkIsPow2(width) && width > 0);
613 if (!SkIsPow2(width) || width <= 0) {
614 return;
615 }
616
617 fTileMinPowerOf2Width = width;
618 }
619
620 int getTileMinPowerOf2Width() const {
621 return fTileMinPowerOf2Width;
622 }
623
mtklein36352bf2015-03-25 18:17:31 -0700624 TiledPictureRenderer* getTiledRenderer() override { return this; }
scroggo@google.comcbcef702012-12-13 22:09:28 +0000625
scroggo@google.com161e1ba2013-03-04 16:41:06 +0000626 virtual bool supportsTimingIndividualTiles() { return true; }
627
scroggo@google.comcbcef702012-12-13 22:09:28 +0000628 /**
629 * Report the number of tiles in the x and y directions. Must not be called before init.
630 * @param x Output parameter identifying the number of tiles in the x direction.
631 * @param y Output parameter identifying the number of tiles in the y direction.
632 * @return True if the tiles have been set up, and x and y are meaningful. If false, x and y are
633 * unmodified.
634 */
635 bool tileDimensions(int& x, int&y);
636
637 /**
638 * Move to the next tile and return its indices. Must be called before calling drawCurrentTile
639 * for the first time.
640 * @param i Output parameter identifying the column of the next tile to be drawn on the next
641 * call to drawNextTile.
642 * @param j Output parameter identifying the row of the next tile to be drawn on the next call
643 * to drawNextTile.
644 * @param True if the tiles have been created and the next tile to be drawn by drawCurrentTile
645 * is within the range of tiles. If false, i and j are unmodified.
646 */
647 bool nextTile(int& i, int& j);
648
649 /**
650 * Render one tile. This will draw the same tile each time it is called until nextTile is
651 * called. The tile rendered will depend on how many calls have been made to nextTile.
652 * It is an error to call this without first calling nextTile, or if nextTile returns false.
653 */
654 void drawCurrentTile();
655
scroggo@google.coma62da2f2012-11-02 21:28:12 +0000656protected:
robertphillips78c71272014-10-09 04:59:19 -0700657 SkTDArray<SkIRect> fTileRects;
keyar@chromium.org451bb9f2012-07-26 17:27:57 +0000658
mtklein36352bf2015-03-25 18:17:31 -0700659 SkCanvas* setupCanvas(int width, int height) override;
660 SkString getConfigNameInternal() override;
scroggo@google.com0a049b82012-11-02 22:01:26 +0000661
keyar@chromium.org451bb9f2012-07-26 17:27:57 +0000662private:
scroggo@google.comcbcef702012-12-13 22:09:28 +0000663 int fTileWidth;
664 int fTileHeight;
665 double fTileWidthPercentage;
666 double fTileHeightPercentage;
667 int fTileMinPowerOf2Width;
668
669 // These variables are only used for timing individual tiles.
670 // Next tile to draw in fTileRects.
671 int fCurrentTileOffset;
672 // Number of tiles in the x direction.
673 int fTilesX;
674 // Number of tiles in the y direction.
675 int fTilesY;
scroggo@google.combcdf2ec2012-09-20 14:42:33 +0000676
keyar@chromium.org9d696c02012-08-07 17:11:33 +0000677 void setupTiles();
keyar@chromium.orgf4959ab2012-08-23 20:53:25 +0000678 void setupPowerOf2Tiles();
mtklein703dd2e2015-01-09 06:41:48 -0800679 bool postRender(SkCanvas*, const SkIRect& tileRect,
robertphillips78c71272014-10-09 04:59:19 -0700680 SkBitmap* tempBM, SkBitmap** out,
681 int tileNumber);
keyar@chromium.org9d696c02012-08-07 17:11:33 +0000682
683 typedef PictureRenderer INHERITED;
keyar@chromium.org451bb9f2012-07-26 17:27:57 +0000684};
685
scroggo@google.com9a412522012-09-07 15:21:18 +0000686/**
687 * This class does not do any rendering, but its render function executes turning an SkPictureRecord
688 * into an SkPicturePlayback, which we want to time.
689 */
690class PlaybackCreationRenderer : public PictureRenderer {
691public:
krajcevskib1aded82014-08-18 07:52:17 -0700692#if SK_SUPPORT_GPU
bsalomon682c2692015-05-22 14:01:46 -0700693 PlaybackCreationRenderer(const GrContextOptions &opts) : INHERITED(opts) { }
krajcevskib1aded82014-08-18 07:52:17 -0700694#endif
695
mtklein36352bf2015-03-25 18:17:31 -0700696 void setup() override;
scroggo@google.com9a412522012-09-07 15:21:18 +0000697
mtklein36352bf2015-03-25 18:17:31 -0700698 bool render(SkBitmap** out = NULL) override;
scroggo@google.com9a412522012-09-07 15:21:18 +0000699
mtklein36352bf2015-03-25 18:17:31 -0700700 SkString getPerIterTimeFormat() override { return SkString("%.4f"); }
scroggo@google.com9a412522012-09-07 15:21:18 +0000701
mtklein36352bf2015-03-25 18:17:31 -0700702 SkString getNormalTimeFormat() override { return SkString("%6.4f"); }
scroggo@google.com9a412522012-09-07 15:21:18 +0000703
704private:
robertphillips@google.com84b18c72014-04-13 19:09:42 +0000705 SkAutoTDelete<SkPictureRecorder> fRecorder;
scroggo@google.com0a049b82012-11-02 22:01:26 +0000706
mtklein36352bf2015-03-25 18:17:31 -0700707 SkString getConfigNameInternal() override;
scroggo@google.com0a049b82012-11-02 22:01:26 +0000708
scroggo@google.com9a412522012-09-07 15:21:18 +0000709 typedef PictureRenderer INHERITED;
710};
711
krajcevskib1aded82014-08-18 07:52:17 -0700712#if SK_SUPPORT_GPU
bsalomon682c2692015-05-22 14:01:46 -0700713extern PictureRenderer* CreateGatherPixelRefsRenderer(const GrContextOptions& opts);
krajcevskib1aded82014-08-18 07:52:17 -0700714#else
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000715extern PictureRenderer* CreateGatherPixelRefsRenderer();
krajcevskib1aded82014-08-18 07:52:17 -0700716#endif
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000717
keyar@chromium.org451bb9f2012-07-26 17:27:57 +0000718}
719
720#endif // PictureRenderer_DEFINED