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" |
bungeman | d3ebb48 | 2015-08-05 13:57:49 -0700 | [diff] [blame] | 15 | #include "SkPath.h" |
commit-bot@chromium.org | 2a67e12 | 2014-05-19 13:53:10 +0000 | [diff] [blame] | 16 | #include "SkPathOps.h" |
chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 17 | #include "SkPicture.h" |
reed | fb8c1fc | 2015-08-04 18:44:56 -0700 | [diff] [blame] | 18 | #include "SkString.h" |
bungeman | d3ebb48 | 2015-08-05 13:57:49 -0700 | [diff] [blame] | 19 | #include "SkTArray.h" |
ethannicholas | 402cd91 | 2016-02-10 12:57:30 -0800 | [diff] [blame] | 20 | #include "UrlDataManager.h" |
chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 21 | |
fmalita | 65cdb57 | 2015-03-26 07:24:48 -0700 | [diff] [blame] | 22 | class SkNWayCanvas; |
robertphillips@google.com | 32bbcf8 | 2013-10-17 17:56:10 +0000 | [diff] [blame] | 23 | |
fmalita@google.com | 86681b3 | 2013-06-13 20:59:14 +0000 | [diff] [blame] | 24 | class SK_API SkDebugCanvas : public SkCanvas { |
chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 25 | public: |
chudy@google.com | 80a4a60 | 2012-07-30 18:54:07 +0000 | [diff] [blame] | 26 | SkDebugCanvas(int width, int height); |
robertphillips@google.com | f4741c1 | 2013-02-06 20:13:54 +0000 | [diff] [blame] | 27 | virtual ~SkDebugCanvas(); |
chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 28 | |
commit-bot@chromium.org | 768ac85 | 2014-03-03 16:32:17 +0000 | [diff] [blame] | 29 | void toggleFilter(bool toggle) { fFilter = toggle; } |
| 30 | |
| 31 | void setMegaVizMode(bool megaVizMode) { fMegaVizMode = megaVizMode; } |
commit-bot@chromium.org | 57f74e0 | 2014-03-25 23:31:33 +0000 | [diff] [blame] | 32 | bool getMegaVizMode() const { return fMegaVizMode; } |
chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 33 | |
| 34 | /** |
robertphillips@google.com | f4741c1 | 2013-02-06 20:13:54 +0000 | [diff] [blame] | 35 | * Enable or disable overdraw visualization |
| 36 | */ |
fmalita | 65cdb57 | 2015-03-26 07:24:48 -0700 | [diff] [blame] | 37 | void setOverdrawViz(bool overdrawViz); |
commit-bot@chromium.org | 57f74e0 | 2014-03-25 23:31:33 +0000 | [diff] [blame] | 38 | bool getOverdrawViz() const { return fOverdrawViz; } |
| 39 | |
ethannicholas | 0a0520a | 2016-02-12 12:06:53 -0800 | [diff] [blame] | 40 | /** |
| 41 | * Set the color of the clip visualization. An alpha of zero renders the clip invisible. |
| 42 | */ |
| 43 | void setClipVizColor(SkColor clipVizColor) { this->fClipVizColor = clipVizColor; } |
| 44 | SkColor getClipVizColor() const { return fClipVizColor; } |
| 45 | |
commit-bot@chromium.org | 2a67e12 | 2014-05-19 13:53:10 +0000 | [diff] [blame] | 46 | bool getAllowSimplifyClip() const { return fAllowSimplifyClip; } |
| 47 | |
commit-bot@chromium.org | 57f74e0 | 2014-03-25 23:31:33 +0000 | [diff] [blame] | 48 | void setPicture(SkPicture* picture) { fPicture = picture; } |
robertphillips@google.com | f4741c1 | 2013-02-06 20:13:54 +0000 | [diff] [blame] | 49 | |
| 50 | /** |
robertphillips@google.com | 32bbcf8 | 2013-10-17 17:56:10 +0000 | [diff] [blame] | 51 | * Enable or disable texure filtering override |
| 52 | */ |
reed | 93a1215 | 2015-03-16 10:08:34 -0700 | [diff] [blame] | 53 | void overrideTexFiltering(bool overrideTexFiltering, SkFilterQuality); |
robertphillips@google.com | 32bbcf8 | 2013-10-17 17:56:10 +0000 | [diff] [blame] | 54 | |
| 55 | /** |
chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 56 | Executes all draw calls to the canvas. |
| 57 | @param canvas The canvas being drawn to |
| 58 | */ |
| 59 | void draw(SkCanvas* canvas); |
| 60 | |
| 61 | /** |
chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 62 | Executes the draw calls up to the specified index. |
| 63 | @param canvas The canvas being drawn to |
| 64 | @param index The index of the final command being executed |
| 65 | */ |
chudy@google.com | 0b5bbb0 | 2012-07-31 19:55:32 +0000 | [diff] [blame] | 66 | void drawTo(SkCanvas* canvas, int index); |
| 67 | |
| 68 | /** |
chudy@google.com | a9e937c | 2012-08-03 17:32:05 +0000 | [diff] [blame] | 69 | Returns the most recently calculated transformation matrix |
| 70 | */ |
| 71 | const SkMatrix& getCurrentMatrix() { |
| 72 | return fMatrix; |
| 73 | } |
| 74 | |
| 75 | /** |
| 76 | Returns the most recently calculated clip |
| 77 | */ |
| 78 | const SkIRect& getCurrentClip() { |
| 79 | return fClip; |
| 80 | } |
| 81 | |
| 82 | /** |
chudy@google.com | 0b5bbb0 | 2012-07-31 19:55:32 +0000 | [diff] [blame] | 83 | Returns the index of the last draw command to write to the pixel at (x,y) |
| 84 | */ |
chudy@google.com | 830b879 | 2012-08-01 15:57:52 +0000 | [diff] [blame] | 85 | int getCommandAtPoint(int x, int y, int index); |
chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 86 | |
| 87 | /** |
robertphillips@google.com | 50c84da | 2013-04-01 18:18:49 +0000 | [diff] [blame] | 88 | Removes the command at the specified index |
| 89 | @param index The index of the command to delete |
| 90 | */ |
| 91 | void deleteDrawCommandAt(int index); |
| 92 | |
| 93 | /** |
chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 94 | Returns the draw command at the given index. |
| 95 | @param index The index of the command |
| 96 | */ |
| 97 | SkDrawCommand* getDrawCommandAt(int index); |
| 98 | |
| 99 | /** |
robertphillips@google.com | 50c84da | 2013-04-01 18:18:49 +0000 | [diff] [blame] | 100 | Sets the draw command for a given index. |
| 101 | @param index The index to overwrite |
| 102 | @param command The new command |
| 103 | */ |
| 104 | void setDrawCommandAt(int index, SkDrawCommand* command); |
| 105 | |
| 106 | /** |
chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 107 | Returns information about the command at the given index. |
| 108 | @param index The index of the command |
| 109 | */ |
fmalita | 8c89c52 | 2014-11-08 16:18:56 -0800 | [diff] [blame] | 110 | const SkTDArray<SkString*>* getCommandInfo(int index) const; |
chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 111 | |
| 112 | /** |
chudy@google.com | 7e4cfbf | 2012-07-17 15:40:51 +0000 | [diff] [blame] | 113 | Returns the visibility of the command at the given index. |
| 114 | @param index The index of the command |
| 115 | */ |
| 116 | bool getDrawCommandVisibilityAt(int index); |
| 117 | |
| 118 | /** |
chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 119 | Returns the vector of draw commands |
| 120 | */ |
reed@google.com | 4469938 | 2013-10-31 17:28:30 +0000 | [diff] [blame] | 121 | SK_ATTR_DEPRECATED("please use getDrawCommandAt and getSize instead") |
robertphillips@google.com | 8a1cdae | 2012-11-19 20:44:29 +0000 | [diff] [blame] | 122 | const SkTDArray<SkDrawCommand*>& getDrawCommands() const; |
skia.committer@gmail.com | 2e71f16 | 2013-03-12 07:12:32 +0000 | [diff] [blame] | 123 | |
robertphillips@google.com | febc0ec | 2013-03-11 22:53:11 +0000 | [diff] [blame] | 124 | /** |
| 125 | Returns the vector of draw commands. Do not use this entry |
| 126 | point - it is going away! |
| 127 | */ |
| 128 | SkTDArray<SkDrawCommand*>& getDrawCommands(); |
chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 129 | |
| 130 | /** |
chudy@google.com | f141432 | 2012-07-03 20:28:14 +0000 | [diff] [blame] | 131 | Returns length of draw command vector. |
| 132 | */ |
commit-bot@chromium.org | 0d4fe14 | 2013-07-15 22:47:14 +0000 | [diff] [blame] | 133 | int getSize() const { |
robertphillips@google.com | 67baba4 | 2013-01-02 20:20:31 +0000 | [diff] [blame] | 134 | return fCommandVector.count(); |
chudy@google.com | f141432 | 2012-07-03 20:28:14 +0000 | [diff] [blame] | 135 | } |
| 136 | |
chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 137 | /** |
| 138 | Toggles the visibility / execution of the draw command at index i with |
| 139 | the value of toggle. |
| 140 | */ |
| 141 | void toggleCommand(int index, bool toggle); |
| 142 | |
bungeman@google.com | e8cc6e8 | 2013-01-17 16:30:56 +0000 | [diff] [blame] | 143 | void setUserMatrix(SkMatrix matrix) { |
| 144 | fUserMatrix = matrix; |
chudy@google.com | 830b879 | 2012-08-01 15:57:52 +0000 | [diff] [blame] | 145 | } |
| 146 | |
commit-bot@chromium.org | 2a67e12 | 2014-05-19 13:53:10 +0000 | [diff] [blame] | 147 | SkString clipStackData() const { return fClipStackData; } |
| 148 | |
ethannicholas | 402cd91 | 2016-02-10 12:57:30 -0800 | [diff] [blame] | 149 | /** |
ethannicholas | 0a0520a | 2016-02-12 12:06:53 -0800 | [diff] [blame] | 150 | Returns a JSON object representing up to the Nth draw, where N is less than |
| 151 | SkDebugCanvas::getSize(). The encoder may use the UrlDataManager to store binary data such |
| 152 | as images, referring to them via URLs embedded in the JSON. |
ethannicholas | 402cd91 | 2016-02-10 12:57:30 -0800 | [diff] [blame] | 153 | */ |
joshualitt | 6b3cf73 | 2016-02-17 11:20:26 -0800 | [diff] [blame] | 154 | Json::Value toJSON(UrlDataManager& urlDataManager, int n, SkCanvas*); |
ethannicholas | 402cd91 | 2016-02-10 12:57:30 -0800 | [diff] [blame] | 155 | |
chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 156 | //////////////////////////////////////////////////////////////////////////////// |
| 157 | // Inherited from SkCanvas |
| 158 | //////////////////////////////////////////////////////////////////////////////// |
| 159 | |
robertphillips@google.com | 3b0a9fe | 2013-01-31 15:56:22 +0000 | [diff] [blame] | 160 | static const int kVizImageHeight = 256; |
| 161 | static const int kVizImageWidth = 256; |
| 162 | |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 163 | bool isClipEmpty() const override { return false; } |
| 164 | bool isClipRect() const override { return true; } |
| 165 | bool getClipBounds(SkRect* bounds) const override { |
bsalomon | 49f085d | 2014-09-05 13:34:00 -0700 | [diff] [blame] | 166 | if (bounds) { |
skia.committer@gmail.com | 370a899 | 2014-03-01 03:02:09 +0000 | [diff] [blame] | 167 | bounds->setXYWH(0, 0, |
reed | e5ea500 | 2014-09-03 11:54:58 -0700 | [diff] [blame] | 168 | SkIntToScalar(this->imageInfo().width()), |
| 169 | SkIntToScalar(this->imageInfo().height())); |
robertphillips@google.com | 8f90a89 | 2014-02-28 18:19:39 +0000 | [diff] [blame] | 170 | } |
| 171 | return true; |
| 172 | } |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 173 | bool getClipDeviceBounds(SkIRect* bounds) const override { |
bsalomon | 49f085d | 2014-09-05 13:34:00 -0700 | [diff] [blame] | 174 | if (bounds) { |
robertphillips@google.com | 8f90a89 | 2014-02-28 18:19:39 +0000 | [diff] [blame] | 175 | bounds->setLargest(); |
| 176 | } |
| 177 | return true; |
| 178 | } |
| 179 | |
commit-bot@chromium.org | ab58273 | 2014-02-21 12:20:45 +0000 | [diff] [blame] | 180 | protected: |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 181 | void willSave() override; |
reed | 4960eee | 2015-12-18 07:09:18 -0800 | [diff] [blame] | 182 | SaveLayerStrategy getSaveLayerStrategy(const SaveLayerRec&) override; |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 183 | void willRestore() override; |
commit-bot@chromium.org | e54a23f | 2014-03-12 20:21:48 +0000 | [diff] [blame] | 184 | |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 185 | void didConcat(const SkMatrix&) override; |
| 186 | void didSetMatrix(const SkMatrix&) override; |
commit-bot@chromium.org | 44c48d0 | 2014-03-13 20:03:58 +0000 | [diff] [blame] | 187 | |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 188 | void onDrawDRRect(const SkRRect&, const SkRRect&, const SkPaint&) override; |
robertphillips | 9bafc30 | 2015-02-13 11:13:00 -0800 | [diff] [blame] | 189 | void onDrawText(const void* text, size_t byteLength, SkScalar x, SkScalar y, |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 190 | const SkPaint&) override; |
robertphillips | 9bafc30 | 2015-02-13 11:13:00 -0800 | [diff] [blame] | 191 | void onDrawPosText(const void* text, size_t byteLength, const SkPoint pos[], |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 192 | const SkPaint&) override; |
robertphillips | 9bafc30 | 2015-02-13 11:13:00 -0800 | [diff] [blame] | 193 | void onDrawPosTextH(const void* text, size_t byteLength, const SkScalar xpos[], |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 194 | SkScalar constY, const SkPaint&) override; |
robertphillips | 9bafc30 | 2015-02-13 11:13:00 -0800 | [diff] [blame] | 195 | void onDrawTextOnPath(const void* text, size_t byteLength, const SkPath& path, |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 196 | const SkMatrix* matrix, const SkPaint&) override; |
robertphillips | 9bafc30 | 2015-02-13 11:13:00 -0800 | [diff] [blame] | 197 | void onDrawTextBlob(const SkTextBlob* blob, SkScalar x, SkScalar y, |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 198 | const SkPaint& paint) override; |
commit-bot@chromium.org | ab58273 | 2014-02-21 12:20:45 +0000 | [diff] [blame] | 199 | |
robertphillips | 9bafc30 | 2015-02-13 11:13:00 -0800 | [diff] [blame] | 200 | void onDrawPatch(const SkPoint cubics[12], const SkColor colors[4], |
mtklein | f059900 | 2015-07-13 06:18:39 -0700 | [diff] [blame] | 201 | const SkPoint texCoords[4], SkXfermode* xmode, const SkPaint& paint) override; |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 202 | void onDrawPaint(const SkPaint&) override; |
robertphillips | 9bafc30 | 2015-02-13 11:13:00 -0800 | [diff] [blame] | 203 | |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 204 | void onDrawRect(const SkRect&, const SkPaint&) override; |
| 205 | void onDrawOval(const SkRect&, const SkPaint&) override; |
| 206 | void onDrawRRect(const SkRRect&, const SkPaint&) override; |
| 207 | void onDrawPoints(PointMode, size_t count, const SkPoint pts[], const SkPaint&) override; |
robertphillips | 9bafc30 | 2015-02-13 11:13:00 -0800 | [diff] [blame] | 208 | void onDrawVertices(VertexMode vmode, int vertexCount, |
| 209 | const SkPoint vertices[], const SkPoint texs[], |
| 210 | const SkColor colors[], SkXfermode* xmode, |
| 211 | const uint16_t indices[], int indexCount, |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 212 | const SkPaint&) override; |
| 213 | void onDrawPath(const SkPath&, const SkPaint&) override; |
| 214 | void onDrawBitmap(const SkBitmap&, SkScalar left, SkScalar top, const SkPaint*) override; |
reed | 41af966 | 2015-01-05 07:49:08 -0800 | [diff] [blame] | 215 | void onDrawBitmapRect(const SkBitmap&, const SkRect* src, const SkRect& dst, const SkPaint*, |
reed | 562fe47 | 2015-07-28 07:35:14 -0700 | [diff] [blame] | 216 | SrcRectConstraint) override; |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 217 | void onDrawImage(const SkImage*, SkScalar left, SkScalar top, const SkPaint*) override; |
reed | 41af966 | 2015-01-05 07:49:08 -0800 | [diff] [blame] | 218 | void onDrawImageRect(const SkImage*, const SkRect* src, const SkRect& dst, |
reed | 562fe47 | 2015-07-28 07:35:14 -0700 | [diff] [blame] | 219 | const SkPaint*, SrcRectConstraint) override; |
reed | 41af966 | 2015-01-05 07:49:08 -0800 | [diff] [blame] | 220 | void onDrawBitmapNine(const SkBitmap&, const SkIRect& center, const SkRect& dst, |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 221 | const SkPaint*) override; |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 222 | void onClipRect(const SkRect&, SkRegion::Op, ClipEdgeStyle) override; |
| 223 | void onClipRRect(const SkRRect&, SkRegion::Op, ClipEdgeStyle) override; |
| 224 | void onClipPath(const SkPath&, SkRegion::Op, ClipEdgeStyle) override; |
| 225 | void onClipRegion(const SkRegion& region, SkRegion::Op) override; |
robertphillips@google.com | 8f90a89 | 2014-02-28 18:19:39 +0000 | [diff] [blame] | 226 | |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 227 | void onDrawPicture(const SkPicture*, const SkMatrix*, const SkPaint*) override; |
robertphillips | 9b14f26 | 2014-06-04 05:40:44 -0700 | [diff] [blame] | 228 | |
commit-bot@chromium.org | 1643b2c | 2014-03-03 23:25:41 +0000 | [diff] [blame] | 229 | void markActiveCommands(int index); |
commit-bot@chromium.org | 768ac85 | 2014-03-03 16:32:17 +0000 | [diff] [blame] | 230 | |
chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 231 | private: |
robertphillips@google.com | 67baba4 | 2013-01-02 20:20:31 +0000 | [diff] [blame] | 232 | SkTDArray<SkDrawCommand*> fCommandVector; |
commit-bot@chromium.org | 57f74e0 | 2014-03-25 23:31:33 +0000 | [diff] [blame] | 233 | SkPicture* fPicture; |
chudy@google.com | 7e4cfbf | 2012-07-17 15:40:51 +0000 | [diff] [blame] | 234 | bool fFilter; |
commit-bot@chromium.org | 768ac85 | 2014-03-03 16:32:17 +0000 | [diff] [blame] | 235 | bool fMegaVizMode; |
bungeman@google.com | e8cc6e8 | 2013-01-17 16:30:56 +0000 | [diff] [blame] | 236 | SkMatrix fUserMatrix; |
chudy@google.com | a9e937c | 2012-08-03 17:32:05 +0000 | [diff] [blame] | 237 | SkMatrix fMatrix; |
| 238 | SkIRect fClip; |
robertphillips@google.com | 32bbcf8 | 2013-10-17 17:56:10 +0000 | [diff] [blame] | 239 | |
commit-bot@chromium.org | 2a67e12 | 2014-05-19 13:53:10 +0000 | [diff] [blame] | 240 | SkString fClipStackData; |
| 241 | bool fCalledAddStackData; |
| 242 | SkPath fSaveDevPath; |
| 243 | |
robertphillips@google.com | f4741c1 | 2013-02-06 20:13:54 +0000 | [diff] [blame] | 244 | bool fOverdrawViz; |
fmalita | 65cdb57 | 2015-03-26 07:24:48 -0700 | [diff] [blame] | 245 | bool fOverrideFilterQuality; |
| 246 | SkFilterQuality fFilterQuality; |
ethannicholas | 0a0520a | 2016-02-12 12:06:53 -0800 | [diff] [blame] | 247 | SkColor fClipVizColor; |
chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 248 | |
fmalita | 65cdb57 | 2015-03-26 07:24:48 -0700 | [diff] [blame] | 249 | SkAutoTUnref<SkNWayCanvas> fPaintFilterCanvas; |
robertphillips@google.com | 32bbcf8 | 2013-10-17 17:56:10 +0000 | [diff] [blame] | 250 | |
chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 251 | /** |
commit-bot@chromium.org | 1643b2c | 2014-03-03 23:25:41 +0000 | [diff] [blame] | 252 | The active saveLayer commands at a given point in the renderering. |
| 253 | Only used when "mega" visualization is enabled. |
| 254 | */ |
| 255 | SkTDArray<SkDrawCommand*> fActiveLayers; |
| 256 | |
skia.committer@gmail.com | ade9a34 | 2014-03-04 03:02:32 +0000 | [diff] [blame] | 257 | /** |
chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 258 | Adds the command to the classes vector of commands. |
| 259 | @param command The draw command for execution |
| 260 | */ |
| 261 | void addDrawCommand(SkDrawCommand* command); |
chudy@google.com | 830b879 | 2012-08-01 15:57:52 +0000 | [diff] [blame] | 262 | |
| 263 | /** |
| 264 | Applies any panning and zooming the user has specified before |
| 265 | drawing anything else into the canvas. |
| 266 | */ |
| 267 | void applyUserTransform(SkCanvas* canvas); |
robertphillips@google.com | 3b0a9fe | 2013-01-31 15:56:22 +0000 | [diff] [blame] | 268 | |
commit-bot@chromium.org | 2a67e12 | 2014-05-19 13:53:10 +0000 | [diff] [blame] | 269 | void resetClipStackData() { fClipStackData.reset(); fCalledAddStackData = false; } |
| 270 | |
| 271 | void addClipStackData(const SkPath& devPath, const SkPath& operand, SkRegion::Op elementOp); |
| 272 | void addPathData(const SkPath& path, const char* pathName); |
| 273 | bool lastClipStackData(const SkPath& devPath); |
| 274 | void outputConicPoints(const SkPoint* pts, SkScalar weight); |
| 275 | void outputPoints(const SkPoint* pts, int count); |
| 276 | void outputPointsCommon(const SkPoint* pts, int count); |
| 277 | void outputScalar(SkScalar num); |
skia.committer@gmail.com | 3b9e8be | 2014-05-20 03:05:34 +0000 | [diff] [blame] | 278 | |
fmalita | 65cdb57 | 2015-03-26 07:24:48 -0700 | [diff] [blame] | 279 | void updatePaintFilterCanvas(); |
| 280 | |
robertphillips@google.com | 3b0a9fe | 2013-01-31 15:56:22 +0000 | [diff] [blame] | 281 | typedef SkCanvas INHERITED; |
chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 282 | }; |
| 283 | |
| 284 | #endif |