blob: 1da995b28451d954864992076988628931f4cf3b [file] [log] [blame]
chudy@google.com902ebe52012-06-29 14:21:22 +00001/*
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
ethannicholas891ad662016-02-12 07:15:45 -08008#include "SkCanvasPriv.h"
bungemand3ebb482015-08-05 13:57:49 -07009#include "SkClipStack.h"
chudy@google.com902ebe52012-06-29 14:21:22 +000010#include "SkDebugCanvas.h"
11#include "SkDrawCommand.h"
robertphillipsf42fca42016-01-27 05:00:04 -080012#include "SkOverdrawMode.h"
fmalita37283c22016-09-13 10:00:23 -070013#include "SkPaintFilterCanvas.h"
14#include "SkTextBlob.h"
fmalita65cdb572015-03-26 07:24:48 -070015
joshualitt10d8fc22016-02-29 11:15:06 -080016#if SK_SUPPORT_GPU
17#include "GrAuditTrail.h"
18#include "GrContext.h"
19#include "GrRenderTarget.h"
joshualitt1d7decf2016-03-01 07:15:52 -080020#include "SkGpuDevice.h"
joshualitt10d8fc22016-02-29 11:15:06 -080021#endif
22
joshualitte43f7e62016-03-04 10:45:05 -080023#define SKDEBUGCANVAS_VERSION 1
24#define SKDEBUGCANVAS_ATTRIBUTE_VERSION "version"
25#define SKDEBUGCANVAS_ATTRIBUTE_COMMANDS "commands"
26#define SKDEBUGCANVAS_ATTRIBUTE_AUDITTRAIL "auditTrail"
ethannicholas402cd912016-02-10 12:57:30 -080027
fmalita65cdb572015-03-26 07:24:48 -070028class DebugPaintFilterCanvas : public SkPaintFilterCanvas {
29public:
halcanary385fe4d2015-08-26 13:07:48 -070030 DebugPaintFilterCanvas(int width,
31 int height,
32 bool overdrawViz,
33 bool overrideFilterQuality,
fmalita65cdb572015-03-26 07:24:48 -070034 SkFilterQuality quality)
35 : INHERITED(width, height)
reedcfb6bdf2016-03-29 11:32:50 -070036 , fOverdrawXfermode(overdrawViz ? SkOverdrawMode::Make() : nullptr)
fmalita65cdb572015-03-26 07:24:48 -070037 , fOverrideFilterQuality(overrideFilterQuality)
halcanary385fe4d2015-08-26 13:07:48 -070038 , fFilterQuality(quality) {}
fmalita65cdb572015-03-26 07:24:48 -070039
40protected:
fmalita32cdc322016-01-12 07:21:11 -080041 bool onFilter(SkTCopyOnFirstWrite<SkPaint>* paint, Type) const override {
42 if (*paint) {
fmalitabad23dc2016-01-11 13:58:29 -080043 if (nullptr != fOverdrawXfermode.get()) {
fmalita32cdc322016-01-12 07:21:11 -080044 paint->writable()->setAntiAlias(false);
reed374772b2016-10-05 17:33:02 -070045 // TODO: replace overdraw mode with something else
46// paint->writable()->setXfermode(fOverdrawXfermode);
fmalitabad23dc2016-01-11 13:58:29 -080047 }
fmalita65cdb572015-03-26 07:24:48 -070048
fmalitabad23dc2016-01-11 13:58:29 -080049 if (fOverrideFilterQuality) {
fmalita32cdc322016-01-12 07:21:11 -080050 paint->writable()->setFilterQuality(fFilterQuality);
fmalitabad23dc2016-01-11 13:58:29 -080051 }
fmalita65cdb572015-03-26 07:24:48 -070052 }
fmalitabad23dc2016-01-11 13:58:29 -080053 return true;
fmalita65cdb572015-03-26 07:24:48 -070054 }
55
mtkleinf0599002015-07-13 06:18:39 -070056 void onDrawPicture(const SkPicture* picture,
57 const SkMatrix* matrix,
58 const SkPaint* paint) override {
fmalita65cdb572015-03-26 07:24:48 -070059 // We need to replay the picture onto this canvas in order to filter its internal paints.
60 this->SkCanvas::onDrawPicture(picture, matrix, paint);
61 }
62
vjiaoblack95302da2016-07-21 10:25:54 -070063 void onDrawShadowedPicture(const SkPicture* picture,
64 const SkMatrix* matrix,
vjiaoblacke6f5d562016-08-25 06:30:23 -070065 const SkPaint* paint,
66 const SkShadowParams& params) {
vjiaoblack95302da2016-07-21 10:25:54 -070067#ifdef SK_EXPERIMENTAL_SHADOWING
vjiaoblacke6f5d562016-08-25 06:30:23 -070068 this->SkCanvas::onDrawShadowedPicture(picture, matrix, paint, params);
vjiaoblack95302da2016-07-21 10:25:54 -070069#else
70 this->SkCanvas::onDrawPicture(picture, matrix, paint);
71#endif
72 }
73
fmalita65cdb572015-03-26 07:24:48 -070074private:
reedcfb6bdf2016-03-29 11:32:50 -070075 sk_sp<SkXfermode> fOverdrawXfermode;
fmalita65cdb572015-03-26 07:24:48 -070076
77 bool fOverrideFilterQuality;
78 SkFilterQuality fFilterQuality;
79
80 typedef SkPaintFilterCanvas INHERITED;
81};
82
kkinnunen26e54002015-01-05 12:58:56 -080083SkDebugCanvas::SkDebugCanvas(int width, int height)
84 : INHERITED(width, height)
halcanary96fcdcc2015-08-27 07:41:13 -070085 , fPicture(nullptr)
commit-bot@chromium.org1735d662013-12-04 13:42:46 +000086 , fFilter(false)
commit-bot@chromium.org768ac852014-03-03 16:32:17 +000087 , fMegaVizMode(false)
robertphillips@google.comf4741c12013-02-06 20:13:54 +000088 , fOverdrawViz(false)
fmalita65cdb572015-03-26 07:24:48 -070089 , fOverrideFilterQuality(false)
ethannicholas0a0520a2016-02-12 12:06:53 -080090 , fFilterQuality(kNone_SkFilterQuality)
joshualitt10d8fc22016-02-29 11:15:06 -080091 , fClipVizColor(SK_ColorTRANSPARENT)
joshualitt5d5207a2016-02-29 12:46:04 -080092 , fDrawGpuBatchBounds(false) {
bungeman@google.come8cc6e82013-01-17 16:30:56 +000093 fUserMatrix.reset();
robertphillips@google.com8b157172013-11-07 22:20:31 +000094
95 // SkPicturePlayback uses the base-class' quickReject calls to cull clipped
96 // operations. This can lead to problems in the debugger which expects all
97 // the operations in the captured skp to appear in the debug canvas. To
98 // circumvent this we create a wide open clip here (an empty clip rect
99 // is not sufficient).
100 // Internally, the SkRect passed to clipRect is converted to an SkIRect and
101 // rounded out. The following code creates a nearly maximal rect that will
102 // not get collapsed by the coming conversions (Due to precision loss the
103 // inset has to be surprisingly large).
104 SkIRect largeIRect = SkIRect::MakeLargest();
105 largeIRect.inset(1024, 1024);
robertphillips@google.com6c1e49a2013-11-10 15:08:45 +0000106 SkRect large = SkRect::Make(largeIRect);
robertphillips@google.com8b157172013-11-07 22:20:31 +0000107#ifdef SK_DEBUG
reedb07a94f2014-11-19 05:03:18 -0800108 SkASSERT(!large.roundOut().isEmpty());
robertphillips@google.com8b157172013-11-07 22:20:31 +0000109#endif
robertphillips@google.com8f90a892014-02-28 18:19:39 +0000110 // call the base class' version to avoid adding a draw command
reed73603f32016-09-20 08:42:38 -0700111 this->INHERITED::onClipRect(large, kReplace_Op, kHard_ClipEdgeStyle);
chudy@google.com902ebe52012-06-29 14:21:22 +0000112}
113
chudy@google.com9cda6f72012-08-07 15:08:33 +0000114SkDebugCanvas::~SkDebugCanvas() {
robertphillips@google.com67baba42013-01-02 20:20:31 +0000115 fCommandVector.deleteAll();
chudy@google.com9cda6f72012-08-07 15:08:33 +0000116}
chudy@google.com902ebe52012-06-29 14:21:22 +0000117
118void SkDebugCanvas::addDrawCommand(SkDrawCommand* command) {
robertphillips@google.com67baba42013-01-02 20:20:31 +0000119 fCommandVector.push(command);
chudy@google.com902ebe52012-06-29 14:21:22 +0000120}
121
122void SkDebugCanvas::draw(SkCanvas* canvas) {
commit-bot@chromium.org1735d662013-12-04 13:42:46 +0000123 if (!fCommandVector.isEmpty()) {
commit-bot@chromium.org57f74e02014-03-25 23:31:33 +0000124 this->drawTo(canvas, fCommandVector.count() - 1);
chudy@google.com902ebe52012-06-29 14:21:22 +0000125 }
126}
127
chudy@google.com830b8792012-08-01 15:57:52 +0000128void SkDebugCanvas::applyUserTransform(SkCanvas* canvas) {
bungeman@google.come8cc6e82013-01-17 16:30:56 +0000129 canvas->concat(fUserMatrix);
chudy@google.com830b8792012-08-01 15:57:52 +0000130}
131
132int SkDebugCanvas::getCommandAtPoint(int x, int y, int index) {
chudy@google.com0b5bbb02012-07-31 19:55:32 +0000133 SkBitmap bitmap;
reed@google.com9ebcac52014-01-24 18:53:42 +0000134 bitmap.allocPixels(SkImageInfo::MakeN32Premul(1, 1));
chudy@google.com902ebe52012-06-29 14:21:22 +0000135
chudy@google.com0b5bbb02012-07-31 19:55:32 +0000136 SkCanvas canvas(bitmap);
robertphillips@google.com94acc702012-09-06 18:43:21 +0000137 canvas.translate(SkIntToScalar(-x), SkIntToScalar(-y));
robertphillipsa8d7f0b2014-08-29 08:03:56 -0700138 this->applyUserTransform(&canvas);
chudy@google.com0b5bbb02012-07-31 19:55:32 +0000139
140 int layer = 0;
chudy@google.com751961d2012-07-31 20:07:42 +0000141 SkColor prev = bitmap.getColor(0,0);
chudy@google.com0b5bbb02012-07-31 19:55:32 +0000142 for (int i = 0; i < index; i++) {
robertphillips@google.com67baba42013-01-02 20:20:31 +0000143 if (fCommandVector[i]->isVisible()) {
robertphillips70171682014-10-16 14:28:28 -0700144 fCommandVector[i]->setUserMatrix(fUserMatrix);
robertphillips@google.com67baba42013-01-02 20:20:31 +0000145 fCommandVector[i]->execute(&canvas);
chudy@google.com0b5bbb02012-07-31 19:55:32 +0000146 }
147 if (prev != bitmap.getColor(0,0)) {
148 layer = i;
149 }
150 prev = bitmap.getColor(0,0);
151 }
152 return layer;
153}
154
commit-bot@chromium.org768ac852014-03-03 16:32:17 +0000155class SkDebugClipVisitor : public SkCanvas::ClipVisitor {
156public:
157 SkDebugClipVisitor(SkCanvas* canvas) : fCanvas(canvas) {}
158
reed73603f32016-09-20 08:42:38 -0700159 void clipRect(const SkRect& r, SkCanvas::ClipOp, bool doAA) override {
commit-bot@chromium.org768ac852014-03-03 16:32:17 +0000160 SkPaint p;
161 p.setColor(SK_ColorRED);
162 p.setStyle(SkPaint::kStroke_Style);
163 p.setAntiAlias(doAA);
164 fCanvas->drawRect(r, p);
165 }
reed73603f32016-09-20 08:42:38 -0700166 void clipRRect(const SkRRect& rr, SkCanvas::ClipOp, bool doAA) override {
commit-bot@chromium.org768ac852014-03-03 16:32:17 +0000167 SkPaint p;
168 p.setColor(SK_ColorGREEN);
169 p.setStyle(SkPaint::kStroke_Style);
170 p.setAntiAlias(doAA);
171 fCanvas->drawRRect(rr, p);
172 }
reed73603f32016-09-20 08:42:38 -0700173 void clipPath(const SkPath& path, SkCanvas::ClipOp, bool doAA) override {
commit-bot@chromium.org768ac852014-03-03 16:32:17 +0000174 SkPaint p;
175 p.setColor(SK_ColorBLUE);
176 p.setStyle(SkPaint::kStroke_Style);
177 p.setAntiAlias(doAA);
178 fCanvas->drawPath(path, p);
179 }
180
181protected:
182 SkCanvas* fCanvas;
183
184private:
185 typedef SkCanvas::ClipVisitor INHERITED;
186};
187
188// set up the saveLayer commands so that the active ones
189// return true in their 'active' method
commit-bot@chromium.org1643b2c2014-03-03 23:25:41 +0000190void SkDebugCanvas::markActiveCommands(int index) {
191 fActiveLayers.rewind();
commit-bot@chromium.org768ac852014-03-03 16:32:17 +0000192
193 for (int i = 0; i < fCommandVector.count(); ++i) {
194 fCommandVector[i]->setActive(false);
195 }
196
197 for (int i = 0; i < index; ++i) {
198 SkDrawCommand::Action result = fCommandVector[i]->action();
commit-bot@chromium.org1643b2c2014-03-03 23:25:41 +0000199 if (SkDrawCommand::kPushLayer_Action == result) {
200 fActiveLayers.push(fCommandVector[i]);
201 } else if (SkDrawCommand::kPopLayer_Action == result) {
202 fActiveLayers.pop();
commit-bot@chromium.org768ac852014-03-03 16:32:17 +0000203 }
204 }
205
commit-bot@chromium.org1643b2c2014-03-03 23:25:41 +0000206 for (int i = 0; i < fActiveLayers.count(); ++i) {
207 fActiveLayers[i]->setActive(true);
208 }
209
commit-bot@chromium.org768ac852014-03-03 16:32:17 +0000210}
211
joshualitt46b301d2016-03-02 08:32:37 -0800212void SkDebugCanvas::drawTo(SkCanvas* canvas, int index, int m) {
robertphillips@google.com67baba42013-01-02 20:20:31 +0000213 SkASSERT(!fCommandVector.isEmpty());
214 SkASSERT(index < fCommandVector.count());
kkinnunen26a00de2015-01-13 23:09:19 -0800215
216 int saveCount = canvas->save();
217
kkinnunen26e54002015-01-05 12:58:56 -0800218 SkRect windowRect = SkRect::MakeWH(SkIntToScalar(canvas->getBaseLayerSize().width()),
219 SkIntToScalar(canvas->getBaseLayerSize().height()));
chudy@google.com830b8792012-08-01 15:57:52 +0000220
commit-bot@chromium.org2a67e122014-05-19 13:53:10 +0000221 bool pathOpsMode = getAllowSimplifyClip();
222 canvas->setAllowSimplifyClip(pathOpsMode);
ethannicholascecbbe22016-02-17 11:49:43 -0800223 canvas->clear(SK_ColorWHITE);
kkinnunen26a00de2015-01-13 23:09:19 -0800224 canvas->resetMatrix();
225 if (!windowRect.isEmpty()) {
reed73603f32016-09-20 08:42:38 -0700226 canvas->clipRect(windowRect, SkCanvas::kReplace_Op);
commit-bot@chromium.orga27622c2013-08-05 16:31:27 +0000227 }
kkinnunen26a00de2015-01-13 23:09:19 -0800228 this->applyUserTransform(canvas);
robertphillips@google.comf4741c12013-02-06 20:13:54 +0000229
fmalita65cdb572015-03-26 07:24:48 -0700230 if (fPaintFilterCanvas) {
231 fPaintFilterCanvas->addCanvas(canvas);
232 canvas = fPaintFilterCanvas.get();
halcanary9d524f22016-03-29 09:03:52 -0700233
chudy@google.com830b8792012-08-01 15:57:52 +0000234 }
235
commit-bot@chromium.org768ac852014-03-03 16:32:17 +0000236 if (fMegaVizMode) {
commit-bot@chromium.org1643b2c2014-03-03 23:25:41 +0000237 this->markActiveCommands(index);
commit-bot@chromium.org768ac852014-03-03 16:32:17 +0000238 }
halcanary9d524f22016-03-29 09:03:52 -0700239
joshualitt40836102016-03-11 11:45:53 -0800240#if SK_SUPPORT_GPU
joshualitt10d8fc22016-02-29 11:15:06 -0800241 // If we have a GPU backend we can also visualize the batching information
joshualitt10d8fc22016-02-29 11:15:06 -0800242 GrAuditTrail* at = nullptr;
joshualittae47aee2016-03-10 13:29:36 -0800243 if (fDrawGpuBatchBounds || m != -1) {
244 at = this->getAuditTrail(canvas);
joshualitt10d8fc22016-02-29 11:15:06 -0800245 }
joshualitt40836102016-03-11 11:45:53 -0800246#endif
commit-bot@chromium.org768ac852014-03-03 16:32:17 +0000247
kkinnunen26a00de2015-01-13 23:09:19 -0800248 for (int i = 0; i <= index; i++) {
chudy@google.com0b5bbb02012-07-31 19:55:32 +0000249 if (i == index && fFilter) {
robertphillipsa8d7f0b2014-08-29 08:03:56 -0700250 canvas->clear(0xAAFFFFFF);
chudy@google.com0b5bbb02012-07-31 19:55:32 +0000251 }
halcanary9d524f22016-03-29 09:03:52 -0700252
joshualitt10d8fc22016-02-29 11:15:06 -0800253#if SK_SUPPORT_GPU
brianosman1c9f9222016-04-15 11:00:51 -0700254 // We need to flush any pending operations, or they might batch with commands below.
255 // Previous operations were not registered with the audit trail when they were
256 // created, so if we allow them to combine, the audit trail will fail to find them.
257 canvas->flush();
258
joshualitt10d8fc22016-02-29 11:15:06 -0800259 GrAuditTrail::AutoCollectBatches* acb = nullptr;
260 if (at) {
261 acb = new GrAuditTrail::AutoCollectBatches(at, i);
262 }
263#endif
chudy@google.com0b5bbb02012-07-31 19:55:32 +0000264
robertphillips@google.com67baba42013-01-02 20:20:31 +0000265 if (fCommandVector[i]->isVisible()) {
commit-bot@chromium.org768ac852014-03-03 16:32:17 +0000266 if (fMegaVizMode && fCommandVector[i]->active()) {
commit-bot@chromium.org1643b2c2014-03-03 23:25:41 +0000267 // "active" commands execute their visualization behaviors:
268 // All active saveLayers get replaced with saves so all draws go to the
269 // visible canvas.
270 // All active culls draw their cull box
271 fCommandVector[i]->vizExecute(canvas);
commit-bot@chromium.org768ac852014-03-03 16:32:17 +0000272 } else {
robertphillips70171682014-10-16 14:28:28 -0700273 fCommandVector[i]->setUserMatrix(fUserMatrix);
commit-bot@chromium.org768ac852014-03-03 16:32:17 +0000274 fCommandVector[i]->execute(canvas);
commit-bot@chromium.org768ac852014-03-03 16:32:17 +0000275 }
chudy@google.com902ebe52012-06-29 14:21:22 +0000276 }
joshualitt10d8fc22016-02-29 11:15:06 -0800277#if SK_SUPPORT_GPU
278 if (at && acb) {
279 delete acb;
280 }
281#endif
chudy@google.com902ebe52012-06-29 14:21:22 +0000282 }
commit-bot@chromium.org768ac852014-03-03 16:32:17 +0000283
ethannicholas0a0520a2016-02-12 12:06:53 -0800284 if (SkColorGetA(fClipVizColor) != 0) {
285 canvas->save();
286 #define LARGE_COORD 1000000000
287 canvas->clipRect(SkRect::MakeLTRB(-LARGE_COORD, -LARGE_COORD, LARGE_COORD, LARGE_COORD),
reed73603f32016-09-20 08:42:38 -0700288 SkCanvas::kReverseDifference_Op);
ethannicholas0a0520a2016-02-12 12:06:53 -0800289 SkPaint clipPaint;
290 clipPaint.setColor(fClipVizColor);
291 canvas->drawPaint(clipPaint);
292 canvas->restore();
293 }
294
commit-bot@chromium.org768ac852014-03-03 16:32:17 +0000295 if (fMegaVizMode) {
commit-bot@chromium.org768ac852014-03-03 16:32:17 +0000296 canvas->save();
297 // nuke the CTM
robertphillipsa8d7f0b2014-08-29 08:03:56 -0700298 canvas->resetMatrix();
commit-bot@chromium.org768ac852014-03-03 16:32:17 +0000299 // turn off clipping
kkinnunen26e54002015-01-05 12:58:56 -0800300 if (!windowRect.isEmpty()) {
301 SkRect r = windowRect;
302 r.outset(SK_Scalar1, SK_Scalar1);
reed73603f32016-09-20 08:42:38 -0700303 canvas->clipRect(r, SkCanvas::kReplace_Op);
kkinnunen26e54002015-01-05 12:58:56 -0800304 }
commit-bot@chromium.org768ac852014-03-03 16:32:17 +0000305 // visualize existing clips
306 SkDebugClipVisitor visitor(canvas);
307
308 canvas->replayClips(&visitor);
309
310 canvas->restore();
311 }
commit-bot@chromium.org2a67e122014-05-19 13:53:10 +0000312 if (pathOpsMode) {
313 this->resetClipStackData();
314 const SkClipStack* clipStack = canvas->getClipStack();
315 SkClipStack::Iter iter(*clipStack, SkClipStack::Iter::kBottom_IterStart);
316 const SkClipStack::Element* element;
317 SkPath devPath;
318 while ((element = iter.next())) {
319 SkClipStack::Element::Type type = element->getType();
320 SkPath operand;
321 if (type != SkClipStack::Element::kEmpty_Type) {
322 element->asPath(&operand);
323 }
reed73603f32016-09-20 08:42:38 -0700324 SkCanvas::ClipOp elementOp = element->getOp();
commit-bot@chromium.org2a67e122014-05-19 13:53:10 +0000325 this->addClipStackData(devPath, operand, elementOp);
reed73603f32016-09-20 08:42:38 -0700326 if (elementOp == SkCanvas::kReplace_Op) {
commit-bot@chromium.org2a67e122014-05-19 13:53:10 +0000327 devPath = operand;
328 } else {
329 Op(devPath, operand, (SkPathOp) elementOp, &devPath);
330 }
331 }
332 this->lastClipStackData(devPath);
333 }
chudy@google.coma9e937c2012-08-03 17:32:05 +0000334 fMatrix = canvas->getTotalMatrix();
commit-bot@chromium.org5c70cdc2014-03-08 03:57:19 +0000335 if (!canvas->getClipDeviceBounds(&fClip)) {
336 fClip.setEmpty();
337 }
kkinnunen26a00de2015-01-13 23:09:19 -0800338
339 canvas->restoreToCount(saveCount);
fmalita65cdb572015-03-26 07:24:48 -0700340
341 if (fPaintFilterCanvas) {
342 fPaintFilterCanvas->removeAll();
343 }
joshualitt10d8fc22016-02-29 11:15:06 -0800344
345#if SK_SUPPORT_GPU
346 // draw any batches if required and issue a full reset onto GrAuditTrail
347 if (at) {
joshualitte43f7e62016-03-04 10:45:05 -0800348 // just in case there is global reordering, we flush the canvas before querying
349 // GrAuditTrail
joshualittb0666ad2016-03-08 10:43:41 -0800350 GrAuditTrail::AutoEnable ae(at);
joshualitte43f7e62016-03-04 10:45:05 -0800351 canvas->flush();
352
joshualittbdc6b2b2016-03-01 14:22:02 -0800353 // we pick three colorblind-safe colors, 75% alpha
354 static const SkColor kTotalBounds = SkColorSetARGB(0xC0, 0x6A, 0x3D, 0x9A);
355 static const SkColor kOpBatchBounds = SkColorSetARGB(0xC0, 0xE3, 0x1A, 0x1C);
356 static const SkColor kOtherBatchBounds = SkColorSetARGB(0xC0, 0xFF, 0x7F, 0x00);
357
joshualitt1d7decf2016-03-01 07:15:52 -0800358 // get the render target of the top device so we can ignore batches drawn offscreen
359 SkBaseDevice* bd = canvas->getDevice_just_for_deprecated_compatibility_testing();
360 SkGpuDevice* gbd = reinterpret_cast<SkGpuDevice*>(bd);
robertphillips8abb3702016-08-31 14:04:06 -0700361 uint32_t rtID = gbd->accessDrawContext()->accessRenderTarget()->uniqueID();
joshualitt1d7decf2016-03-01 07:15:52 -0800362
363 // get the bounding boxes to draw
joshualitt10d8fc22016-02-29 11:15:06 -0800364 SkTArray<GrAuditTrail::BatchInfo> childrenBounds;
joshualitt46b301d2016-03-02 08:32:37 -0800365 if (m == -1) {
366 at->getBoundsByClientID(&childrenBounds, index);
367 } else {
368 // the client wants us to draw the mth batch
369 at->getBoundsByBatchListID(&childrenBounds.push_back(), m);
370 }
joshualitt10d8fc22016-02-29 11:15:06 -0800371 SkPaint paint;
372 paint.setStyle(SkPaint::kStroke_Style);
373 paint.setStrokeWidth(1);
374 for (int i = 0; i < childrenBounds.count(); i++) {
joshualitt1d7decf2016-03-01 07:15:52 -0800375 if (childrenBounds[i].fRenderTargetUniqueID != rtID) {
376 // offscreen draw, ignore for now
377 continue;
378 }
joshualittbdc6b2b2016-03-01 14:22:02 -0800379 paint.setColor(kTotalBounds);
joshualitt10d8fc22016-02-29 11:15:06 -0800380 canvas->drawRect(childrenBounds[i].fBounds, paint);
381 for (int j = 0; j < childrenBounds[i].fBatches.count(); j++) {
382 const GrAuditTrail::BatchInfo::Batch& batch = childrenBounds[i].fBatches[j];
383 if (batch.fClientID != index) {
joshualittbdc6b2b2016-03-01 14:22:02 -0800384 paint.setColor(kOtherBatchBounds);
joshualitt10d8fc22016-02-29 11:15:06 -0800385 } else {
joshualittbdc6b2b2016-03-01 14:22:02 -0800386 paint.setColor(kOpBatchBounds);
joshualitt10d8fc22016-02-29 11:15:06 -0800387 }
388 canvas->drawRect(batch.fBounds, paint);
389 }
390 }
joshualitt10d8fc22016-02-29 11:15:06 -0800391 }
joshualitt10d8fc22016-02-29 11:15:06 -0800392#endif
joshualittae47aee2016-03-10 13:29:36 -0800393 this->cleanupAuditTrail(canvas);
chudy@google.com902ebe52012-06-29 14:21:22 +0000394}
395
robertphillips@google.com50c84da2013-04-01 18:18:49 +0000396void SkDebugCanvas::deleteDrawCommandAt(int index) {
397 SkASSERT(index < fCommandVector.count());
398 delete fCommandVector[index];
399 fCommandVector.remove(index);
400}
401
chudy@google.com902ebe52012-06-29 14:21:22 +0000402SkDrawCommand* SkDebugCanvas::getDrawCommandAt(int index) {
robertphillips@google.com67baba42013-01-02 20:20:31 +0000403 SkASSERT(index < fCommandVector.count());
404 return fCommandVector[index];
chudy@google.com902ebe52012-06-29 14:21:22 +0000405}
406
robertphillips@google.com50c84da2013-04-01 18:18:49 +0000407void SkDebugCanvas::setDrawCommandAt(int index, SkDrawCommand* command) {
408 SkASSERT(index < fCommandVector.count());
409 delete fCommandVector[index];
410 fCommandVector[index] = command;
411}
412
fmalita8c89c522014-11-08 16:18:56 -0800413const SkTDArray<SkString*>* SkDebugCanvas::getCommandInfo(int index) const {
robertphillips@google.com67baba42013-01-02 20:20:31 +0000414 SkASSERT(index < fCommandVector.count());
415 return fCommandVector[index]->Info();
chudy@google.com7e4cfbf2012-07-17 15:40:51 +0000416}
chudy@google.com902ebe52012-06-29 14:21:22 +0000417
chudy@google.com7e4cfbf2012-07-17 15:40:51 +0000418bool SkDebugCanvas::getDrawCommandVisibilityAt(int index) {
robertphillips@google.com67baba42013-01-02 20:20:31 +0000419 SkASSERT(index < fCommandVector.count());
420 return fCommandVector[index]->isVisible();
chudy@google.com902ebe52012-06-29 14:21:22 +0000421}
422
robertphillips@google.com8a1cdae2012-11-19 20:44:29 +0000423const SkTDArray <SkDrawCommand*>& SkDebugCanvas::getDrawCommands() const {
robertphillips@google.com67baba42013-01-02 20:20:31 +0000424 return fCommandVector;
chudy@google.com902ebe52012-06-29 14:21:22 +0000425}
426
robertphillips@google.comfebc0ec2013-03-11 22:53:11 +0000427SkTDArray <SkDrawCommand*>& SkDebugCanvas::getDrawCommands() {
428 return fCommandVector;
429}
430
joshualittae47aee2016-03-10 13:29:36 -0800431GrAuditTrail* SkDebugCanvas::getAuditTrail(SkCanvas* canvas) {
432 GrAuditTrail* at = nullptr;
joshualitte43f7e62016-03-04 10:45:05 -0800433#if SK_SUPPORT_GPU
robertphillips175dd9b2016-04-28 14:32:04 -0700434 GrContext* ctx = canvas->getGrContext();
435 if (ctx) {
436 at = ctx->getAuditTrail();
joshualitte43f7e62016-03-04 10:45:05 -0800437 }
438#endif
joshualittae47aee2016-03-10 13:29:36 -0800439 return at;
440}
441
442void SkDebugCanvas::drawAndCollectBatches(int n, SkCanvas* canvas) {
joshualitt40836102016-03-11 11:45:53 -0800443#if SK_SUPPORT_GPU
joshualittae47aee2016-03-10 13:29:36 -0800444 GrAuditTrail* at = this->getAuditTrail(canvas);
445 if (at) {
joshualittae47aee2016-03-10 13:29:36 -0800446 // loop over all of the commands and draw them, this is to collect reordering
447 // information
448 for (int i = 0; i < this->getSize() && i <= n; i++) {
449 GrAuditTrail::AutoCollectBatches enable(at, i);
450 fCommandVector[i]->execute(canvas);
451 }
452
453 // in case there is some kind of global reordering
454 {
455 GrAuditTrail::AutoEnable ae(at);
456 canvas->flush();
457 }
joshualittae47aee2016-03-10 13:29:36 -0800458 }
joshualitt40836102016-03-11 11:45:53 -0800459#endif
joshualittae47aee2016-03-10 13:29:36 -0800460}
461
462void SkDebugCanvas::cleanupAuditTrail(SkCanvas* canvas) {
463 GrAuditTrail* at = this->getAuditTrail(canvas);
464 if (at) {
465#if SK_SUPPORT_GPU
466 GrAuditTrail::AutoEnable ae(at);
467 at->fullReset();
468#endif
469 }
470}
471
472Json::Value SkDebugCanvas::toJSON(UrlDataManager& urlDataManager, int n, SkCanvas* canvas) {
473 this->drawAndCollectBatches(n, canvas);
halcanary9d524f22016-03-29 09:03:52 -0700474
joshualitte43f7e62016-03-04 10:45:05 -0800475 // now collect json
joshualitt40836102016-03-11 11:45:53 -0800476#if SK_SUPPORT_GPU
joshualittae47aee2016-03-10 13:29:36 -0800477 GrAuditTrail* at = this->getAuditTrail(canvas);
joshualitt40836102016-03-11 11:45:53 -0800478#endif
ethannicholas402cd912016-02-10 12:57:30 -0800479 Json::Value result = Json::Value(Json::objectValue);
480 result[SKDEBUGCANVAS_ATTRIBUTE_VERSION] = Json::Value(SKDEBUGCANVAS_VERSION);
481 Json::Value commands = Json::Value(Json::arrayValue);
ethannicholas0a0520a2016-02-12 12:06:53 -0800482 for (int i = 0; i < this->getSize() && i <= n; i++) {
joshualitte43f7e62016-03-04 10:45:05 -0800483 commands[i] = this->getDrawCommandAt(i)->toJSON(urlDataManager);
484#if SK_SUPPORT_GPU
485 if (at) {
486 // TODO if this is inefficient we could add a method to GrAuditTrail which takes
487 // a Json::Value and is only compiled in this file
488 Json::Value parsedFromString;
489 Json::Reader reader;
490 SkAssertResult(reader.parse(at->toJson(i).c_str(), parsedFromString));
491
492 commands[i][SKDEBUGCANVAS_ATTRIBUTE_AUDITTRAIL] = parsedFromString;
493 }
494#endif
ethannicholas402cd912016-02-10 12:57:30 -0800495 }
joshualittae47aee2016-03-10 13:29:36 -0800496 this->cleanupAuditTrail(canvas);
ethannicholas402cd912016-02-10 12:57:30 -0800497 result[SKDEBUGCANVAS_ATTRIBUTE_COMMANDS] = commands;
498 return result;
499}
500
joshualittae47aee2016-03-10 13:29:36 -0800501Json::Value SkDebugCanvas::toJSONBatchList(int n, SkCanvas* canvas) {
502 this->drawAndCollectBatches(n, canvas);
503
504 Json::Value parsedFromString;
joshualittae47aee2016-03-10 13:29:36 -0800505#if SK_SUPPORT_GPU
joshualitt40836102016-03-11 11:45:53 -0800506 GrAuditTrail* at = this->getAuditTrail(canvas);
joshualittae47aee2016-03-10 13:29:36 -0800507 if (at) {
508 GrAuditTrail::AutoManageBatchList enable(at);
509 Json::Reader reader;
510 SkAssertResult(reader.parse(at->toJson().c_str(), parsedFromString));
511 }
512#endif
513 this->cleanupAuditTrail(canvas);
514 return parsedFromString;
515}
516
fmalita65cdb572015-03-26 07:24:48 -0700517void SkDebugCanvas::updatePaintFilterCanvas() {
518 if (!fOverdrawViz && !fOverrideFilterQuality) {
halcanary96fcdcc2015-08-27 07:41:13 -0700519 fPaintFilterCanvas.reset(nullptr);
fmalita65cdb572015-03-26 07:24:48 -0700520 return;
robertphillips@google.com32bbcf82013-10-17 17:56:10 +0000521 }
522
fmalita65cdb572015-03-26 07:24:48 -0700523 const SkImageInfo info = this->imageInfo();
halcanary385fe4d2015-08-26 13:07:48 -0700524 fPaintFilterCanvas.reset(new DebugPaintFilterCanvas(info.width(), info.height(), fOverdrawViz,
525 fOverrideFilterQuality, fFilterQuality));
fmalita65cdb572015-03-26 07:24:48 -0700526}
527
528void SkDebugCanvas::setOverdrawViz(bool overdrawViz) {
529 if (fOverdrawViz == overdrawViz) {
530 return;
531 }
532
533 fOverdrawViz = overdrawViz;
534 this->updatePaintFilterCanvas();
535}
536
537void SkDebugCanvas::overrideTexFiltering(bool overrideTexFiltering, SkFilterQuality quality) {
538 if (fOverrideFilterQuality == overrideTexFiltering && fFilterQuality == quality) {
539 return;
540 }
541
542 fOverrideFilterQuality = overrideTexFiltering;
543 fFilterQuality = quality;
544 this->updatePaintFilterCanvas();
robertphillips@google.com32bbcf82013-10-17 17:56:10 +0000545}
546
reed73603f32016-09-20 08:42:38 -0700547void SkDebugCanvas::onClipPath(const SkPath& path, ClipOp op, ClipEdgeStyle edgeStyle) {
robertphillips@google.com8f90a892014-02-28 18:19:39 +0000548 this->addDrawCommand(new SkClipPathCommand(path, op, kSoft_ClipEdgeStyle == edgeStyle));
chudy@google.com902ebe52012-06-29 14:21:22 +0000549}
550
reed73603f32016-09-20 08:42:38 -0700551void SkDebugCanvas::onClipRect(const SkRect& rect, ClipOp op, ClipEdgeStyle edgeStyle) {
robertphillips@google.com8f90a892014-02-28 18:19:39 +0000552 this->addDrawCommand(new SkClipRectCommand(rect, op, kSoft_ClipEdgeStyle == edgeStyle));
chudy@google.com902ebe52012-06-29 14:21:22 +0000553}
554
reed73603f32016-09-20 08:42:38 -0700555void SkDebugCanvas::onClipRRect(const SkRRect& rrect, ClipOp op, ClipEdgeStyle edgeStyle) {
robertphillips@google.com8f90a892014-02-28 18:19:39 +0000556 this->addDrawCommand(new SkClipRRectCommand(rrect, op, kSoft_ClipEdgeStyle == edgeStyle));
robertphillips@google.com67baba42013-01-02 20:20:31 +0000557}
558
reed73603f32016-09-20 08:42:38 -0700559void SkDebugCanvas::onClipRegion(const SkRegion& region, ClipOp op) {
robertphillips@google.com8f90a892014-02-28 18:19:39 +0000560 this->addDrawCommand(new SkClipRegionCommand(region, op));
chudy@google.com902ebe52012-06-29 14:21:22 +0000561}
562
commit-bot@chromium.org44c48d02014-03-13 20:03:58 +0000563void SkDebugCanvas::didConcat(const SkMatrix& matrix) {
robertphillips9bafc302015-02-13 11:13:00 -0800564 this->addDrawCommand(new SkConcatCommand(matrix));
commit-bot@chromium.org44c48d02014-03-13 20:03:58 +0000565 this->INHERITED::didConcat(matrix);
chudy@google.com902ebe52012-06-29 14:21:22 +0000566}
567
reed97660cc2016-06-28 18:54:19 -0700568void SkDebugCanvas::onDrawAnnotation(const SkRect& rect, const char key[], SkData* value) {
569 this->addDrawCommand(new SkDrawAnnotationCommand(rect, key, sk_ref_sp(value)));
570}
571
reed41af9662015-01-05 07:49:08 -0800572void SkDebugCanvas::onDrawBitmap(const SkBitmap& bitmap, SkScalar left,
573 SkScalar top, const SkPaint* paint) {
commit-bot@chromium.org57f74e02014-03-25 23:31:33 +0000574 this->addDrawCommand(new SkDrawBitmapCommand(bitmap, left, top, paint));
chudy@google.com902ebe52012-06-29 14:21:22 +0000575}
576
reed41af9662015-01-05 07:49:08 -0800577void SkDebugCanvas::onDrawBitmapRect(const SkBitmap& bitmap, const SkRect* src, const SkRect& dst,
reed562fe472015-07-28 07:35:14 -0700578 const SkPaint* paint, SrcRectConstraint constraint) {
reeda5517e22015-07-14 10:54:12 -0700579 this->addDrawCommand(new SkDrawBitmapRectCommand(bitmap, src, dst, paint,
580 (SrcRectConstraint)constraint));
chudy@google.com902ebe52012-06-29 14:21:22 +0000581}
582
reed41af9662015-01-05 07:49:08 -0800583void SkDebugCanvas::onDrawBitmapNine(const SkBitmap& bitmap, const SkIRect& center,
584 const SkRect& dst, const SkPaint* paint) {
commit-bot@chromium.org57f74e02014-03-25 23:31:33 +0000585 this->addDrawCommand(new SkDrawBitmapNineCommand(bitmap, center, dst, paint));
chudy@google.com902ebe52012-06-29 14:21:22 +0000586}
587
reed41af9662015-01-05 07:49:08 -0800588void SkDebugCanvas::onDrawImage(const SkImage* image, SkScalar left, SkScalar top,
589 const SkPaint* paint) {
fmalita651c9202015-07-22 10:23:01 -0700590 this->addDrawCommand(new SkDrawImageCommand(image, left, top, paint));
reed41af9662015-01-05 07:49:08 -0800591}
592
593void SkDebugCanvas::onDrawImageRect(const SkImage* image, const SkRect* src, const SkRect& dst,
reed562fe472015-07-28 07:35:14 -0700594 const SkPaint* paint, SrcRectConstraint constraint) {
fmalita651c9202015-07-22 10:23:01 -0700595 this->addDrawCommand(new SkDrawImageRectCommand(image, src, dst, paint, constraint));
reed41af9662015-01-05 07:49:08 -0800596}
597
reed41af9662015-01-05 07:49:08 -0800598void SkDebugCanvas::onDrawOval(const SkRect& oval, const SkPaint& paint) {
commit-bot@chromium.org57f74e02014-03-25 23:31:33 +0000599 this->addDrawCommand(new SkDrawOvalCommand(oval, paint));
robertphillips@google.com67baba42013-01-02 20:20:31 +0000600}
601
bsalomonac3aa242016-08-19 11:25:19 -0700602void SkDebugCanvas::onDrawArc(const SkRect& oval, SkScalar startAngle, SkScalar sweepAngle,
603 bool useCenter, const SkPaint& paint) {
604 this->addDrawCommand(new SkDrawArcCommand(oval, startAngle, sweepAngle, useCenter, paint));
605}
606
reed41af9662015-01-05 07:49:08 -0800607void SkDebugCanvas::onDrawPaint(const SkPaint& paint) {
commit-bot@chromium.org57f74e02014-03-25 23:31:33 +0000608 this->addDrawCommand(new SkDrawPaintCommand(paint));
chudy@google.com902ebe52012-06-29 14:21:22 +0000609}
610
reed41af9662015-01-05 07:49:08 -0800611void SkDebugCanvas::onDrawPath(const SkPath& path, const SkPaint& paint) {
commit-bot@chromium.org57f74e02014-03-25 23:31:33 +0000612 this->addDrawCommand(new SkDrawPathCommand(path, paint));
chudy@google.com902ebe52012-06-29 14:21:22 +0000613}
614
mtkleinf0f14112014-12-12 08:46:25 -0800615void SkDebugCanvas::onDrawPicture(const SkPicture* picture,
616 const SkMatrix* matrix,
robertphillipsb3f319f2014-08-13 10:46:23 -0700617 const SkPaint* paint) {
fmalita160ebb22015-04-01 20:58:37 -0700618 this->addDrawCommand(new SkBeginDrawPictureCommand(picture, matrix, paint));
ethannicholas891ad662016-02-12 07:15:45 -0800619 SkAutoCanvasMatrixPaint acmp(this, matrix, paint, picture->cullRect());
620 picture->playback(this);
fmalita160ebb22015-04-01 20:58:37 -0700621 this->addDrawCommand(new SkEndDrawPictureCommand(SkToBool(matrix) || SkToBool(paint)));
chudy@google.com902ebe52012-06-29 14:21:22 +0000622}
623
vjiaoblack95302da2016-07-21 10:25:54 -0700624void SkDebugCanvas::onDrawShadowedPicture(const SkPicture* picture,
625 const SkMatrix* matrix,
vjiaoblacke6f5d562016-08-25 06:30:23 -0700626 const SkPaint* paint,
627 const SkShadowParams& params) {
628 this->addDrawCommand(new SkBeginDrawShadowedPictureCommand(picture, matrix, paint, params));
vjiaoblack95302da2016-07-21 10:25:54 -0700629 SkAutoCanvasMatrixPaint acmp(this, matrix, paint, picture->cullRect());
630 picture->playback(this);
631 this->addDrawCommand(new SkEndDrawShadowedPictureCommand(SkToBool(matrix) || SkToBool(paint)));
632}
633
reed41af9662015-01-05 07:49:08 -0800634void SkDebugCanvas::onDrawPoints(PointMode mode, size_t count,
635 const SkPoint pts[], const SkPaint& paint) {
commit-bot@chromium.org57f74e02014-03-25 23:31:33 +0000636 this->addDrawCommand(new SkDrawPointsCommand(mode, count, pts, paint));
chudy@google.com902ebe52012-06-29 14:21:22 +0000637}
638
reed@google.come0d9ce82014-04-23 04:00:17 +0000639void SkDebugCanvas::onDrawPosText(const void* text, size_t byteLength, const SkPoint pos[],
640 const SkPaint& paint) {
commit-bot@chromium.org57f74e02014-03-25 23:31:33 +0000641 this->addDrawCommand(new SkDrawPosTextCommand(text, byteLength, pos, paint));
chudy@google.com902ebe52012-06-29 14:21:22 +0000642}
643
reed@google.come0d9ce82014-04-23 04:00:17 +0000644void SkDebugCanvas::onDrawPosTextH(const void* text, size_t byteLength, const SkScalar xpos[],
645 SkScalar constY, const SkPaint& paint) {
commit-bot@chromium.org57f74e02014-03-25 23:31:33 +0000646 this->addDrawCommand(
commit-bot@chromium.org7a115912013-06-18 20:20:55 +0000647 new SkDrawPosTextHCommand(text, byteLength, xpos, constY, paint));
chudy@google.com902ebe52012-06-29 14:21:22 +0000648}
649
reed41af9662015-01-05 07:49:08 -0800650void SkDebugCanvas::onDrawRect(const SkRect& rect, const SkPaint& paint) {
chudy@google.com902ebe52012-06-29 14:21:22 +0000651 // NOTE(chudy): Messing up when renamed to DrawRect... Why?
commit-bot@chromium.org7a115912013-06-18 20:20:55 +0000652 addDrawCommand(new SkDrawRectCommand(rect, paint));
chudy@google.com902ebe52012-06-29 14:21:22 +0000653}
654
reed41af9662015-01-05 07:49:08 -0800655void SkDebugCanvas::onDrawRRect(const SkRRect& rrect, const SkPaint& paint) {
commit-bot@chromium.org57f74e02014-03-25 23:31:33 +0000656 this->addDrawCommand(new SkDrawRRectCommand(rrect, paint));
robertphillips@google.com67baba42013-01-02 20:20:31 +0000657}
658
commit-bot@chromium.orgab582732014-02-21 12:20:45 +0000659void SkDebugCanvas::onDrawDRRect(const SkRRect& outer, const SkRRect& inner,
660 const SkPaint& paint) {
commit-bot@chromium.org3d305202014-02-24 17:28:55 +0000661 this->addDrawCommand(new SkDrawDRRectCommand(outer, inner, paint));
commit-bot@chromium.orgab582732014-02-21 12:20:45 +0000662}
663
reed@google.come0d9ce82014-04-23 04:00:17 +0000664void SkDebugCanvas::onDrawText(const void* text, size_t byteLength, SkScalar x, SkScalar y,
665 const SkPaint& paint) {
commit-bot@chromium.org57f74e02014-03-25 23:31:33 +0000666 this->addDrawCommand(new SkDrawTextCommand(text, byteLength, x, y, paint));
chudy@google.com902ebe52012-06-29 14:21:22 +0000667}
668
reed@google.come0d9ce82014-04-23 04:00:17 +0000669void SkDebugCanvas::onDrawTextOnPath(const void* text, size_t byteLength, const SkPath& path,
670 const SkMatrix* matrix, const SkPaint& paint) {
commit-bot@chromium.org57f74e02014-03-25 23:31:33 +0000671 this->addDrawCommand(
commit-bot@chromium.org7a115912013-06-18 20:20:55 +0000672 new SkDrawTextOnPathCommand(text, byteLength, path, matrix, paint));
chudy@google.com902ebe52012-06-29 14:21:22 +0000673}
674
reed45561a02016-07-07 12:47:17 -0700675void SkDebugCanvas::onDrawTextRSXform(const void* text, size_t byteLength, const SkRSXform xform[],
676 const SkRect* cull, const SkPaint& paint) {
677 this->addDrawCommand(new SkDrawTextRSXformCommand(text, byteLength, xform, cull, paint));
678}
679
fmalitab7425172014-08-26 07:56:44 -0700680void SkDebugCanvas::onDrawTextBlob(const SkTextBlob* blob, SkScalar x, SkScalar y,
681 const SkPaint& paint) {
fmalita37283c22016-09-13 10:00:23 -0700682 this->addDrawCommand(new SkDrawTextBlobCommand(sk_ref_sp(const_cast<SkTextBlob*>(blob)),
683 x, y, paint));
fmalitab7425172014-08-26 07:56:44 -0700684}
685
robertphillips9bafc302015-02-13 11:13:00 -0800686void SkDebugCanvas::onDrawPatch(const SkPoint cubics[12], const SkColor colors[4],
687 const SkPoint texCoords[4], SkXfermode* xmode,
688 const SkPaint& paint) {
689 this->addDrawCommand(new SkDrawPatchCommand(cubics, colors, texCoords, xmode, paint));
690}
691
reed41af9662015-01-05 07:49:08 -0800692void SkDebugCanvas::onDrawVertices(VertexMode vmode, int vertexCount, const SkPoint vertices[],
693 const SkPoint texs[], const SkColor colors[],
694 SkXfermode*, const uint16_t indices[], int indexCount,
695 const SkPaint& paint) {
commit-bot@chromium.org57f74e02014-03-25 23:31:33 +0000696 this->addDrawCommand(new SkDrawVerticesCommand(vmode, vertexCount, vertices,
halcanary96fcdcc2015-08-27 07:41:13 -0700697 texs, colors, nullptr, indices, indexCount, paint));
chudy@google.com902ebe52012-06-29 14:21:22 +0000698}
699
commit-bot@chromium.orge54a23f2014-03-12 20:21:48 +0000700void SkDebugCanvas::willRestore() {
701 this->addDrawCommand(new SkRestoreCommand());
702 this->INHERITED::willRestore();
chudy@google.com902ebe52012-06-29 14:21:22 +0000703}
704
Florin Malita5f6102d2014-06-30 10:13:28 -0400705void SkDebugCanvas::willSave() {
706 this->addDrawCommand(new SkSaveCommand());
707 this->INHERITED::willSave();
chudy@google.com902ebe52012-06-29 14:21:22 +0000708}
709
reed4960eee2015-12-18 07:09:18 -0800710SkCanvas::SaveLayerStrategy SkDebugCanvas::getSaveLayerStrategy(const SaveLayerRec& rec) {
711 this->addDrawCommand(new SkSaveLayerCommand(rec));
712 (void)this->INHERITED::getSaveLayerStrategy(rec);
commit-bot@chromium.orge54a23f2014-03-12 20:21:48 +0000713 // No need for a full layer.
714 return kNoLayer_SaveLayerStrategy;
chudy@google.com902ebe52012-06-29 14:21:22 +0000715}
716
commit-bot@chromium.org44c48d02014-03-13 20:03:58 +0000717void SkDebugCanvas::didSetMatrix(const SkMatrix& matrix) {
commit-bot@chromium.org57f74e02014-03-25 23:31:33 +0000718 this->addDrawCommand(new SkSetMatrixCommand(matrix));
commit-bot@chromium.org44c48d02014-03-13 20:03:58 +0000719 this->INHERITED::didSetMatrix(matrix);
chudy@google.com902ebe52012-06-29 14:21:22 +0000720}
721
vjiaoblacke5de1302016-07-13 14:05:28 -0700722void SkDebugCanvas::didTranslateZ(SkScalar z) {
vjiaoblack95302da2016-07-21 10:25:54 -0700723#ifdef SK_EXPERIMENTAL_SHADOWING
vjiaoblacke5de1302016-07-13 14:05:28 -0700724 this->addDrawCommand(new SkTranslateZCommand(z));
725 this->INHERITED::didTranslateZ(z);
vjiaoblack95302da2016-07-21 10:25:54 -0700726#endif
vjiaoblacke5de1302016-07-13 14:05:28 -0700727}
728
chudy@google.com902ebe52012-06-29 14:21:22 +0000729void SkDebugCanvas::toggleCommand(int index, bool toggle) {
robertphillips@google.com67baba42013-01-02 20:20:31 +0000730 SkASSERT(index < fCommandVector.count());
731 fCommandVector[index]->setVisible(toggle);
chudy@google.com902ebe52012-06-29 14:21:22 +0000732}
commit-bot@chromium.org2a67e122014-05-19 13:53:10 +0000733
734static const char* gFillTypeStrs[] = {
735 "kWinding_FillType",
736 "kEvenOdd_FillType",
737 "kInverseWinding_FillType",
738 "kInverseEvenOdd_FillType"
739};
740
741static const char* gOpStrs[] = {
scroggo5965b732015-04-07 06:53:21 -0700742 "kDifference_PathOp",
743 "kIntersect_PathOp",
744 "kUnion_PathOp",
commit-bot@chromium.org2a67e122014-05-19 13:53:10 +0000745 "kXor_PathOp",
scroggo5965b732015-04-07 06:53:21 -0700746 "kReverseDifference_PathOp",
commit-bot@chromium.org2a67e122014-05-19 13:53:10 +0000747};
748
749static const char kHTML4SpaceIndent[] = "&nbsp;&nbsp;&nbsp;&nbsp;";
750
751void SkDebugCanvas::outputScalar(SkScalar num) {
752 if (num == (int) num) {
753 fClipStackData.appendf("%d", (int) num);
754 } else {
755 SkString str;
756 str.printf("%1.9g", num);
757 int width = (int) str.size();
758 const char* cStr = str.c_str();
759 while (cStr[width - 1] == '0') {
760 --width;
761 }
762 str.resize(width);
763 fClipStackData.appendf("%sf", str.c_str());
764 }
765}
766
767void SkDebugCanvas::outputPointsCommon(const SkPoint* pts, int count) {
768 for (int index = 0; index < count; ++index) {
769 this->outputScalar(pts[index].fX);
770 fClipStackData.appendf(", ");
771 this->outputScalar(pts[index].fY);
772 if (index + 1 < count) {
773 fClipStackData.appendf(", ");
774 }
775 }
776}
777
778void SkDebugCanvas::outputPoints(const SkPoint* pts, int count) {
779 this->outputPointsCommon(pts, count);
780 fClipStackData.appendf(");<br>");
781}
782
783void SkDebugCanvas::outputConicPoints(const SkPoint* pts, SkScalar weight) {
784 this->outputPointsCommon(pts, 2);
785 fClipStackData.appendf(", ");
786 this->outputScalar(weight);
787 fClipStackData.appendf(");<br>");
788}
789
790void SkDebugCanvas::addPathData(const SkPath& path, const char* pathName) {
791 SkPath::RawIter iter(path);
792 SkPath::FillType fillType = path.getFillType();
793 fClipStackData.appendf("%sSkPath %s;<br>", kHTML4SpaceIndent, pathName);
794 fClipStackData.appendf("%s%s.setFillType(SkPath::%s);<br>", kHTML4SpaceIndent, pathName,
795 gFillTypeStrs[fillType]);
796 iter.setPath(path);
797 uint8_t verb;
798 SkPoint pts[4];
799 while ((verb = iter.next(pts)) != SkPath::kDone_Verb) {
800 switch (verb) {
801 case SkPath::kMove_Verb:
802 fClipStackData.appendf("%s%s.moveTo(", kHTML4SpaceIndent, pathName);
803 this->outputPoints(&pts[0], 1);
804 continue;
805 case SkPath::kLine_Verb:
806 fClipStackData.appendf("%s%s.lineTo(", kHTML4SpaceIndent, pathName);
807 this->outputPoints(&pts[1], 1);
808 break;
809 case SkPath::kQuad_Verb:
810 fClipStackData.appendf("%s%s.quadTo(", kHTML4SpaceIndent, pathName);
811 this->outputPoints(&pts[1], 2);
812 break;
813 case SkPath::kConic_Verb:
814 fClipStackData.appendf("%s%s.conicTo(", kHTML4SpaceIndent, pathName);
815 this->outputConicPoints(&pts[1], iter.conicWeight());
816 break;
817 case SkPath::kCubic_Verb:
818 fClipStackData.appendf("%s%s.cubicTo(", kHTML4SpaceIndent, pathName);
819 this->outputPoints(&pts[1], 3);
820 break;
821 case SkPath::kClose_Verb:
822 fClipStackData.appendf("%s%s.close();<br>", kHTML4SpaceIndent, pathName);
823 break;
824 default:
825 SkDEBUGFAIL("bad verb");
826 return;
827 }
828 }
829}
830
831void SkDebugCanvas::addClipStackData(const SkPath& devPath, const SkPath& operand,
reed73603f32016-09-20 08:42:38 -0700832 SkCanvas::ClipOp elementOp) {
833 if (elementOp == SkCanvas::kReplace_Op) {
commit-bot@chromium.org2a67e122014-05-19 13:53:10 +0000834 if (!lastClipStackData(devPath)) {
835 fSaveDevPath = operand;
836 }
837 fCalledAddStackData = false;
838 } else {
839 fClipStackData.appendf("<br>static void test(skiatest::Reporter* reporter,"
840 " const char* filename) {<br>");
841 addPathData(fCalledAddStackData ? devPath : fSaveDevPath, "path");
842 addPathData(operand, "pathB");
843 fClipStackData.appendf("%stestPathOp(reporter, path, pathB, %s, filename);<br>",
844 kHTML4SpaceIndent, gOpStrs[elementOp]);
845 fClipStackData.appendf("}<br>");
846 fCalledAddStackData = true;
847 }
848}
849
850bool SkDebugCanvas::lastClipStackData(const SkPath& devPath) {
851 if (fCalledAddStackData) {
852 fClipStackData.appendf("<br>");
853 addPathData(devPath, "pathOut");
854 return true;
855 }
856 return false;
857}