caryclark@google.com | 411bb72 | 2012-11-06 21:29:16 +0000 | [diff] [blame] | 1 | /* |
keyar@chromium.org | 451bb9f | 2012-07-26 17:27:57 +0000 | [diff] [blame] | 2 | * Copyright 2012 Google Inc. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
| 6 | */ |
| 7 | |
| 8 | #ifndef PictureRenderer_DEFINED |
| 9 | #define PictureRenderer_DEFINED |
scroggo@google.com | a62da2f | 2012-11-02 21:28:12 +0000 | [diff] [blame] | 10 | |
scroggo@google.com | 161e1ba | 2013-03-04 16:41:06 +0000 | [diff] [blame] | 11 | #include "SkCanvas.h" |
caryclark@google.com | a362237 | 2012-11-06 21:26:13 +0000 | [diff] [blame] | 12 | #include "SkDrawFilter.h" |
kelvinly | 4d1a364 | 2014-06-26 11:26:40 -0700 | [diff] [blame] | 13 | #include "SkJSONCPP.h" |
keyar@chromium.org | f4959ab | 2012-08-23 20:53:25 +0000 | [diff] [blame] | 14 | #include "SkMath.h" |
reed@google.com | ea6a306 | 2012-11-06 22:14:54 +0000 | [diff] [blame] | 15 | #include "SkPaint.h" |
scroggo@google.com | 9a41252 | 2012-09-07 15:21:18 +0000 | [diff] [blame] | 16 | #include "SkPicture.h" |
robertphillips@google.com | 770963f | 2014-04-18 18:04:41 +0000 | [diff] [blame] | 17 | #include "SkPictureRecorder.h" |
scroggo@google.com | acfb30e | 2012-09-18 14:32:35 +0000 | [diff] [blame] | 18 | #include "SkRect.h" |
keyar@chromium.org | 451bb9f | 2012-07-26 17:27:57 +0000 | [diff] [blame] | 19 | #include "SkRefCnt.h" |
scroggo@google.com | 9a41252 | 2012-09-07 15:21:18 +0000 | [diff] [blame] | 20 | #include "SkString.h" |
scroggo@google.com | a62da2f | 2012-11-02 21:28:12 +0000 | [diff] [blame] | 21 | #include "SkTDArray.h" |
scroggo@google.com | a62da2f | 2012-11-02 21:28:12 +0000 | [diff] [blame] | 22 | #include "SkTypes.h" |
keyar@chromium.org | 451bb9f | 2012-07-26 17:27:57 +0000 | [diff] [blame] | 23 | |
keyar@chromium.org | 0612564 | 2012-08-20 15:03:33 +0000 | [diff] [blame] | 24 | #if SK_SUPPORT_GPU |
| 25 | #include "GrContextFactory.h" |
| 26 | #include "GrContext.h" |
| 27 | #endif |
| 28 | |
commit-bot@chromium.org | 90c0fbd | 2014-05-09 03:18:41 +0000 | [diff] [blame] | 29 | #include "image_expectations.h" |
| 30 | |
keyar@chromium.org | 451bb9f | 2012-07-26 17:27:57 +0000 | [diff] [blame] | 31 | class SkBitmap; |
| 32 | class SkCanvas; |
robertphillips@google.com | 6177e69 | 2013-02-28 20:16:25 +0000 | [diff] [blame] | 33 | class SkGLContextHelper; |
scroggo@google.com | a62da2f | 2012-11-02 21:28:12 +0000 | [diff] [blame] | 34 | class SkThread; |
keyar@chromium.org | 451bb9f | 2012-07-26 17:27:57 +0000 | [diff] [blame] | 35 | |
| 36 | namespace sk_tools { |
| 37 | |
scroggo@google.com | cbcef70 | 2012-12-13 22:09:28 +0000 | [diff] [blame] | 38 | class TiledPictureRenderer; |
| 39 | |
keyar@chromium.org | 451bb9f | 2012-07-26 17:27:57 +0000 | [diff] [blame] | 40 | class PictureRenderer : public SkRefCnt { |
scroggo@google.com | cbcef70 | 2012-12-13 22:09:28 +0000 | [diff] [blame] | 41 | |
keyar@chromium.org | 451bb9f | 2012-07-26 17:27:57 +0000 | [diff] [blame] | 42 | public: |
keyar@chromium.org | c81686c | 2012-08-20 15:04:04 +0000 | [diff] [blame] | 43 | enum SkDeviceTypes { |
scroggo@google.com | 0556ea0 | 2013-02-08 19:38:21 +0000 | [diff] [blame] | 44 | #if SK_ANGLE |
| 45 | kAngle_DeviceType, |
| 46 | #endif |
rmistry@google.com | 6ab9673 | 2014-01-06 18:37:24 +0000 | [diff] [blame] | 47 | #if SK_MESA |
| 48 | kMesa_DeviceType, |
| 49 | #endif |
keyar@chromium.org | c81686c | 2012-08-20 15:04:04 +0000 | [diff] [blame] | 50 | kBitmap_DeviceType, |
| 51 | #if SK_SUPPORT_GPU |
scroggo@google.com | 0556ea0 | 2013-02-08 19:38:21 +0000 | [diff] [blame] | 52 | kGPU_DeviceType, |
commit-bot@chromium.org | 0fd5270 | 2014-03-07 18:41:14 +0000 | [diff] [blame] | 53 | kNVPR_DeviceType, |
keyar@chromium.org | c81686c | 2012-08-20 15:04:04 +0000 | [diff] [blame] | 54 | #endif |
| 55 | }; |
| 56 | |
junov@chromium.org | 9313ca4 | 2012-11-02 18:11:49 +0000 | [diff] [blame] | 57 | enum BBoxHierarchyType { |
| 58 | kNone_BBoxHierarchyType = 0, |
| 59 | kRTree_BBoxHierarchyType, |
junov@chromium.org | 7b53706 | 2012-11-06 18:58:43 +0000 | [diff] [blame] | 60 | kTileGrid_BBoxHierarchyType, |
commit-bot@chromium.org | cdd0f92 | 2014-03-11 17:27:07 +0000 | [diff] [blame] | 61 | |
| 62 | kLast_BBoxHierarchyType = kTileGrid_BBoxHierarchyType, |
junov@chromium.org | 9313ca4 | 2012-11-02 18:11:49 +0000 | [diff] [blame] | 63 | }; |
| 64 | |
caryclark@google.com | a362237 | 2012-11-06 21:26:13 +0000 | [diff] [blame] | 65 | // this uses SkPaint::Flags as a base and adds additional flags |
| 66 | enum DrawFilterFlags { |
| 67 | kNone_DrawFilterFlag = 0, |
reed@google.com | 881b10b | 2013-05-22 14:03:45 +0000 | [diff] [blame] | 68 | 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.com | 387db0a | 2013-07-09 14:13:04 +0000 | [diff] [blame] | 71 | kMaskFilter_DrawFilterFlag = 0x80000, // toggles on/off mask filters (e.g., blurs) |
caryclark@google.com | a362237 | 2012-11-06 21:26:13 +0000 | [diff] [blame] | 72 | }; |
| 73 | |
robertphillips@google.com | 4914931 | 2013-07-03 15:34:35 +0000 | [diff] [blame] | 74 | SK_COMPILE_ASSERT(!(kMaskFilter_DrawFilterFlag & SkPaint::kAllFlags), maskfilter_flag_must_be_greater); |
caryclark@google.com | a362237 | 2012-11-06 21:26:13 +0000 | [diff] [blame] | 75 | 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.com | a62da2f | 2012-11-02 21:28:12 +0000 | [diff] [blame] | 80 | /** |
| 81 | * Called with each new SkPicture to render. |
commit-bot@chromium.org | f5e315c | 2014-03-19 17:26:07 +0000 | [diff] [blame] | 82 | * |
| 83 | * @param pict The SkPicture to render. |
commit-bot@chromium.org | 3f04517 | 2014-05-15 15:10:48 +0000 | [diff] [blame] | 84 | * @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.org | f5e315c | 2014-03-19 17:26:07 +0000 | [diff] [blame] | 88 | * @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. |
scroggo@google.com | a62da2f | 2012-11-02 21:28:12 +0000 | [diff] [blame] | 91 | */ |
mtklein | 2a65a23 | 2014-08-26 14:07:04 -0700 | [diff] [blame] | 92 | virtual void init(const SkPicture* pict, |
| 93 | const SkString* writePath, |
robertphillips | ce4dd3d | 2014-07-07 13:46:35 -0700 | [diff] [blame] | 94 | const SkString* mismatchPath, |
mtklein | 2a65a23 | 2014-08-26 14:07:04 -0700 | [diff] [blame] | 95 | const SkString* inputFilename, |
robertphillips | ce4dd3d | 2014-07-07 13:46:35 -0700 | [diff] [blame] | 96 | bool useChecksumBasedFilenames); |
scroggo@google.com | 9a41252 | 2012-09-07 15:21:18 +0000 | [diff] [blame] | 97 | |
| 98 | /** |
commit-bot@chromium.org | 8991c67 | 2014-05-22 00:36:05 +0000 | [diff] [blame] | 99 | * TODO(epoger): Temporary hack, while we work on http://skbug.com/2584 ('bench_pictures is |
| 100 | * timing reading pixels and writing json files'), such that: |
| 101 | * - render_pictures can call this method and continue to work |
| 102 | * - any other callers (bench_pictures) will skip calls to write() by default |
| 103 | */ |
| 104 | void enableWrites() { fEnableWrites = true; } |
| 105 | |
| 106 | /** |
scroggo@google.com | c0d5e54 | 2012-12-13 21:40:48 +0000 | [diff] [blame] | 107 | * Set the viewport so that only the portion listed gets drawn. |
| 108 | */ |
| 109 | void setViewport(SkISize size) { fViewport = size; } |
| 110 | |
| 111 | /** |
scroggo@google.com | 82ec0b0 | 2012-12-17 19:25:54 +0000 | [diff] [blame] | 112 | * Set the scale factor at which draw the picture. |
| 113 | */ |
| 114 | void setScaleFactor(SkScalar scale) { fScaleFactor = scale; } |
| 115 | |
| 116 | /** |
scroggo@google.com | 9a41252 | 2012-09-07 15:21:18 +0000 | [diff] [blame] | 117 | * Perform any setup that should done prior to each iteration of render() which should not be |
| 118 | * timed. |
| 119 | */ |
| 120 | virtual void setup() {} |
| 121 | |
| 122 | /** |
commit-bot@chromium.org | f5e315c | 2014-03-19 17:26:07 +0000 | [diff] [blame] | 123 | * Perform the work. If this is being called within the context of bench_pictures, |
| 124 | * this is the step that will be timed. |
| 125 | * |
| 126 | * Typically "the work" is rendering an SkPicture into a bitmap, but in some subclasses |
| 127 | * it is recording the source SkPicture into another SkPicture. |
| 128 | * |
commit-bot@chromium.org | 3f04517 | 2014-05-15 15:10:48 +0000 | [diff] [blame] | 129 | * If fWritePath has been specified, the result of the work will be written to that dir. |
| 130 | * If fMismatchPath has been specified, and the actual image result differs from its |
| 131 | * expectation, the result of the work will be written to that dir. |
commit-bot@chromium.org | f5e315c | 2014-03-19 17:26:07 +0000 | [diff] [blame] | 132 | * |
| 133 | * @param out If non-null, the implementing subclass MAY allocate an SkBitmap, copy the |
| 134 | * output image into it, and return it here. (Some subclasses ignore this parameter) |
commit-bot@chromium.org | 3f04517 | 2014-05-15 15:10:48 +0000 | [diff] [blame] | 135 | * @return bool True if rendering succeeded and, if fWritePath had been specified, the output |
commit-bot@chromium.org | f5e315c | 2014-03-19 17:26:07 +0000 | [diff] [blame] | 136 | * was successfully written to a file. |
scroggo@google.com | 9a41252 | 2012-09-07 15:21:18 +0000 | [diff] [blame] | 137 | */ |
commit-bot@chromium.org | f5e315c | 2014-03-19 17:26:07 +0000 | [diff] [blame] | 138 | virtual bool render(SkBitmap** out = NULL) = 0; |
scroggo@google.com | 9a41252 | 2012-09-07 15:21:18 +0000 | [diff] [blame] | 139 | |
scroggo@google.com | a62da2f | 2012-11-02 21:28:12 +0000 | [diff] [blame] | 140 | /** |
| 141 | * Called once finished with a particular SkPicture, before calling init again, and before |
| 142 | * being done with this Renderer. |
| 143 | */ |
keyar@chromium.org | 9d696c0 | 2012-08-07 17:11:33 +0000 | [diff] [blame] | 144 | virtual void end(); |
scroggo@google.com | a62da2f | 2012-11-02 21:28:12 +0000 | [diff] [blame] | 145 | |
scroggo@google.com | cbcef70 | 2012-12-13 22:09:28 +0000 | [diff] [blame] | 146 | /** |
| 147 | * If this PictureRenderer is actually a TiledPictureRender, return a pointer to this as a |
| 148 | * TiledPictureRender so its methods can be called. |
| 149 | */ |
| 150 | virtual TiledPictureRenderer* getTiledRenderer() { return NULL; } |
| 151 | |
scroggo@google.com | 08085f8 | 2013-01-28 20:40:24 +0000 | [diff] [blame] | 152 | /** |
| 153 | * Resets the GPU's state. Does nothing if the backing is raster. For a GPU renderer, calls |
commit-bot@chromium.org | 51c040e | 2014-03-11 22:58:00 +0000 | [diff] [blame] | 154 | * flush, swapBuffers and, if callFinish is true, finish. |
scroggo@google.com | 08085f8 | 2013-01-28 20:40:24 +0000 | [diff] [blame] | 155 | * @param callFinish Whether to call finish. |
| 156 | */ |
| 157 | void resetState(bool callFinish); |
keyar@chromium.org | 9d696c0 | 2012-08-07 17:11:33 +0000 | [diff] [blame] | 158 | |
scroggo@google.com | 0556ea0 | 2013-02-08 19:38:21 +0000 | [diff] [blame] | 159 | /** |
robertphillips@google.com | 94d8f1e | 2013-12-18 17:25:33 +0000 | [diff] [blame] | 160 | * Remove all decoded textures from the CPU caches and all uploaded textures |
| 161 | * from the GPU. |
| 162 | */ |
| 163 | void purgeTextures(); |
| 164 | |
| 165 | /** |
scroggo@google.com | 0556ea0 | 2013-02-08 19:38:21 +0000 | [diff] [blame] | 166 | * Set the backend type. Returns true on success and false on failure. |
| 167 | */ |
kkinnunen | 80549fc | 2014-06-30 06:36:31 -0700 | [diff] [blame] | 168 | #if SK_SUPPORT_GPU |
| 169 | bool setDeviceType(SkDeviceTypes deviceType, GrGLStandard gpuAPI = kNone_GrGLStandard) { |
| 170 | #else |
scroggo@google.com | 0556ea0 | 2013-02-08 19:38:21 +0000 | [diff] [blame] | 171 | bool setDeviceType(SkDeviceTypes deviceType) { |
kkinnunen | 80549fc | 2014-06-30 06:36:31 -0700 | [diff] [blame] | 172 | #endif |
keyar@chromium.org | c81686c | 2012-08-20 15:04:04 +0000 | [diff] [blame] | 173 | fDeviceType = deviceType; |
scroggo@google.com | 0556ea0 | 2013-02-08 19:38:21 +0000 | [diff] [blame] | 174 | #if SK_SUPPORT_GPU |
| 175 | // In case this function is called more than once |
| 176 | SkSafeUnref(fGrContext); |
| 177 | fGrContext = NULL; |
| 178 | // Set to Native so it will have an initial value. |
| 179 | GrContextFactory::GLContextType glContextType = GrContextFactory::kNative_GLContextType; |
| 180 | #endif |
| 181 | switch(deviceType) { |
| 182 | case kBitmap_DeviceType: |
| 183 | return true; |
| 184 | #if SK_SUPPORT_GPU |
| 185 | case kGPU_DeviceType: |
| 186 | // Already set to GrContextFactory::kNative_GLContextType, above. |
| 187 | break; |
commit-bot@chromium.org | 0fd5270 | 2014-03-07 18:41:14 +0000 | [diff] [blame] | 188 | case kNVPR_DeviceType: |
| 189 | glContextType = GrContextFactory::kNVPR_GLContextType; |
| 190 | break; |
scroggo@google.com | 0556ea0 | 2013-02-08 19:38:21 +0000 | [diff] [blame] | 191 | #if SK_ANGLE |
| 192 | case kAngle_DeviceType: |
| 193 | glContextType = GrContextFactory::kANGLE_GLContextType; |
| 194 | break; |
| 195 | #endif |
rmistry@google.com | 6ab9673 | 2014-01-06 18:37:24 +0000 | [diff] [blame] | 196 | #if SK_MESA |
| 197 | case kMesa_DeviceType: |
| 198 | glContextType = GrContextFactory::kMESA_GLContextType; |
| 199 | break; |
| 200 | #endif |
scroggo@google.com | 0556ea0 | 2013-02-08 19:38:21 +0000 | [diff] [blame] | 201 | #endif |
| 202 | default: |
| 203 | // Invalid device type. |
| 204 | return false; |
| 205 | } |
| 206 | #if SK_SUPPORT_GPU |
kkinnunen | 80549fc | 2014-06-30 06:36:31 -0700 | [diff] [blame] | 207 | fGrContext = fGrContextFactory.get(glContextType, gpuAPI); |
scroggo@google.com | 0556ea0 | 2013-02-08 19:38:21 +0000 | [diff] [blame] | 208 | if (NULL == fGrContext) { |
| 209 | return false; |
| 210 | } else { |
| 211 | fGrContext->ref(); |
| 212 | return true; |
| 213 | } |
| 214 | #endif |
keyar@chromium.org | fe6391a | 2012-08-20 15:03:41 +0000 | [diff] [blame] | 215 | } |
| 216 | |
jvanverth@google.com | f6a9033 | 2013-05-02 12:39:37 +0000 | [diff] [blame] | 217 | #if SK_SUPPORT_GPU |
| 218 | void setSampleCount(int sampleCount) { |
| 219 | fSampleCount = sampleCount; |
| 220 | } |
| 221 | #endif |
| 222 | |
caryclark@google.com | e3e940c | 2012-11-07 16:42:17 +0000 | [diff] [blame] | 223 | void setDrawFilters(DrawFilterFlags const * const filters, const SkString& configName) { |
| 224 | memcpy(fDrawFilters, filters, sizeof(fDrawFilters)); |
caryclark@google.com | a362237 | 2012-11-06 21:26:13 +0000 | [diff] [blame] | 225 | fDrawFiltersConfig = configName; |
| 226 | } |
| 227 | |
junov@chromium.org | 9313ca4 | 2012-11-02 18:11:49 +0000 | [diff] [blame] | 228 | void setBBoxHierarchyType(BBoxHierarchyType bbhType) { |
| 229 | fBBoxHierarchyType = bbhType; |
| 230 | } |
| 231 | |
junov@chromium.org | e286e84 | 2013-03-13 17:27:16 +0000 | [diff] [blame] | 232 | BBoxHierarchyType getBBoxHierarchyType() { return fBBoxHierarchyType; } |
| 233 | |
junov@chromium.org | 7b53706 | 2012-11-06 18:58:43 +0000 | [diff] [blame] | 234 | void setGridSize(int width, int height) { |
junov@chromium.org | 29b19e5 | 2013-02-27 18:35:16 +0000 | [diff] [blame] | 235 | fGridInfo.fTileInterval.set(width, height); |
junov@chromium.org | 7b53706 | 2012-11-06 18:58:43 +0000 | [diff] [blame] | 236 | } |
| 237 | |
commit-bot@chromium.org | 205ce48 | 2014-05-12 15:37:20 +0000 | [diff] [blame] | 238 | void setJsonSummaryPtr(ImageResultsAndExpectations* jsonSummaryPtr) { |
commit-bot@chromium.org | a3f882c | 2013-12-13 20:52:36 +0000 | [diff] [blame] | 239 | fJsonSummaryPtr = jsonSummaryPtr; |
| 240 | } |
| 241 | |
keyar@chromium.org | fe6391a | 2012-08-20 15:03:41 +0000 | [diff] [blame] | 242 | bool isUsingBitmapDevice() { |
keyar@chromium.org | 78a35c5 | 2012-08-20 15:03:44 +0000 | [diff] [blame] | 243 | return kBitmap_DeviceType == fDeviceType; |
keyar@chromium.org | 4ea96c5 | 2012-08-20 15:03:29 +0000 | [diff] [blame] | 244 | } |
| 245 | |
scroggo@google.com | 9a41252 | 2012-09-07 15:21:18 +0000 | [diff] [blame] | 246 | virtual SkString getPerIterTimeFormat() { return SkString("%.2f"); } |
| 247 | |
| 248 | virtual SkString getNormalTimeFormat() { return SkString("%6.2f"); } |
| 249 | |
scroggo@google.com | 0a049b8 | 2012-11-02 22:01:26 +0000 | [diff] [blame] | 250 | /** |
| 251 | * Reports the configuration of this PictureRenderer. |
| 252 | */ |
| 253 | SkString getConfigName() { |
| 254 | SkString config = this->getConfigNameInternal(); |
scroggo@google.com | c4013c1 | 2012-12-13 22:07:08 +0000 | [diff] [blame] | 255 | if (!fViewport.isEmpty()) { |
| 256 | config.appendf("_viewport_%ix%i", fViewport.width(), fViewport.height()); |
| 257 | } |
commit-bot@chromium.org | 9de35eb | 2013-12-20 21:49:33 +0000 | [diff] [blame] | 258 | if (fScaleFactor != SK_Scalar1) { |
| 259 | config.appendf("_scalar_%f", SkScalarToFloat(fScaleFactor)); |
| 260 | } |
scroggo@google.com | 0a049b8 | 2012-11-02 22:01:26 +0000 | [diff] [blame] | 261 | if (kRTree_BBoxHierarchyType == fBBoxHierarchyType) { |
| 262 | config.append("_rtree"); |
junov@chromium.org | 7b53706 | 2012-11-06 18:58:43 +0000 | [diff] [blame] | 263 | } else if (kTileGrid_BBoxHierarchyType == fBBoxHierarchyType) { |
| 264 | config.append("_grid"); |
kelvinly | 06fdc69 | 2014-06-03 15:43:34 -0700 | [diff] [blame] | 265 | config.append("_"); |
| 266 | config.appendS32(fGridInfo.fTileInterval.width()); |
| 267 | config.append("x"); |
| 268 | config.appendS32(fGridInfo.fTileInterval.height()); |
scroggo@google.com | 0a049b8 | 2012-11-02 22:01:26 +0000 | [diff] [blame] | 269 | } |
| 270 | #if SK_SUPPORT_GPU |
robertphillips@google.com | e8fe4bc | 2013-02-13 13:26:13 +0000 | [diff] [blame] | 271 | switch (fDeviceType) { |
scroggo@google.com | 0556ea0 | 2013-02-08 19:38:21 +0000 | [diff] [blame] | 272 | case kGPU_DeviceType: |
jvanverth@google.com | f6a9033 | 2013-05-02 12:39:37 +0000 | [diff] [blame] | 273 | if (fSampleCount) { |
| 274 | config.appendf("_msaa%d", fSampleCount); |
| 275 | } else { |
| 276 | config.append("_gpu"); |
| 277 | } |
scroggo@google.com | 0556ea0 | 2013-02-08 19:38:21 +0000 | [diff] [blame] | 278 | break; |
commit-bot@chromium.org | 0fd5270 | 2014-03-07 18:41:14 +0000 | [diff] [blame] | 279 | case kNVPR_DeviceType: |
| 280 | config.appendf("_nvprmsaa%d", fSampleCount); |
| 281 | break; |
scroggo@google.com | 0556ea0 | 2013-02-08 19:38:21 +0000 | [diff] [blame] | 282 | #if SK_ANGLE |
| 283 | case kAngle_DeviceType: |
| 284 | config.append("_angle"); |
| 285 | break; |
scroggo@google.com | 0a049b8 | 2012-11-02 22:01:26 +0000 | [diff] [blame] | 286 | #endif |
rmistry@google.com | 6ab9673 | 2014-01-06 18:37:24 +0000 | [diff] [blame] | 287 | #if SK_MESA |
| 288 | case kMesa_DeviceType: |
| 289 | config.append("_mesa"); |
| 290 | break; |
| 291 | #endif |
scroggo@google.com | 0556ea0 | 2013-02-08 19:38:21 +0000 | [diff] [blame] | 292 | default: |
| 293 | // Assume that no extra info means bitmap. |
| 294 | break; |
| 295 | } |
robertphillips@google.com | e8fe4bc | 2013-02-13 13:26:13 +0000 | [diff] [blame] | 296 | #endif |
caryclark@google.com | a362237 | 2012-11-06 21:26:13 +0000 | [diff] [blame] | 297 | config.append(fDrawFiltersConfig.c_str()); |
scroggo@google.com | 0a049b8 | 2012-11-02 22:01:26 +0000 | [diff] [blame] | 298 | return config; |
| 299 | } |
| 300 | |
kelvinly | 4d1a364 | 2014-06-26 11:26:40 -0700 | [diff] [blame] | 301 | 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"; |
kelvinly | 4d1a364 | 2014-06-26 11:26:40 -0700 | [diff] [blame] | 311 | } else if (kTileGrid_BBoxHierarchyType == fBBoxHierarchyType) { |
| 312 | SkString tmp("grid_"); |
| 313 | tmp.appendS32(fGridInfo.fTileInterval.width()); |
| 314 | tmp.append("x"); |
| 315 | tmp.appendS32(fGridInfo.fTileInterval.height()); |
| 316 | result["bbh"] = tmp.c_str(); |
| 317 | } |
| 318 | #if SK_SUPPORT_GPU |
| 319 | SkString tmp; |
| 320 | switch (fDeviceType) { |
| 321 | case kGPU_DeviceType: |
| 322 | if (0 != fSampleCount) { |
| 323 | tmp = "msaa"; |
| 324 | tmp.appendS32(fSampleCount); |
| 325 | result["config"] = tmp.c_str(); |
| 326 | } else { |
| 327 | result["config"] = "gpu"; |
| 328 | } |
| 329 | break; |
| 330 | case kNVPR_DeviceType: |
| 331 | tmp = "nvprmsaa"; |
| 332 | tmp.appendS32(fSampleCount); |
| 333 | result["config"] = tmp.c_str(); |
| 334 | break; |
| 335 | #if SK_ANGLE |
| 336 | case kAngle_DeviceType: |
| 337 | result["config"] = "angle"; |
| 338 | break; |
| 339 | #endif |
| 340 | #if SK_MESA |
| 341 | case kMesa_DeviceType: |
| 342 | result["config"] = "mesa"; |
| 343 | break; |
| 344 | #endif |
| 345 | default: |
| 346 | // Assume that no extra info means bitmap. |
| 347 | break; |
| 348 | } |
| 349 | #endif |
| 350 | return result; |
| 351 | } |
| 352 | |
keyar@chromium.org | 4ea96c5 | 2012-08-20 15:03:29 +0000 | [diff] [blame] | 353 | #if SK_SUPPORT_GPU |
keyar@chromium.org | fe6391a | 2012-08-20 15:03:41 +0000 | [diff] [blame] | 354 | bool isUsingGpuDevice() { |
scroggo@google.com | 0556ea0 | 2013-02-08 19:38:21 +0000 | [diff] [blame] | 355 | switch (fDeviceType) { |
| 356 | case kGPU_DeviceType: |
commit-bot@chromium.org | 0fd5270 | 2014-03-07 18:41:14 +0000 | [diff] [blame] | 357 | case kNVPR_DeviceType: |
scroggo@google.com | 0556ea0 | 2013-02-08 19:38:21 +0000 | [diff] [blame] | 358 | // fall through |
| 359 | #if SK_ANGLE |
| 360 | case kAngle_DeviceType: |
rmistry@google.com | 6ab9673 | 2014-01-06 18:37:24 +0000 | [diff] [blame] | 361 | // fall through |
| 362 | #endif |
| 363 | #if SK_MESA |
| 364 | case kMesa_DeviceType: |
scroggo@google.com | 0556ea0 | 2013-02-08 19:38:21 +0000 | [diff] [blame] | 365 | #endif |
| 366 | return true; |
| 367 | default: |
| 368 | return false; |
| 369 | } |
keyar@chromium.org | fe6391a | 2012-08-20 15:03:41 +0000 | [diff] [blame] | 370 | } |
keyar@chromium.org | 77a5522 | 2012-08-20 15:03:47 +0000 | [diff] [blame] | 371 | |
robertphillips@google.com | 6177e69 | 2013-02-28 20:16:25 +0000 | [diff] [blame] | 372 | SkGLContextHelper* getGLContext() { |
scroggo@google.com | 0556ea0 | 2013-02-08 19:38:21 +0000 | [diff] [blame] | 373 | GrContextFactory::GLContextType glContextType |
| 374 | = GrContextFactory::kNull_GLContextType; |
| 375 | switch(fDeviceType) { |
| 376 | case kGPU_DeviceType: |
| 377 | glContextType = GrContextFactory::kNative_GLContextType; |
| 378 | break; |
commit-bot@chromium.org | 0fd5270 | 2014-03-07 18:41:14 +0000 | [diff] [blame] | 379 | case kNVPR_DeviceType: |
| 380 | glContextType = GrContextFactory::kNVPR_GLContextType; |
| 381 | break; |
scroggo@google.com | 0556ea0 | 2013-02-08 19:38:21 +0000 | [diff] [blame] | 382 | #if SK_ANGLE |
| 383 | case kAngle_DeviceType: |
| 384 | glContextType = GrContextFactory::kANGLE_GLContextType; |
| 385 | break; |
| 386 | #endif |
rmistry@google.com | 6ab9673 | 2014-01-06 18:37:24 +0000 | [diff] [blame] | 387 | #if SK_MESA |
| 388 | case kMesa_DeviceType: |
| 389 | glContextType = GrContextFactory::kMESA_GLContextType; |
| 390 | break; |
| 391 | #endif |
scroggo@google.com | 0556ea0 | 2013-02-08 19:38:21 +0000 | [diff] [blame] | 392 | default: |
| 393 | return NULL; |
keyar@chromium.org | 77a5522 | 2012-08-20 15:03:47 +0000 | [diff] [blame] | 394 | } |
scroggo@google.com | 0556ea0 | 2013-02-08 19:38:21 +0000 | [diff] [blame] | 395 | return fGrContextFactory.getGLContext(glContextType); |
keyar@chromium.org | 77a5522 | 2012-08-20 15:03:47 +0000 | [diff] [blame] | 396 | } |
robertphillips@google.com | 163c84b | 2012-09-13 15:40:37 +0000 | [diff] [blame] | 397 | |
| 398 | GrContext* getGrContext() { |
| 399 | return fGrContext; |
| 400 | } |
krajcevski | b1aded8 | 2014-08-18 07:52:17 -0700 | [diff] [blame] | 401 | |
| 402 | const GrContext::Options& getGrContextOptions() { |
| 403 | return fGrContextFactory.getGlobalOptions(); |
| 404 | } |
keyar@chromium.org | 4ea96c5 | 2012-08-20 15:03:29 +0000 | [diff] [blame] | 405 | #endif |
| 406 | |
commit-bot@chromium.org | 145d1c0 | 2014-03-16 19:46:36 +0000 | [diff] [blame] | 407 | SkCanvas* getCanvas() { |
| 408 | return fCanvas; |
| 409 | } |
| 410 | |
robertphillips | ce4dd3d | 2014-07-07 13:46:35 -0700 | [diff] [blame] | 411 | const SkPicture* getPicture() { |
commit-bot@chromium.org | 8ddc26b | 2014-03-31 17:55:12 +0000 | [diff] [blame] | 412 | return fPicture; |
| 413 | } |
mtklein | 2a65a23 | 2014-08-26 14:07:04 -0700 | [diff] [blame] | 414 | |
krajcevski | b1aded8 | 2014-08-18 07:52:17 -0700 | [diff] [blame] | 415 | #if SK_SUPPORT_GPU |
| 416 | explicit PictureRenderer(const GrContext::Options &opts) |
| 417 | #else |
keyar@chromium.org | 02dfb12 | 2012-08-20 15:03:36 +0000 | [diff] [blame] | 418 | PictureRenderer() |
krajcevski | b1aded8 | 2014-08-18 07:52:17 -0700 | [diff] [blame] | 419 | #endif |
robertphillips@google.com | 84b18c7 | 2014-04-13 19:09:42 +0000 | [diff] [blame] | 420 | : fJsonSummaryPtr(NULL) |
keyar@chromium.org | 0612564 | 2012-08-20 15:03:33 +0000 | [diff] [blame] | 421 | , fDeviceType(kBitmap_DeviceType) |
commit-bot@chromium.org | 8991c67 | 2014-05-22 00:36:05 +0000 | [diff] [blame] | 422 | , fEnableWrites(false) |
junov@chromium.org | 50ff9bd | 2012-11-02 19:16:22 +0000 | [diff] [blame] | 423 | , fBBoxHierarchyType(kNone_BBoxHierarchyType) |
scroggo@google.com | 06d6ac6 | 2013-02-08 21:16:19 +0000 | [diff] [blame] | 424 | , fScaleFactor(SK_Scalar1) |
keyar@chromium.org | 0612564 | 2012-08-20 15:03:33 +0000 | [diff] [blame] | 425 | #if SK_SUPPORT_GPU |
krajcevski | b1aded8 | 2014-08-18 07:52:17 -0700 | [diff] [blame] | 426 | , fGrContextFactory(opts) |
scroggo@google.com | 0556ea0 | 2013-02-08 19:38:21 +0000 | [diff] [blame] | 427 | , fGrContext(NULL) |
jvanverth@google.com | f6a9033 | 2013-05-02 12:39:37 +0000 | [diff] [blame] | 428 | , fSampleCount(0) |
keyar@chromium.org | 0612564 | 2012-08-20 15:03:33 +0000 | [diff] [blame] | 429 | #endif |
caryclark@google.com | e3e940c | 2012-11-07 16:42:17 +0000 | [diff] [blame] | 430 | { |
robertphillips@google.com | 7ae918e | 2013-03-02 17:45:27 +0000 | [diff] [blame] | 431 | fGridInfo.fMargin.setEmpty(); |
| 432 | fGridInfo.fOffset.setZero(); |
| 433 | fGridInfo.fTileInterval.set(1, 1); |
caryclark@google.com | e3e940c | 2012-11-07 16:42:17 +0000 | [diff] [blame] | 434 | sk_bzero(fDrawFilters, sizeof(fDrawFilters)); |
scroggo@google.com | c0d5e54 | 2012-12-13 21:40:48 +0000 | [diff] [blame] | 435 | fViewport.set(0, 0); |
caryclark@google.com | e3e940c | 2012-11-07 16:42:17 +0000 | [diff] [blame] | 436 | } |
keyar@chromium.org | 0612564 | 2012-08-20 15:03:33 +0000 | [diff] [blame] | 437 | |
scroggo@google.com | 0556ea0 | 2013-02-08 19:38:21 +0000 | [diff] [blame] | 438 | #if SK_SUPPORT_GPU |
| 439 | virtual ~PictureRenderer() { |
| 440 | SkSafeUnref(fGrContext); |
| 441 | } |
| 442 | #endif |
| 443 | |
keyar@chromium.org | 9d696c0 | 2012-08-07 17:11:33 +0000 | [diff] [blame] | 444 | protected: |
| 445 | SkAutoTUnref<SkCanvas> fCanvas; |
robertphillips | ce4dd3d | 2014-07-07 13:46:35 -0700 | [diff] [blame] | 446 | SkAutoTUnref<const SkPicture> fPicture; |
commit-bot@chromium.org | f5e315c | 2014-03-19 17:26:07 +0000 | [diff] [blame] | 447 | bool fUseChecksumBasedFilenames; |
commit-bot@chromium.org | 205ce48 | 2014-05-12 15:37:20 +0000 | [diff] [blame] | 448 | ImageResultsAndExpectations* fJsonSummaryPtr; |
scroggo@google.com | c0d5e54 | 2012-12-13 21:40:48 +0000 | [diff] [blame] | 449 | SkDeviceTypes fDeviceType; |
commit-bot@chromium.org | 8991c67 | 2014-05-22 00:36:05 +0000 | [diff] [blame] | 450 | bool fEnableWrites; |
scroggo@google.com | c0d5e54 | 2012-12-13 21:40:48 +0000 | [diff] [blame] | 451 | BBoxHierarchyType fBBoxHierarchyType; |
| 452 | DrawFilterFlags fDrawFilters[SkDrawFilter::kTypeCount]; |
| 453 | SkString fDrawFiltersConfig; |
commit-bot@chromium.org | 3f04517 | 2014-05-15 15:10:48 +0000 | [diff] [blame] | 454 | SkString fWritePath; |
| 455 | SkString fMismatchPath; |
commit-bot@chromium.org | f5e315c | 2014-03-19 17:26:07 +0000 | [diff] [blame] | 456 | SkString fInputFilename; |
commit-bot@chromium.org | 5fb2ce3 | 2014-04-17 23:35:06 +0000 | [diff] [blame] | 457 | SkTileGridFactory::TileGridInfo fGridInfo; // used when fBBoxHierarchyType is TileGrid |
keyar@chromium.org | 0612564 | 2012-08-20 15:03:33 +0000 | [diff] [blame] | 458 | |
scroggo@google.com | c0d5e54 | 2012-12-13 21:40:48 +0000 | [diff] [blame] | 459 | void buildBBoxHierarchy(); |
| 460 | |
| 461 | /** |
| 462 | * Return the total width that should be drawn. If the viewport width has been set greater than |
| 463 | * 0, this will be the minimum of the current SkPicture's width and the viewport's width. |
| 464 | */ |
| 465 | int getViewWidth(); |
| 466 | |
| 467 | /** |
| 468 | * Return the total height that should be drawn. If the viewport height has been set greater |
| 469 | * than 0, this will be the minimum of the current SkPicture's height and the viewport's height. |
| 470 | */ |
| 471 | int getViewHeight(); |
| 472 | |
scroggo@google.com | 82ec0b0 | 2012-12-17 19:25:54 +0000 | [diff] [blame] | 473 | /** |
| 474 | * Scales the provided canvas to the scale factor set by setScaleFactor. |
| 475 | */ |
| 476 | void scaleToScaleFactor(SkCanvas*); |
| 477 | |
commit-bot@chromium.org | 5fb2ce3 | 2014-04-17 23:35:06 +0000 | [diff] [blame] | 478 | SkBBHFactory* getFactory(); |
robertphillips | 9f1c241 | 2014-06-09 06:25:34 -0700 | [diff] [blame] | 479 | uint32_t recordFlags() const { return 0; } |
scroggo@google.com | c0d5e54 | 2012-12-13 21:40:48 +0000 | [diff] [blame] | 480 | SkCanvas* setupCanvas(); |
| 481 | virtual SkCanvas* setupCanvas(int width, int height); |
| 482 | |
commit-bot@chromium.org | f5e315c | 2014-03-19 17:26:07 +0000 | [diff] [blame] | 483 | /** |
| 484 | * Copy src to dest; if src==NULL, set dest to empty string. |
| 485 | */ |
| 486 | static void CopyString(SkString* dest, const SkString* src); |
| 487 | |
keyar@chromium.org | 9d696c0 | 2012-08-07 17:11:33 +0000 | [diff] [blame] | 488 | private: |
scroggo@google.com | c0d5e54 | 2012-12-13 21:40:48 +0000 | [diff] [blame] | 489 | SkISize fViewport; |
scroggo@google.com | 82ec0b0 | 2012-12-17 19:25:54 +0000 | [diff] [blame] | 490 | SkScalar fScaleFactor; |
scroggo@google.com | 0556ea0 | 2013-02-08 19:38:21 +0000 | [diff] [blame] | 491 | #if SK_SUPPORT_GPU |
| 492 | GrContextFactory fGrContextFactory; |
| 493 | GrContext* fGrContext; |
jvanverth@google.com | f6a9033 | 2013-05-02 12:39:37 +0000 | [diff] [blame] | 494 | int fSampleCount; |
scroggo@google.com | 0556ea0 | 2013-02-08 19:38:21 +0000 | [diff] [blame] | 495 | #endif |
scroggo@google.com | c0d5e54 | 2012-12-13 21:40:48 +0000 | [diff] [blame] | 496 | |
scroggo@google.com | 0a049b8 | 2012-11-02 22:01:26 +0000 | [diff] [blame] | 497 | virtual SkString getConfigNameInternal() = 0; |
| 498 | |
keyar@chromium.org | 9d696c0 | 2012-08-07 17:11:33 +0000 | [diff] [blame] | 499 | typedef SkRefCnt INHERITED; |
keyar@chromium.org | 451bb9f | 2012-07-26 17:27:57 +0000 | [diff] [blame] | 500 | }; |
| 501 | |
scroggo@google.com | 9a41252 | 2012-09-07 15:21:18 +0000 | [diff] [blame] | 502 | /** |
| 503 | * This class does not do any rendering, but its render function executes recording, which we want |
| 504 | * to time. |
| 505 | */ |
| 506 | class RecordPictureRenderer : public PictureRenderer { |
krajcevski | b1aded8 | 2014-08-18 07:52:17 -0700 | [diff] [blame] | 507 | public: |
| 508 | #if SK_SUPPORT_GPU |
| 509 | RecordPictureRenderer(const GrContext::Options &opts) : INHERITED(opts) { } |
| 510 | #endif |
| 511 | |
commit-bot@chromium.org | f5e315c | 2014-03-19 17:26:07 +0000 | [diff] [blame] | 512 | virtual bool render(SkBitmap** out = NULL) SK_OVERRIDE; |
scroggo@google.com | 9a41252 | 2012-09-07 15:21:18 +0000 | [diff] [blame] | 513 | |
| 514 | virtual SkString getPerIterTimeFormat() SK_OVERRIDE { return SkString("%.4f"); } |
| 515 | |
| 516 | virtual SkString getNormalTimeFormat() SK_OVERRIDE { return SkString("%6.4f"); } |
scroggo@google.com | 0a049b8 | 2012-11-02 22:01:26 +0000 | [diff] [blame] | 517 | |
djsollen@google.com | fd9720c | 2012-11-06 16:54:40 +0000 | [diff] [blame] | 518 | protected: |
| 519 | virtual SkCanvas* setupCanvas(int width, int height) SK_OVERRIDE; |
| 520 | |
scroggo@google.com | 0a049b8 | 2012-11-02 22:01:26 +0000 | [diff] [blame] | 521 | private: |
| 522 | virtual SkString getConfigNameInternal() SK_OVERRIDE; |
krajcevski | b1aded8 | 2014-08-18 07:52:17 -0700 | [diff] [blame] | 523 | |
| 524 | typedef PictureRenderer INHERITED; |
scroggo@google.com | 9a41252 | 2012-09-07 15:21:18 +0000 | [diff] [blame] | 525 | }; |
| 526 | |
keyar@chromium.org | 451bb9f | 2012-07-26 17:27:57 +0000 | [diff] [blame] | 527 | class PipePictureRenderer : public PictureRenderer { |
keyar@chromium.org | 163b567 | 2012-08-01 17:53:29 +0000 | [diff] [blame] | 528 | public: |
krajcevski | b1aded8 | 2014-08-18 07:52:17 -0700 | [diff] [blame] | 529 | #if SK_SUPPORT_GPU |
| 530 | PipePictureRenderer(const GrContext::Options &opts) : INHERITED(opts) { } |
| 531 | #endif |
| 532 | |
commit-bot@chromium.org | f5e315c | 2014-03-19 17:26:07 +0000 | [diff] [blame] | 533 | virtual bool render(SkBitmap** out = NULL) SK_OVERRIDE; |
keyar@chromium.org | 9d696c0 | 2012-08-07 17:11:33 +0000 | [diff] [blame] | 534 | |
| 535 | private: |
scroggo@google.com | 0a049b8 | 2012-11-02 22:01:26 +0000 | [diff] [blame] | 536 | virtual SkString getConfigNameInternal() SK_OVERRIDE; |
| 537 | |
keyar@chromium.org | 9d696c0 | 2012-08-07 17:11:33 +0000 | [diff] [blame] | 538 | typedef PictureRenderer INHERITED; |
keyar@chromium.org | 451bb9f | 2012-07-26 17:27:57 +0000 | [diff] [blame] | 539 | }; |
| 540 | |
| 541 | class SimplePictureRenderer : public PictureRenderer { |
keyar@chromium.org | 163b567 | 2012-08-01 17:53:29 +0000 | [diff] [blame] | 542 | public: |
krajcevski | b1aded8 | 2014-08-18 07:52:17 -0700 | [diff] [blame] | 543 | #if SK_SUPPORT_GPU |
| 544 | SimplePictureRenderer(const GrContext::Options &opts) : INHERITED(opts) { } |
| 545 | #endif |
| 546 | |
robertphillips | ce4dd3d | 2014-07-07 13:46:35 -0700 | [diff] [blame] | 547 | virtual void init(const SkPicture* pict, |
mtklein | 2a65a23 | 2014-08-26 14:07:04 -0700 | [diff] [blame] | 548 | const SkString* writePath, |
robertphillips | ce4dd3d | 2014-07-07 13:46:35 -0700 | [diff] [blame] | 549 | const SkString* mismatchPath, |
mtklein | 2a65a23 | 2014-08-26 14:07:04 -0700 | [diff] [blame] | 550 | const SkString* inputFilename, |
robertphillips | ce4dd3d | 2014-07-07 13:46:35 -0700 | [diff] [blame] | 551 | bool useChecksumBasedFilenames) SK_OVERRIDE; |
junov@chromium.org | 9313ca4 | 2012-11-02 18:11:49 +0000 | [diff] [blame] | 552 | |
commit-bot@chromium.org | f5e315c | 2014-03-19 17:26:07 +0000 | [diff] [blame] | 553 | virtual bool render(SkBitmap** out = NULL) SK_OVERRIDE; |
keyar@chromium.org | 9d696c0 | 2012-08-07 17:11:33 +0000 | [diff] [blame] | 554 | |
| 555 | private: |
scroggo@google.com | 0a049b8 | 2012-11-02 22:01:26 +0000 | [diff] [blame] | 556 | virtual SkString getConfigNameInternal() SK_OVERRIDE; |
| 557 | |
keyar@chromium.org | 9d696c0 | 2012-08-07 17:11:33 +0000 | [diff] [blame] | 558 | typedef PictureRenderer INHERITED; |
keyar@chromium.org | 451bb9f | 2012-07-26 17:27:57 +0000 | [diff] [blame] | 559 | }; |
| 560 | |
| 561 | class TiledPictureRenderer : public PictureRenderer { |
| 562 | public: |
krajcevski | b1aded8 | 2014-08-18 07:52:17 -0700 | [diff] [blame] | 563 | #if SK_SUPPORT_GPU |
| 564 | TiledPictureRenderer(const GrContext::Options &opts); |
| 565 | #else |
keyar@chromium.org | 451bb9f | 2012-07-26 17:27:57 +0000 | [diff] [blame] | 566 | TiledPictureRenderer(); |
krajcevski | b1aded8 | 2014-08-18 07:52:17 -0700 | [diff] [blame] | 567 | #endif |
keyar@chromium.org | 451bb9f | 2012-07-26 17:27:57 +0000 | [diff] [blame] | 568 | |
mtklein | 2a65a23 | 2014-08-26 14:07:04 -0700 | [diff] [blame] | 569 | virtual void init(const SkPicture* pict, |
| 570 | const SkString* writePath, |
robertphillips | ce4dd3d | 2014-07-07 13:46:35 -0700 | [diff] [blame] | 571 | const SkString* mismatchPath, |
mtklein | 2a65a23 | 2014-08-26 14:07:04 -0700 | [diff] [blame] | 572 | const SkString* inputFilename, |
robertphillips | ce4dd3d | 2014-07-07 13:46:35 -0700 | [diff] [blame] | 573 | bool useChecksumBasedFilenames) SK_OVERRIDE; |
scroggo@google.com | 81f9d2e | 2012-09-20 14:54:21 +0000 | [diff] [blame] | 574 | |
scroggo@google.com | 81f9d2e | 2012-09-20 14:54:21 +0000 | [diff] [blame] | 575 | /** |
commit-bot@chromium.org | f5e315c | 2014-03-19 17:26:07 +0000 | [diff] [blame] | 576 | * Renders to tiles, rather than a single canvas. |
commit-bot@chromium.org | 3f04517 | 2014-05-15 15:10:48 +0000 | [diff] [blame] | 577 | * If fWritePath was provided, a separate file is |
scroggo@google.com | 81f9d2e | 2012-09-20 14:54:21 +0000 | [diff] [blame] | 578 | * created for each tile, named "path0.png", "path1.png", etc. |
scroggo@google.com | 81f9d2e | 2012-09-20 14:54:21 +0000 | [diff] [blame] | 579 | */ |
commit-bot@chromium.org | f5e315c | 2014-03-19 17:26:07 +0000 | [diff] [blame] | 580 | virtual bool render(SkBitmap** out = NULL) SK_OVERRIDE; |
scroggo@google.com | 81f9d2e | 2012-09-20 14:54:21 +0000 | [diff] [blame] | 581 | |
keyar@chromium.org | 9d696c0 | 2012-08-07 17:11:33 +0000 | [diff] [blame] | 582 | virtual void end() SK_OVERRIDE; |
keyar@chromium.org | 451bb9f | 2012-07-26 17:27:57 +0000 | [diff] [blame] | 583 | |
keyar@chromium.org | cc6e5ef | 2012-07-27 20:09:26 +0000 | [diff] [blame] | 584 | void setTileWidth(int width) { |
| 585 | fTileWidth = width; |
| 586 | } |
| 587 | |
| 588 | int getTileWidth() const { |
| 589 | return fTileWidth; |
| 590 | } |
| 591 | |
| 592 | void setTileHeight(int height) { |
| 593 | fTileHeight = height; |
| 594 | } |
| 595 | |
| 596 | int getTileHeight() const { |
| 597 | return fTileHeight; |
| 598 | } |
| 599 | |
| 600 | void setTileWidthPercentage(double percentage) { |
| 601 | fTileWidthPercentage = percentage; |
| 602 | } |
| 603 | |
keyar@chromium.org | 163b567 | 2012-08-01 17:53:29 +0000 | [diff] [blame] | 604 | double getTileWidthPercentage() const { |
keyar@chromium.org | cc6e5ef | 2012-07-27 20:09:26 +0000 | [diff] [blame] | 605 | return fTileWidthPercentage; |
| 606 | } |
| 607 | |
| 608 | void setTileHeightPercentage(double percentage) { |
| 609 | fTileHeightPercentage = percentage; |
| 610 | } |
| 611 | |
keyar@chromium.org | 163b567 | 2012-08-01 17:53:29 +0000 | [diff] [blame] | 612 | double getTileHeightPercentage() const { |
keyar@chromium.org | cc6e5ef | 2012-07-27 20:09:26 +0000 | [diff] [blame] | 613 | return fTileHeightPercentage; |
| 614 | } |
| 615 | |
keyar@chromium.org | f4959ab | 2012-08-23 20:53:25 +0000 | [diff] [blame] | 616 | void setTileMinPowerOf2Width(int width) { |
| 617 | SkASSERT(SkIsPow2(width) && width > 0); |
| 618 | if (!SkIsPow2(width) || width <= 0) { |
| 619 | return; |
| 620 | } |
| 621 | |
| 622 | fTileMinPowerOf2Width = width; |
| 623 | } |
| 624 | |
| 625 | int getTileMinPowerOf2Width() const { |
| 626 | return fTileMinPowerOf2Width; |
| 627 | } |
| 628 | |
scroggo@google.com | cbcef70 | 2012-12-13 22:09:28 +0000 | [diff] [blame] | 629 | virtual TiledPictureRenderer* getTiledRenderer() SK_OVERRIDE { return this; } |
| 630 | |
scroggo@google.com | 161e1ba | 2013-03-04 16:41:06 +0000 | [diff] [blame] | 631 | virtual bool supportsTimingIndividualTiles() { return true; } |
| 632 | |
scroggo@google.com | cbcef70 | 2012-12-13 22:09:28 +0000 | [diff] [blame] | 633 | /** |
| 634 | * Report the number of tiles in the x and y directions. Must not be called before init. |
| 635 | * @param x Output parameter identifying the number of tiles in the x direction. |
| 636 | * @param y Output parameter identifying the number of tiles in the y direction. |
| 637 | * @return True if the tiles have been set up, and x and y are meaningful. If false, x and y are |
| 638 | * unmodified. |
| 639 | */ |
| 640 | bool tileDimensions(int& x, int&y); |
| 641 | |
| 642 | /** |
| 643 | * Move to the next tile and return its indices. Must be called before calling drawCurrentTile |
| 644 | * for the first time. |
| 645 | * @param i Output parameter identifying the column of the next tile to be drawn on the next |
| 646 | * call to drawNextTile. |
| 647 | * @param j Output parameter identifying the row of the next tile to be drawn on the next call |
| 648 | * to drawNextTile. |
| 649 | * @param True if the tiles have been created and the next tile to be drawn by drawCurrentTile |
| 650 | * is within the range of tiles. If false, i and j are unmodified. |
| 651 | */ |
| 652 | bool nextTile(int& i, int& j); |
| 653 | |
| 654 | /** |
| 655 | * Render one tile. This will draw the same tile each time it is called until nextTile is |
| 656 | * called. The tile rendered will depend on how many calls have been made to nextTile. |
| 657 | * It is an error to call this without first calling nextTile, or if nextTile returns false. |
| 658 | */ |
| 659 | void drawCurrentTile(); |
| 660 | |
scroggo@google.com | a62da2f | 2012-11-02 21:28:12 +0000 | [diff] [blame] | 661 | protected: |
scroggo@google.com | a62da2f | 2012-11-02 21:28:12 +0000 | [diff] [blame] | 662 | SkTDArray<SkRect> fTileRects; |
keyar@chromium.org | 451bb9f | 2012-07-26 17:27:57 +0000 | [diff] [blame] | 663 | |
scroggo@google.com | 0a049b8 | 2012-11-02 22:01:26 +0000 | [diff] [blame] | 664 | virtual SkCanvas* setupCanvas(int width, int height) SK_OVERRIDE; |
| 665 | virtual SkString getConfigNameInternal() SK_OVERRIDE; |
| 666 | |
keyar@chromium.org | 451bb9f | 2012-07-26 17:27:57 +0000 | [diff] [blame] | 667 | private: |
scroggo@google.com | cbcef70 | 2012-12-13 22:09:28 +0000 | [diff] [blame] | 668 | int fTileWidth; |
| 669 | int fTileHeight; |
| 670 | double fTileWidthPercentage; |
| 671 | double fTileHeightPercentage; |
| 672 | int fTileMinPowerOf2Width; |
| 673 | |
| 674 | // These variables are only used for timing individual tiles. |
| 675 | // Next tile to draw in fTileRects. |
| 676 | int fCurrentTileOffset; |
| 677 | // Number of tiles in the x direction. |
| 678 | int fTilesX; |
| 679 | // Number of tiles in the y direction. |
| 680 | int fTilesY; |
scroggo@google.com | bcdf2ec | 2012-09-20 14:42:33 +0000 | [diff] [blame] | 681 | |
keyar@chromium.org | 9d696c0 | 2012-08-07 17:11:33 +0000 | [diff] [blame] | 682 | void setupTiles(); |
keyar@chromium.org | f4959ab | 2012-08-23 20:53:25 +0000 | [diff] [blame] | 683 | void setupPowerOf2Tiles(); |
keyar@chromium.org | 9d696c0 | 2012-08-07 17:11:33 +0000 | [diff] [blame] | 684 | |
| 685 | typedef PictureRenderer INHERITED; |
keyar@chromium.org | 451bb9f | 2012-07-26 17:27:57 +0000 | [diff] [blame] | 686 | }; |
| 687 | |
scroggo@google.com | 9a41252 | 2012-09-07 15:21:18 +0000 | [diff] [blame] | 688 | /** |
| 689 | * This class does not do any rendering, but its render function executes turning an SkPictureRecord |
| 690 | * into an SkPicturePlayback, which we want to time. |
| 691 | */ |
| 692 | class PlaybackCreationRenderer : public PictureRenderer { |
| 693 | public: |
krajcevski | b1aded8 | 2014-08-18 07:52:17 -0700 | [diff] [blame] | 694 | #if SK_SUPPORT_GPU |
| 695 | PlaybackCreationRenderer(const GrContext::Options &opts) : INHERITED(opts) { } |
| 696 | #endif |
| 697 | |
scroggo@google.com | 9a41252 | 2012-09-07 15:21:18 +0000 | [diff] [blame] | 698 | virtual void setup() SK_OVERRIDE; |
| 699 | |
commit-bot@chromium.org | f5e315c | 2014-03-19 17:26:07 +0000 | [diff] [blame] | 700 | virtual bool render(SkBitmap** out = NULL) SK_OVERRIDE; |
scroggo@google.com | 9a41252 | 2012-09-07 15:21:18 +0000 | [diff] [blame] | 701 | |
| 702 | virtual SkString getPerIterTimeFormat() SK_OVERRIDE { return SkString("%.4f"); } |
| 703 | |
| 704 | virtual SkString getNormalTimeFormat() SK_OVERRIDE { return SkString("%6.4f"); } |
| 705 | |
| 706 | private: |
robertphillips@google.com | 84b18c7 | 2014-04-13 19:09:42 +0000 | [diff] [blame] | 707 | SkAutoTDelete<SkPictureRecorder> fRecorder; |
scroggo@google.com | 0a049b8 | 2012-11-02 22:01:26 +0000 | [diff] [blame] | 708 | |
| 709 | virtual SkString getConfigNameInternal() SK_OVERRIDE; |
| 710 | |
scroggo@google.com | 9a41252 | 2012-09-07 15:21:18 +0000 | [diff] [blame] | 711 | typedef PictureRenderer INHERITED; |
| 712 | }; |
| 713 | |
krajcevski | b1aded8 | 2014-08-18 07:52:17 -0700 | [diff] [blame] | 714 | #if SK_SUPPORT_GPU |
| 715 | extern PictureRenderer* CreateGatherPixelRefsRenderer(const GrContext::Options& opts); |
| 716 | #else |
reed@google.com | fe7b1ed | 2012-11-29 21:00:39 +0000 | [diff] [blame] | 717 | extern PictureRenderer* CreateGatherPixelRefsRenderer(); |
krajcevski | b1aded8 | 2014-08-18 07:52:17 -0700 | [diff] [blame] | 718 | #endif |
reed@google.com | fe7b1ed | 2012-11-29 21:00:39 +0000 | [diff] [blame] | 719 | |
keyar@chromium.org | 451bb9f | 2012-07-26 17:27:57 +0000 | [diff] [blame] | 720 | } |
| 721 | |
| 722 | #endif // PictureRenderer_DEFINED |