| chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 1 | |
| 2 | /* |
| 3 | * Copyright 2012 Google Inc. |
| 4 | * |
| 5 | * Use of this source code is governed by a BSD-style license that can be |
| 6 | * found in the LICENSE file. |
| 7 | */ |
| 8 | |
| 9 | |
| 10 | #ifndef SKDEBUGCANVAS_H_ |
| 11 | #define SKDEBUGCANVAS_H_ |
| 12 | |
| chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 13 | #include "SkCanvas.h" |
| 14 | #include "SkDrawCommand.h" |
| 15 | #include "SkPicture.h" |
| robertphillips@google.com | 8a1cdae | 2012-11-19 20:44:29 +0000 | [diff] [blame] | 16 | #include "SkTArray.h" |
| chudy@google.com | 97cee97 | 2012-08-07 20:41:37 +0000 | [diff] [blame] | 17 | #include "SkString.h" |
| chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 18 | |
| robertphillips@google.com | 32bbcf8 | 2013-10-17 17:56:10 +0000 | [diff] [blame] | 19 | class SkTexOverrideFilter; |
| 20 | |
| fmalita@google.com | 86681b3 | 2013-06-13 20:59:14 +0000 | [diff] [blame] | 21 | class SK_API SkDebugCanvas : public SkCanvas { |
| chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 22 | public: |
| chudy@google.com | 80a4a60 | 2012-07-30 18:54:07 +0000 | [diff] [blame] | 23 | SkDebugCanvas(int width, int height); |
| robertphillips@google.com | f4741c1 | 2013-02-06 20:13:54 +0000 | [diff] [blame] | 24 | virtual ~SkDebugCanvas(); |
| chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 25 | |
| commit-bot@chromium.org | 768ac85 | 2014-03-03 16:32:17 +0000 | [diff] [blame] | 26 | void toggleFilter(bool toggle) { fFilter = toggle; } |
| 27 | |
| 28 | void setMegaVizMode(bool megaVizMode) { fMegaVizMode = megaVizMode; } |
| commit-bot@chromium.org | 57f74e0 | 2014-03-25 23:31:33 +0000 | [diff] [blame^] | 29 | bool getMegaVizMode() const { return fMegaVizMode; } |
| chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 30 | |
| 31 | /** |
| robertphillips@google.com | f4741c1 | 2013-02-06 20:13:54 +0000 | [diff] [blame] | 32 | * Enable or disable overdraw visualization |
| 33 | */ |
| 34 | void setOverdrawViz(bool overdrawViz) { fOverdrawViz = overdrawViz; } |
| commit-bot@chromium.org | 57f74e0 | 2014-03-25 23:31:33 +0000 | [diff] [blame^] | 35 | bool getOverdrawViz() const { return fOverdrawViz; } |
| 36 | |
| 37 | void setOutstandingSaveCount(int saveCount) { fOutstandingSaveCount = saveCount; } |
| 38 | int getOutstandingSaveCount() const { return fOutstandingSaveCount; } |
| 39 | |
| 40 | void setPicture(SkPicture* picture) { fPicture = picture; } |
| robertphillips@google.com | f4741c1 | 2013-02-06 20:13:54 +0000 | [diff] [blame] | 41 | |
| 42 | /** |
| robertphillips@google.com | 32bbcf8 | 2013-10-17 17:56:10 +0000 | [diff] [blame] | 43 | * Enable or disable texure filtering override |
| 44 | */ |
| skia.committer@gmail.com | f84ad8f | 2013-10-18 07:01:59 +0000 | [diff] [blame] | 45 | void overrideTexFiltering(bool overrideTexFiltering, SkPaint::FilterLevel level); |
| robertphillips@google.com | 32bbcf8 | 2013-10-17 17:56:10 +0000 | [diff] [blame] | 46 | |
| 47 | /** |
| chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 48 | Executes all draw calls to the canvas. |
| 49 | @param canvas The canvas being drawn to |
| 50 | */ |
| 51 | void draw(SkCanvas* canvas); |
| 52 | |
| 53 | /** |
| chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 54 | Executes the draw calls up to the specified index. |
| 55 | @param canvas The canvas being drawn to |
| 56 | @param index The index of the final command being executed |
| 57 | */ |
| chudy@google.com | 0b5bbb0 | 2012-07-31 19:55:32 +0000 | [diff] [blame] | 58 | void drawTo(SkCanvas* canvas, int index); |
| 59 | |
| 60 | /** |
| chudy@google.com | a9e937c | 2012-08-03 17:32:05 +0000 | [diff] [blame] | 61 | Returns the most recently calculated transformation matrix |
| 62 | */ |
| 63 | const SkMatrix& getCurrentMatrix() { |
| 64 | return fMatrix; |
| 65 | } |
| 66 | |
| 67 | /** |
| 68 | Returns the most recently calculated clip |
| 69 | */ |
| 70 | const SkIRect& getCurrentClip() { |
| 71 | return fClip; |
| 72 | } |
| 73 | |
| 74 | /** |
| chudy@google.com | 0b5bbb0 | 2012-07-31 19:55:32 +0000 | [diff] [blame] | 75 | Returns the index of the last draw command to write to the pixel at (x,y) |
| 76 | */ |
| chudy@google.com | 830b879 | 2012-08-01 15:57:52 +0000 | [diff] [blame] | 77 | int getCommandAtPoint(int x, int y, int index); |
| chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 78 | |
| 79 | /** |
| robertphillips@google.com | 50c84da | 2013-04-01 18:18:49 +0000 | [diff] [blame] | 80 | Removes the command at the specified index |
| 81 | @param index The index of the command to delete |
| 82 | */ |
| 83 | void deleteDrawCommandAt(int index); |
| 84 | |
| 85 | /** |
| chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 86 | Returns the draw command at the given index. |
| 87 | @param index The index of the command |
| 88 | */ |
| 89 | SkDrawCommand* getDrawCommandAt(int index); |
| 90 | |
| 91 | /** |
| robertphillips@google.com | 50c84da | 2013-04-01 18:18:49 +0000 | [diff] [blame] | 92 | Sets the draw command for a given index. |
| 93 | @param index The index to overwrite |
| 94 | @param command The new command |
| 95 | */ |
| 96 | void setDrawCommandAt(int index, SkDrawCommand* command); |
| 97 | |
| 98 | /** |
| chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 99 | Returns information about the command at the given index. |
| 100 | @param index The index of the command |
| 101 | */ |
| chudy@google.com | 97cee97 | 2012-08-07 20:41:37 +0000 | [diff] [blame] | 102 | SkTDArray<SkString*>* getCommandInfo(int index); |
| chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 103 | |
| 104 | /** |
| chudy@google.com | 7e4cfbf | 2012-07-17 15:40:51 +0000 | [diff] [blame] | 105 | Returns the visibility of the command at the given index. |
| 106 | @param index The index of the command |
| 107 | */ |
| 108 | bool getDrawCommandVisibilityAt(int index); |
| 109 | |
| 110 | /** |
| chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 111 | Returns the vector of draw commands |
| 112 | */ |
| reed@google.com | 4469938 | 2013-10-31 17:28:30 +0000 | [diff] [blame] | 113 | SK_ATTR_DEPRECATED("please use getDrawCommandAt and getSize instead") |
| robertphillips@google.com | 8a1cdae | 2012-11-19 20:44:29 +0000 | [diff] [blame] | 114 | const SkTDArray<SkDrawCommand*>& getDrawCommands() const; |
| skia.committer@gmail.com | 2e71f16 | 2013-03-12 07:12:32 +0000 | [diff] [blame] | 115 | |
| robertphillips@google.com | febc0ec | 2013-03-11 22:53:11 +0000 | [diff] [blame] | 116 | /** |
| 117 | Returns the vector of draw commands. Do not use this entry |
| 118 | point - it is going away! |
| 119 | */ |
| 120 | SkTDArray<SkDrawCommand*>& getDrawCommands(); |
| chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 121 | |
| 122 | /** |
| 123 | * Returns the string vector of draw commands |
| 124 | */ |
| robertphillips@google.com | 8a1cdae | 2012-11-19 20:44:29 +0000 | [diff] [blame] | 125 | SkTArray<SkString>* getDrawCommandsAsStrings() const; |
| chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 126 | |
| 127 | /** |
| commit-bot@chromium.org | 57f74e0 | 2014-03-25 23:31:33 +0000 | [diff] [blame^] | 128 | * Returns an array containing an offset (in the SkPicture) for each command |
| 129 | */ |
| 130 | SkTDArray<size_t>* getDrawCommandOffsets() const; |
| 131 | |
| 132 | /** |
| chudy@google.com | f141432 | 2012-07-03 20:28:14 +0000 | [diff] [blame] | 133 | Returns length of draw command vector. |
| 134 | */ |
| commit-bot@chromium.org | 0d4fe14 | 2013-07-15 22:47:14 +0000 | [diff] [blame] | 135 | int getSize() const { |
| robertphillips@google.com | 67baba4 | 2013-01-02 20:20:31 +0000 | [diff] [blame] | 136 | return fCommandVector.count(); |
| chudy@google.com | f141432 | 2012-07-03 20:28:14 +0000 | [diff] [blame] | 137 | } |
| 138 | |
| chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 139 | /** |
| 140 | Toggles the visibility / execution of the draw command at index i with |
| 141 | the value of toggle. |
| 142 | */ |
| 143 | void toggleCommand(int index, bool toggle); |
| 144 | |
| chudy@google.com | b9ddd4e | 2012-07-10 14:14:50 +0000 | [diff] [blame] | 145 | void setBounds(int width, int height) { |
| 146 | fWidth = width; |
| 147 | fHeight = height; |
| 148 | } |
| 149 | |
| bungeman@google.com | e8cc6e8 | 2013-01-17 16:30:56 +0000 | [diff] [blame] | 150 | void setUserMatrix(SkMatrix matrix) { |
| 151 | fUserMatrix = matrix; |
| chudy@google.com | 830b879 | 2012-08-01 15:57:52 +0000 | [diff] [blame] | 152 | } |
| 153 | |
| chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 154 | //////////////////////////////////////////////////////////////////////////////// |
| 155 | // Inherited from SkCanvas |
| 156 | //////////////////////////////////////////////////////////////////////////////// |
| 157 | |
| 158 | virtual void clear(SkColor) SK_OVERRIDE; |
| 159 | |
| chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 160 | virtual void drawBitmap(const SkBitmap&, SkScalar left, SkScalar top, |
| 161 | const SkPaint*) SK_OVERRIDE; |
| 162 | |
| reed@google.com | 7112173 | 2012-09-18 15:14:33 +0000 | [diff] [blame] | 163 | virtual void drawBitmapRectToRect(const SkBitmap&, const SkRect* src, |
| commit-bot@chromium.org | eed779d | 2013-08-16 10:24:37 +0000 | [diff] [blame] | 164 | const SkRect& dst, const SkPaint* paint, |
| 165 | DrawBitmapRectFlags flags) SK_OVERRIDE; |
| chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 166 | |
| 167 | virtual void drawBitmapMatrix(const SkBitmap&, const SkMatrix&, |
| 168 | const SkPaint*) SK_OVERRIDE; |
| 169 | |
| 170 | virtual void drawBitmapNine(const SkBitmap& bitmap, const SkIRect& center, |
| 171 | const SkRect& dst, const SkPaint*) SK_OVERRIDE; |
| 172 | |
| 173 | virtual void drawData(const void*, size_t) SK_OVERRIDE; |
| 174 | |
| robertphillips@google.com | 0a4805e | 2013-05-29 13:24:23 +0000 | [diff] [blame] | 175 | virtual void beginCommentGroup(const char* description) SK_OVERRIDE; |
| 176 | |
| 177 | virtual void addComment(const char* kywd, const char* value) SK_OVERRIDE; |
| 178 | |
| 179 | virtual void endCommentGroup() SK_OVERRIDE; |
| 180 | |
| robertphillips@google.com | 67baba4 | 2013-01-02 20:20:31 +0000 | [diff] [blame] | 181 | virtual void drawOval(const SkRect& oval, const SkPaint&) SK_OVERRIDE; |
| 182 | |
| chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 183 | virtual void drawPaint(const SkPaint& paint) SK_OVERRIDE; |
| 184 | |
| bsalomon@google.com | 7ce564c | 2013-10-22 16:54:15 +0000 | [diff] [blame] | 185 | virtual void drawPath(const SkPath& path, const SkPaint&) SK_OVERRIDE; |
| 186 | |
| chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 187 | virtual void drawPicture(SkPicture& picture) SK_OVERRIDE; |
| 188 | |
| 189 | virtual void drawPoints(PointMode, size_t count, const SkPoint pts[], |
| 190 | const SkPaint&) SK_OVERRIDE; |
| 191 | |
| 192 | virtual void drawPosText(const void* text, size_t byteLength, |
| 193 | const SkPoint pos[], const SkPaint&) SK_OVERRIDE; |
| 194 | |
| 195 | virtual void drawPosTextH(const void* text, size_t byteLength, |
| skia.committer@gmail.com | 422188f | 2013-01-03 02:01:32 +0000 | [diff] [blame] | 196 | const SkScalar xpos[], SkScalar constY, |
| robertphillips@google.com | 67baba4 | 2013-01-02 20:20:31 +0000 | [diff] [blame] | 197 | const SkPaint&) SK_OVERRIDE; |
| chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 198 | |
| bsalomon@google.com | 7ce564c | 2013-10-22 16:54:15 +0000 | [diff] [blame] | 199 | virtual void drawRect(const SkRect& rect, const SkPaint&) SK_OVERRIDE; |
| 200 | |
| robertphillips@google.com | 67baba4 | 2013-01-02 20:20:31 +0000 | [diff] [blame] | 201 | virtual void drawRRect(const SkRRect& rrect, const SkPaint& paint) SK_OVERRIDE; |
| 202 | |
| chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 203 | virtual void drawSprite(const SkBitmap&, int left, int top, |
| 204 | const SkPaint*) SK_OVERRIDE; |
| 205 | |
| 206 | virtual void drawText(const void* text, size_t byteLength, SkScalar x, |
| 207 | SkScalar y, const SkPaint&) SK_OVERRIDE; |
| 208 | |
| 209 | virtual void drawTextOnPath(const void* text, size_t byteLength, |
| robertphillips@google.com | 67baba4 | 2013-01-02 20:20:31 +0000 | [diff] [blame] | 210 | const SkPath& path, const SkMatrix* matrix, |
| chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 211 | const SkPaint&) SK_OVERRIDE; |
| 212 | |
| 213 | virtual void drawVertices(VertexMode, int vertexCount, |
| robertphillips@google.com | 67baba4 | 2013-01-02 20:20:31 +0000 | [diff] [blame] | 214 | const SkPoint vertices[], const SkPoint texs[], |
| 215 | const SkColor colors[], SkXfermode*, |
| 216 | const uint16_t indices[], int indexCount, |
| chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 217 | const SkPaint&) SK_OVERRIDE; |
| 218 | |
| robertphillips@google.com | 3b0a9fe | 2013-01-31 15:56:22 +0000 | [diff] [blame] | 219 | static const int kVizImageHeight = 256; |
| 220 | static const int kVizImageWidth = 256; |
| 221 | |
| robertphillips@google.com | 8f90a89 | 2014-02-28 18:19:39 +0000 | [diff] [blame] | 222 | virtual bool isClipEmpty() const SK_OVERRIDE { return false; } |
| commit-bot@chromium.org | 5c70cdc | 2014-03-08 03:57:19 +0000 | [diff] [blame] | 223 | virtual bool isClipRect() const SK_OVERRIDE { return true; } |
| 224 | #ifdef SK_SUPPORT_LEGACY_GETCLIPTYPE |
| skia.committer@gmail.com | 370a899 | 2014-03-01 03:02:09 +0000 | [diff] [blame] | 225 | virtual ClipType getClipType() const SK_OVERRIDE { |
| 226 | return kRect_ClipType; |
| robertphillips@google.com | 8f90a89 | 2014-02-28 18:19:39 +0000 | [diff] [blame] | 227 | } |
| commit-bot@chromium.org | 5c70cdc | 2014-03-08 03:57:19 +0000 | [diff] [blame] | 228 | #endif |
| robertphillips@google.com | 8f90a89 | 2014-02-28 18:19:39 +0000 | [diff] [blame] | 229 | virtual bool getClipBounds(SkRect* bounds) const SK_OVERRIDE { |
| 230 | if (NULL != bounds) { |
| skia.committer@gmail.com | 370a899 | 2014-03-01 03:02:09 +0000 | [diff] [blame] | 231 | bounds->setXYWH(0, 0, |
| 232 | SkIntToScalar(this->imageInfo().fWidth), |
| robertphillips@google.com | 8f90a89 | 2014-02-28 18:19:39 +0000 | [diff] [blame] | 233 | SkIntToScalar(this->imageInfo().fHeight)); |
| 234 | } |
| 235 | return true; |
| 236 | } |
| 237 | virtual bool getClipDeviceBounds(SkIRect* bounds) const SK_OVERRIDE { |
| 238 | if (NULL != bounds) { |
| 239 | bounds->setLargest(); |
| 240 | } |
| 241 | return true; |
| 242 | } |
| 243 | |
| commit-bot@chromium.org | ab58273 | 2014-02-21 12:20:45 +0000 | [diff] [blame] | 244 | protected: |
| commit-bot@chromium.org | e54a23f | 2014-03-12 20:21:48 +0000 | [diff] [blame] | 245 | virtual void willSave(SaveFlags) SK_OVERRIDE; |
| 246 | virtual SaveLayerStrategy willSaveLayer(const SkRect*, const SkPaint*, SaveFlags) SK_OVERRIDE; |
| 247 | virtual void willRestore() SK_OVERRIDE; |
| 248 | |
| commit-bot@chromium.org | 44c48d0 | 2014-03-13 20:03:58 +0000 | [diff] [blame] | 249 | virtual void didConcat(const SkMatrix&) SK_OVERRIDE; |
| 250 | virtual void didSetMatrix(const SkMatrix&) SK_OVERRIDE; |
| 251 | |
| commit-bot@chromium.org | ab58273 | 2014-02-21 12:20:45 +0000 | [diff] [blame] | 252 | virtual void onDrawDRRect(const SkRRect&, const SkRRect&, const SkPaint&) SK_OVERRIDE; |
| commit-bot@chromium.org | 210ae2a | 2014-02-27 17:40:13 +0000 | [diff] [blame] | 253 | virtual void onPushCull(const SkRect& cullRect) SK_OVERRIDE; |
| 254 | virtual void onPopCull() SK_OVERRIDE; |
| commit-bot@chromium.org | ab58273 | 2014-02-21 12:20:45 +0000 | [diff] [blame] | 255 | |
| robertphillips@google.com | 8f90a89 | 2014-02-28 18:19:39 +0000 | [diff] [blame] | 256 | virtual void onClipRect(const SkRect&, SkRegion::Op, ClipEdgeStyle) SK_OVERRIDE; |
| 257 | virtual void onClipRRect(const SkRRect&, SkRegion::Op, ClipEdgeStyle) SK_OVERRIDE; |
| 258 | virtual void onClipPath(const SkPath&, SkRegion::Op, ClipEdgeStyle) SK_OVERRIDE; |
| 259 | virtual void onClipRegion(const SkRegion& region, SkRegion::Op) SK_OVERRIDE; |
| 260 | |
| commit-bot@chromium.org | 1643b2c | 2014-03-03 23:25:41 +0000 | [diff] [blame] | 261 | void markActiveCommands(int index); |
| commit-bot@chromium.org | 768ac85 | 2014-03-03 16:32:17 +0000 | [diff] [blame] | 262 | |
| chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 263 | private: |
| robertphillips@google.com | 67baba4 | 2013-01-02 20:20:31 +0000 | [diff] [blame] | 264 | SkTDArray<SkDrawCommand*> fCommandVector; |
| commit-bot@chromium.org | 57f74e0 | 2014-03-25 23:31:33 +0000 | [diff] [blame^] | 265 | SkPicture* fPicture; |
| chudy@google.com | b9ddd4e | 2012-07-10 14:14:50 +0000 | [diff] [blame] | 266 | int fWidth; |
| commit-bot@chromium.org | 1735d66 | 2013-12-04 13:42:46 +0000 | [diff] [blame] | 267 | int fHeight; |
| chudy@google.com | 7e4cfbf | 2012-07-17 15:40:51 +0000 | [diff] [blame] | 268 | bool fFilter; |
| commit-bot@chromium.org | 768ac85 | 2014-03-03 16:32:17 +0000 | [diff] [blame] | 269 | bool fMegaVizMode; |
| chudy@google.com | 830b879 | 2012-08-01 15:57:52 +0000 | [diff] [blame] | 270 | int fIndex; |
| bungeman@google.com | e8cc6e8 | 2013-01-17 16:30:56 +0000 | [diff] [blame] | 271 | SkMatrix fUserMatrix; |
| chudy@google.com | a9e937c | 2012-08-03 17:32:05 +0000 | [diff] [blame] | 272 | SkMatrix fMatrix; |
| 273 | SkIRect fClip; |
| robertphillips@google.com | 32bbcf8 | 2013-10-17 17:56:10 +0000 | [diff] [blame] | 274 | |
| robertphillips@google.com | f4741c1 | 2013-02-06 20:13:54 +0000 | [diff] [blame] | 275 | bool fOverdrawViz; |
| 276 | SkDrawFilter* fOverdrawFilter; |
| chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 277 | |
| robertphillips@google.com | 32bbcf8 | 2013-10-17 17:56:10 +0000 | [diff] [blame] | 278 | bool fOverrideTexFiltering; |
| 279 | SkTexOverrideFilter* fTexOverrideFilter; |
| 280 | |
| chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 281 | /** |
| tomhudson@google.com | 0699e02 | 2012-11-27 16:09:42 +0000 | [diff] [blame] | 282 | Number of unmatched save() calls at any point during a draw. |
| 283 | If there are any saveLayer() calls outstanding, we need to resolve |
| 284 | all of them, which in practice means resolving all save() calls, |
| 285 | to avoid corruption of our canvas. |
| 286 | */ |
| 287 | int fOutstandingSaveCount; |
| 288 | |
| skia.committer@gmail.com | ade9a34 | 2014-03-04 03:02:32 +0000 | [diff] [blame] | 289 | /** |
| commit-bot@chromium.org | 1643b2c | 2014-03-03 23:25:41 +0000 | [diff] [blame] | 290 | The active saveLayer commands at a given point in the renderering. |
| 291 | Only used when "mega" visualization is enabled. |
| 292 | */ |
| 293 | SkTDArray<SkDrawCommand*> fActiveLayers; |
| 294 | |
| skia.committer@gmail.com | ade9a34 | 2014-03-04 03:02:32 +0000 | [diff] [blame] | 295 | /** |
| commit-bot@chromium.org | 1643b2c | 2014-03-03 23:25:41 +0000 | [diff] [blame] | 296 | The active cull commands at a given point in the rendering. |
| 297 | Only used when "mega" visualization is enabled. |
| 298 | */ |
| 299 | SkTDArray<SkDrawCommand*> fActiveCulls; |
| 300 | |
| tomhudson@google.com | 0699e02 | 2012-11-27 16:09:42 +0000 | [diff] [blame] | 301 | /** |
| chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 302 | Adds the command to the classes vector of commands. |
| 303 | @param command The draw command for execution |
| 304 | */ |
| 305 | void addDrawCommand(SkDrawCommand* command); |
| chudy@google.com | 830b879 | 2012-08-01 15:57:52 +0000 | [diff] [blame] | 306 | |
| 307 | /** |
| 308 | Applies any panning and zooming the user has specified before |
| 309 | drawing anything else into the canvas. |
| 310 | */ |
| 311 | void applyUserTransform(SkCanvas* canvas); |
| robertphillips@google.com | 3b0a9fe | 2013-01-31 15:56:22 +0000 | [diff] [blame] | 312 | |
| commit-bot@chromium.org | 57f74e0 | 2014-03-25 23:31:33 +0000 | [diff] [blame^] | 313 | size_t getOpID() const { |
| 314 | if (NULL != fPicture) { |
| 315 | return fPicture->EXPERIMENTAL_curOpID(); |
| 316 | } |
| 317 | return 0; |
| 318 | } |
| 319 | |
| robertphillips@google.com | 3b0a9fe | 2013-01-31 15:56:22 +0000 | [diff] [blame] | 320 | typedef SkCanvas INHERITED; |
| chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 321 | }; |
| 322 | |
| 323 | #endif |