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