blob: 06338e2a5073c1a7d8725ba6c805788da4ac41d6 [file] [log] [blame]
chudy@google.com902ebe52012-06-29 14:21:22 +00001
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.com902ebe52012-06-29 14:21:22 +000013#include "SkCanvas.h"
14#include "SkDrawCommand.h"
commit-bot@chromium.org2a67e122014-05-19 13:53:10 +000015#include "SkPathOps.h"
chudy@google.com902ebe52012-06-29 14:21:22 +000016#include "SkPicture.h"
robertphillips@google.com8a1cdae2012-11-19 20:44:29 +000017#include "SkTArray.h"
chudy@google.com97cee972012-08-07 20:41:37 +000018#include "SkString.h"
chudy@google.com902ebe52012-06-29 14:21:22 +000019
fmalita65cdb572015-03-26 07:24:48 -070020class SkNWayCanvas;
robertphillips@google.com32bbcf82013-10-17 17:56:10 +000021
fmalita@google.com86681b32013-06-13 20:59:14 +000022class SK_API SkDebugCanvas : public SkCanvas {
chudy@google.com902ebe52012-06-29 14:21:22 +000023public:
chudy@google.com80a4a602012-07-30 18:54:07 +000024 SkDebugCanvas(int width, int height);
robertphillips@google.comf4741c12013-02-06 20:13:54 +000025 virtual ~SkDebugCanvas();
chudy@google.com902ebe52012-06-29 14:21:22 +000026
commit-bot@chromium.org768ac852014-03-03 16:32:17 +000027 void toggleFilter(bool toggle) { fFilter = toggle; }
28
29 void setMegaVizMode(bool megaVizMode) { fMegaVizMode = megaVizMode; }
commit-bot@chromium.org57f74e02014-03-25 23:31:33 +000030 bool getMegaVizMode() const { return fMegaVizMode; }
chudy@google.com902ebe52012-06-29 14:21:22 +000031
32 /**
robertphillips@google.comf4741c12013-02-06 20:13:54 +000033 * Enable or disable overdraw visualization
34 */
fmalita65cdb572015-03-26 07:24:48 -070035 void setOverdrawViz(bool overdrawViz);
commit-bot@chromium.org57f74e02014-03-25 23:31:33 +000036 bool getOverdrawViz() const { return fOverdrawViz; }
37
commit-bot@chromium.org2a67e122014-05-19 13:53:10 +000038 bool getAllowSimplifyClip() const { return fAllowSimplifyClip; }
39
commit-bot@chromium.org57f74e02014-03-25 23:31:33 +000040 void setPicture(SkPicture* picture) { fPicture = picture; }
robertphillips@google.comf4741c12013-02-06 20:13:54 +000041
42 /**
robertphillips@google.com32bbcf82013-10-17 17:56:10 +000043 * Enable or disable texure filtering override
44 */
reed93a12152015-03-16 10:08:34 -070045 void overrideTexFiltering(bool overrideTexFiltering, SkFilterQuality);
robertphillips@google.com32bbcf82013-10-17 17:56:10 +000046
47 /**
chudy@google.com902ebe52012-06-29 14:21:22 +000048 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.com902ebe52012-06-29 14:21:22 +000054 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.com0b5bbb02012-07-31 19:55:32 +000058 void drawTo(SkCanvas* canvas, int index);
59
60 /**
chudy@google.coma9e937c2012-08-03 17:32:05 +000061 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.com0b5bbb02012-07-31 19:55:32 +000075 Returns the index of the last draw command to write to the pixel at (x,y)
76 */
chudy@google.com830b8792012-08-01 15:57:52 +000077 int getCommandAtPoint(int x, int y, int index);
chudy@google.com902ebe52012-06-29 14:21:22 +000078
79 /**
robertphillips@google.com50c84da2013-04-01 18:18:49 +000080 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.com902ebe52012-06-29 14:21:22 +000086 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.com50c84da2013-04-01 18:18:49 +000092 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.com902ebe52012-06-29 14:21:22 +000099 Returns information about the command at the given index.
100 @param index The index of the command
101 */
fmalita8c89c522014-11-08 16:18:56 -0800102 const SkTDArray<SkString*>* getCommandInfo(int index) const;
chudy@google.com902ebe52012-06-29 14:21:22 +0000103
104 /**
chudy@google.com7e4cfbf2012-07-17 15:40:51 +0000105 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.com902ebe52012-06-29 14:21:22 +0000111 Returns the vector of draw commands
112 */
reed@google.com44699382013-10-31 17:28:30 +0000113 SK_ATTR_DEPRECATED("please use getDrawCommandAt and getSize instead")
robertphillips@google.com8a1cdae2012-11-19 20:44:29 +0000114 const SkTDArray<SkDrawCommand*>& getDrawCommands() const;
skia.committer@gmail.com2e71f162013-03-12 07:12:32 +0000115
robertphillips@google.comfebc0ec2013-03-11 22:53:11 +0000116 /**
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.com902ebe52012-06-29 14:21:22 +0000121
122 /**
chudy@google.comf1414322012-07-03 20:28:14 +0000123 Returns length of draw command vector.
124 */
commit-bot@chromium.org0d4fe142013-07-15 22:47:14 +0000125 int getSize() const {
robertphillips@google.com67baba42013-01-02 20:20:31 +0000126 return fCommandVector.count();
chudy@google.comf1414322012-07-03 20:28:14 +0000127 }
128
chudy@google.com902ebe52012-06-29 14:21:22 +0000129 /**
130 Toggles the visibility / execution of the draw command at index i with
131 the value of toggle.
132 */
133 void toggleCommand(int index, bool toggle);
134
bungeman@google.come8cc6e82013-01-17 16:30:56 +0000135 void setUserMatrix(SkMatrix matrix) {
136 fUserMatrix = matrix;
chudy@google.com830b8792012-08-01 15:57:52 +0000137 }
138
commit-bot@chromium.org2a67e122014-05-19 13:53:10 +0000139 SkString clipStackData() const { return fClipStackData; }
140
chudy@google.com902ebe52012-06-29 14:21:22 +0000141////////////////////////////////////////////////////////////////////////////////
142// Inherited from SkCanvas
143////////////////////////////////////////////////////////////////////////////////
144
robertphillips@google.com3b0a9fe2013-01-31 15:56:22 +0000145 static const int kVizImageHeight = 256;
146 static const int kVizImageWidth = 256;
147
mtklein36352bf2015-03-25 18:17:31 -0700148 bool isClipEmpty() const override { return false; }
149 bool isClipRect() const override { return true; }
150 bool getClipBounds(SkRect* bounds) const override {
bsalomon49f085d2014-09-05 13:34:00 -0700151 if (bounds) {
skia.committer@gmail.com370a8992014-03-01 03:02:09 +0000152 bounds->setXYWH(0, 0,
reede5ea5002014-09-03 11:54:58 -0700153 SkIntToScalar(this->imageInfo().width()),
154 SkIntToScalar(this->imageInfo().height()));
robertphillips@google.com8f90a892014-02-28 18:19:39 +0000155 }
156 return true;
157 }
mtklein36352bf2015-03-25 18:17:31 -0700158 bool getClipDeviceBounds(SkIRect* bounds) const override {
bsalomon49f085d2014-09-05 13:34:00 -0700159 if (bounds) {
robertphillips@google.com8f90a892014-02-28 18:19:39 +0000160 bounds->setLargest();
161 }
162 return true;
163 }
164
commit-bot@chromium.orgab582732014-02-21 12:20:45 +0000165protected:
mtklein36352bf2015-03-25 18:17:31 -0700166 void willSave() override;
167 SaveLayerStrategy willSaveLayer(const SkRect*, const SkPaint*, SaveFlags) override;
168 void willRestore() override;
commit-bot@chromium.orge54a23f2014-03-12 20:21:48 +0000169
mtklein36352bf2015-03-25 18:17:31 -0700170 void didConcat(const SkMatrix&) override;
171 void didSetMatrix(const SkMatrix&) override;
commit-bot@chromium.org44c48d02014-03-13 20:03:58 +0000172
mtklein36352bf2015-03-25 18:17:31 -0700173 void onDrawDRRect(const SkRRect&, const SkRRect&, const SkPaint&) override;
robertphillips9bafc302015-02-13 11:13:00 -0800174 void onDrawText(const void* text, size_t byteLength, SkScalar x, SkScalar y,
mtklein36352bf2015-03-25 18:17:31 -0700175 const SkPaint&) override;
robertphillips9bafc302015-02-13 11:13:00 -0800176 void onDrawPosText(const void* text, size_t byteLength, const SkPoint pos[],
mtklein36352bf2015-03-25 18:17:31 -0700177 const SkPaint&) override;
robertphillips9bafc302015-02-13 11:13:00 -0800178 void onDrawPosTextH(const void* text, size_t byteLength, const SkScalar xpos[],
mtklein36352bf2015-03-25 18:17:31 -0700179 SkScalar constY, const SkPaint&) override;
robertphillips9bafc302015-02-13 11:13:00 -0800180 void onDrawTextOnPath(const void* text, size_t byteLength, const SkPath& path,
mtklein36352bf2015-03-25 18:17:31 -0700181 const SkMatrix* matrix, const SkPaint&) override;
robertphillips9bafc302015-02-13 11:13:00 -0800182 void onDrawTextBlob(const SkTextBlob* blob, SkScalar x, SkScalar y,
mtklein36352bf2015-03-25 18:17:31 -0700183 const SkPaint& paint) override;
commit-bot@chromium.orgab582732014-02-21 12:20:45 +0000184
robertphillips9bafc302015-02-13 11:13:00 -0800185 void onDrawPatch(const SkPoint cubics[12], const SkColor colors[4],
186 const SkPoint texCoords[4], SkXfermode* xmode, const SkPaint& paint);
mtklein36352bf2015-03-25 18:17:31 -0700187 void onDrawPaint(const SkPaint&) override;
robertphillips9bafc302015-02-13 11:13:00 -0800188
mtklein36352bf2015-03-25 18:17:31 -0700189 void onDrawRect(const SkRect&, const SkPaint&) override;
190 void onDrawOval(const SkRect&, const SkPaint&) override;
191 void onDrawRRect(const SkRRect&, const SkPaint&) override;
192 void onDrawPoints(PointMode, size_t count, const SkPoint pts[], const SkPaint&) override;
robertphillips9bafc302015-02-13 11:13:00 -0800193 void onDrawVertices(VertexMode vmode, int vertexCount,
194 const SkPoint vertices[], const SkPoint texs[],
195 const SkColor colors[], SkXfermode* xmode,
196 const uint16_t indices[], int indexCount,
mtklein36352bf2015-03-25 18:17:31 -0700197 const SkPaint&) override;
198 void onDrawPath(const SkPath&, const SkPaint&) override;
199 void onDrawBitmap(const SkBitmap&, SkScalar left, SkScalar top, const SkPaint*) override;
reed41af9662015-01-05 07:49:08 -0800200 void onDrawBitmapRect(const SkBitmap&, const SkRect* src, const SkRect& dst, const SkPaint*,
mtklein36352bf2015-03-25 18:17:31 -0700201 DrawBitmapRectFlags flags) override;
202 void onDrawImage(const SkImage*, SkScalar left, SkScalar top, const SkPaint*) override;
reed41af9662015-01-05 07:49:08 -0800203 void onDrawImageRect(const SkImage*, const SkRect* src, const SkRect& dst,
mtklein36352bf2015-03-25 18:17:31 -0700204 const SkPaint*) override;
reed41af9662015-01-05 07:49:08 -0800205 void onDrawBitmapNine(const SkBitmap&, const SkIRect& center, const SkRect& dst,
mtklein36352bf2015-03-25 18:17:31 -0700206 const SkPaint*) override;
207 void onDrawSprite(const SkBitmap&, int left, int top, const SkPaint*) override;
208 void onClipRect(const SkRect&, SkRegion::Op, ClipEdgeStyle) override;
209 void onClipRRect(const SkRRect&, SkRegion::Op, ClipEdgeStyle) override;
210 void onClipPath(const SkPath&, SkRegion::Op, ClipEdgeStyle) override;
211 void onClipRegion(const SkRegion& region, SkRegion::Op) override;
robertphillips@google.com8f90a892014-02-28 18:19:39 +0000212
mtklein36352bf2015-03-25 18:17:31 -0700213 void onDrawPicture(const SkPicture*, const SkMatrix*, const SkPaint*) override;
robertphillips9b14f262014-06-04 05:40:44 -0700214
commit-bot@chromium.org1643b2c2014-03-03 23:25:41 +0000215 void markActiveCommands(int index);
commit-bot@chromium.org768ac852014-03-03 16:32:17 +0000216
chudy@google.com902ebe52012-06-29 14:21:22 +0000217private:
robertphillips@google.com67baba42013-01-02 20:20:31 +0000218 SkTDArray<SkDrawCommand*> fCommandVector;
commit-bot@chromium.org57f74e02014-03-25 23:31:33 +0000219 SkPicture* fPicture;
chudy@google.com7e4cfbf2012-07-17 15:40:51 +0000220 bool fFilter;
commit-bot@chromium.org768ac852014-03-03 16:32:17 +0000221 bool fMegaVizMode;
bungeman@google.come8cc6e82013-01-17 16:30:56 +0000222 SkMatrix fUserMatrix;
chudy@google.coma9e937c2012-08-03 17:32:05 +0000223 SkMatrix fMatrix;
224 SkIRect fClip;
robertphillips@google.com32bbcf82013-10-17 17:56:10 +0000225
commit-bot@chromium.org2a67e122014-05-19 13:53:10 +0000226 SkString fClipStackData;
227 bool fCalledAddStackData;
228 SkPath fSaveDevPath;
229
robertphillips@google.comf4741c12013-02-06 20:13:54 +0000230 bool fOverdrawViz;
fmalita65cdb572015-03-26 07:24:48 -0700231 bool fOverrideFilterQuality;
232 SkFilterQuality fFilterQuality;
chudy@google.com902ebe52012-06-29 14:21:22 +0000233
fmalita65cdb572015-03-26 07:24:48 -0700234 SkAutoTUnref<SkNWayCanvas> fPaintFilterCanvas;
robertphillips@google.com32bbcf82013-10-17 17:56:10 +0000235
chudy@google.com902ebe52012-06-29 14:21:22 +0000236 /**
commit-bot@chromium.org1643b2c2014-03-03 23:25:41 +0000237 The active saveLayer commands at a given point in the renderering.
238 Only used when "mega" visualization is enabled.
239 */
240 SkTDArray<SkDrawCommand*> fActiveLayers;
241
skia.committer@gmail.comade9a342014-03-04 03:02:32 +0000242 /**
chudy@google.com902ebe52012-06-29 14:21:22 +0000243 Adds the command to the classes vector of commands.
244 @param command The draw command for execution
245 */
246 void addDrawCommand(SkDrawCommand* command);
chudy@google.com830b8792012-08-01 15:57:52 +0000247
248 /**
249 Applies any panning and zooming the user has specified before
250 drawing anything else into the canvas.
251 */
252 void applyUserTransform(SkCanvas* canvas);
robertphillips@google.com3b0a9fe2013-01-31 15:56:22 +0000253
commit-bot@chromium.org2a67e122014-05-19 13:53:10 +0000254 void resetClipStackData() { fClipStackData.reset(); fCalledAddStackData = false; }
255
256 void addClipStackData(const SkPath& devPath, const SkPath& operand, SkRegion::Op elementOp);
257 void addPathData(const SkPath& path, const char* pathName);
258 bool lastClipStackData(const SkPath& devPath);
259 void outputConicPoints(const SkPoint* pts, SkScalar weight);
260 void outputPoints(const SkPoint* pts, int count);
261 void outputPointsCommon(const SkPoint* pts, int count);
262 void outputScalar(SkScalar num);
skia.committer@gmail.com3b9e8be2014-05-20 03:05:34 +0000263
fmalita65cdb572015-03-26 07:24:48 -0700264 void updatePaintFilterCanvas();
265
robertphillips@google.com3b0a9fe2013-01-31 15:56:22 +0000266 typedef SkCanvas INHERITED;
chudy@google.com902ebe52012-06-29 14:21:22 +0000267};
268
269#endif