blob: bc699fce227a4fd8b086b8f2351254e63c6d59d7 [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"
fmalita37283c22016-09-13 10:00:23 -070012#include "SkPaintFilterCanvas.h"
13#include "SkTextBlob.h"
fmalita65cdb572015-03-26 07:24:48 -070014
joshualitt10d8fc22016-02-29 11:15:06 -080015#if SK_SUPPORT_GPU
16#include "GrAuditTrail.h"
17#include "GrContext.h"
18#include "GrRenderTarget.h"
joshualitt1d7decf2016-03-01 07:15:52 -080019#include "SkGpuDevice.h"
joshualitt10d8fc22016-02-29 11:15:06 -080020#endif
21
joshualitte43f7e62016-03-04 10:45:05 -080022#define SKDEBUGCANVAS_VERSION 1
23#define SKDEBUGCANVAS_ATTRIBUTE_VERSION "version"
24#define SKDEBUGCANVAS_ATTRIBUTE_COMMANDS "commands"
25#define SKDEBUGCANVAS_ATTRIBUTE_AUDITTRAIL "auditTrail"
ethannicholas402cd912016-02-10 12:57:30 -080026
fmalita65cdb572015-03-26 07:24:48 -070027class DebugPaintFilterCanvas : public SkPaintFilterCanvas {
28public:
Ben Wagnerc03e1c52016-10-17 15:20:02 -040029 DebugPaintFilterCanvas(SkCanvas* canvas,
halcanary385fe4d2015-08-26 13:07:48 -070030 bool overdrawViz,
31 bool overrideFilterQuality,
fmalita65cdb572015-03-26 07:24:48 -070032 SkFilterQuality quality)
Ben Wagnerc03e1c52016-10-17 15:20:02 -040033 : INHERITED(canvas)
34 , fOverdrawViz(overdrawViz)
fmalita65cdb572015-03-26 07:24:48 -070035 , fOverrideFilterQuality(overrideFilterQuality)
halcanary385fe4d2015-08-26 13:07:48 -070036 , fFilterQuality(quality) {}
fmalita65cdb572015-03-26 07:24:48 -070037
38protected:
fmalita32cdc322016-01-12 07:21:11 -080039 bool onFilter(SkTCopyOnFirstWrite<SkPaint>* paint, Type) const override {
40 if (*paint) {
Ben Wagnerc03e1c52016-10-17 15:20:02 -040041 if (fOverdrawViz) {
42 paint->writable()->setColor(SK_ColorRED);
43 paint->writable()->setAlpha(0x08);
44 paint->writable()->setBlendMode(SkBlendMode::kSrcOver);
fmalitabad23dc2016-01-11 13:58:29 -080045 }
fmalita65cdb572015-03-26 07:24:48 -070046
fmalitabad23dc2016-01-11 13:58:29 -080047 if (fOverrideFilterQuality) {
fmalita32cdc322016-01-12 07:21:11 -080048 paint->writable()->setFilterQuality(fFilterQuality);
fmalitabad23dc2016-01-11 13:58:29 -080049 }
fmalita65cdb572015-03-26 07:24:48 -070050 }
fmalitabad23dc2016-01-11 13:58:29 -080051 return true;
fmalita65cdb572015-03-26 07:24:48 -070052 }
53
mtkleinf0599002015-07-13 06:18:39 -070054 void onDrawPicture(const SkPicture* picture,
55 const SkMatrix* matrix,
56 const SkPaint* paint) override {
fmalita65cdb572015-03-26 07:24:48 -070057 // We need to replay the picture onto this canvas in order to filter its internal paints.
58 this->SkCanvas::onDrawPicture(picture, matrix, paint);
59 }
60
vjiaoblack95302da2016-07-21 10:25:54 -070061 void onDrawShadowedPicture(const SkPicture* picture,
62 const SkMatrix* matrix,
vjiaoblacke6f5d562016-08-25 06:30:23 -070063 const SkPaint* paint,
64 const SkShadowParams& params) {
vjiaoblack95302da2016-07-21 10:25:54 -070065#ifdef SK_EXPERIMENTAL_SHADOWING
vjiaoblacke6f5d562016-08-25 06:30:23 -070066 this->SkCanvas::onDrawShadowedPicture(picture, matrix, paint, params);
vjiaoblack95302da2016-07-21 10:25:54 -070067#else
68 this->SkCanvas::onDrawPicture(picture, matrix, paint);
69#endif
70 }
71
fmalita65cdb572015-03-26 07:24:48 -070072private:
Ben Wagnerc03e1c52016-10-17 15:20:02 -040073 bool fOverdrawViz;
fmalita65cdb572015-03-26 07:24:48 -070074 bool fOverrideFilterQuality;
75 SkFilterQuality fFilterQuality;
76
77 typedef SkPaintFilterCanvas INHERITED;
78};
79
kkinnunen26e54002015-01-05 12:58:56 -080080SkDebugCanvas::SkDebugCanvas(int width, int height)
81 : INHERITED(width, height)
halcanary96fcdcc2015-08-27 07:41:13 -070082 , fPicture(nullptr)
commit-bot@chromium.org1735d662013-12-04 13:42:46 +000083 , fFilter(false)
commit-bot@chromium.org768ac852014-03-03 16:32:17 +000084 , fMegaVizMode(false)
robertphillips@google.comf4741c12013-02-06 20:13:54 +000085 , fOverdrawViz(false)
fmalita65cdb572015-03-26 07:24:48 -070086 , fOverrideFilterQuality(false)
ethannicholas0a0520a2016-02-12 12:06:53 -080087 , fFilterQuality(kNone_SkFilterQuality)
joshualitt10d8fc22016-02-29 11:15:06 -080088 , fClipVizColor(SK_ColorTRANSPARENT)
joshualitt5d5207a2016-02-29 12:46:04 -080089 , fDrawGpuBatchBounds(false) {
bungeman@google.come8cc6e82013-01-17 16:30:56 +000090 fUserMatrix.reset();
robertphillips@google.com8b157172013-11-07 22:20:31 +000091
92 // SkPicturePlayback uses the base-class' quickReject calls to cull clipped
93 // operations. This can lead to problems in the debugger which expects all
94 // the operations in the captured skp to appear in the debug canvas. To
95 // circumvent this we create a wide open clip here (an empty clip rect
96 // is not sufficient).
97 // Internally, the SkRect passed to clipRect is converted to an SkIRect and
98 // rounded out. The following code creates a nearly maximal rect that will
99 // not get collapsed by the coming conversions (Due to precision loss the
100 // inset has to be surprisingly large).
101 SkIRect largeIRect = SkIRect::MakeLargest();
102 largeIRect.inset(1024, 1024);
robertphillips@google.com6c1e49a2013-11-10 15:08:45 +0000103 SkRect large = SkRect::Make(largeIRect);
robertphillips@google.com8b157172013-11-07 22:20:31 +0000104#ifdef SK_DEBUG
reedb07a94f2014-11-19 05:03:18 -0800105 SkASSERT(!large.roundOut().isEmpty());
robertphillips@google.com8b157172013-11-07 22:20:31 +0000106#endif
robertphillips@google.com8f90a892014-02-28 18:19:39 +0000107 // call the base class' version to avoid adding a draw command
reed73603f32016-09-20 08:42:38 -0700108 this->INHERITED::onClipRect(large, kReplace_Op, kHard_ClipEdgeStyle);
chudy@google.com902ebe52012-06-29 14:21:22 +0000109}
110
chudy@google.com9cda6f72012-08-07 15:08:33 +0000111SkDebugCanvas::~SkDebugCanvas() {
robertphillips@google.com67baba42013-01-02 20:20:31 +0000112 fCommandVector.deleteAll();
chudy@google.com9cda6f72012-08-07 15:08:33 +0000113}
chudy@google.com902ebe52012-06-29 14:21:22 +0000114
115void SkDebugCanvas::addDrawCommand(SkDrawCommand* command) {
robertphillips@google.com67baba42013-01-02 20:20:31 +0000116 fCommandVector.push(command);
chudy@google.com902ebe52012-06-29 14:21:22 +0000117}
118
119void SkDebugCanvas::draw(SkCanvas* canvas) {
commit-bot@chromium.org1735d662013-12-04 13:42:46 +0000120 if (!fCommandVector.isEmpty()) {
commit-bot@chromium.org57f74e02014-03-25 23:31:33 +0000121 this->drawTo(canvas, fCommandVector.count() - 1);
chudy@google.com902ebe52012-06-29 14:21:22 +0000122 }
123}
124
chudy@google.com830b8792012-08-01 15:57:52 +0000125void SkDebugCanvas::applyUserTransform(SkCanvas* canvas) {
bungeman@google.come8cc6e82013-01-17 16:30:56 +0000126 canvas->concat(fUserMatrix);
chudy@google.com830b8792012-08-01 15:57:52 +0000127}
128
129int SkDebugCanvas::getCommandAtPoint(int x, int y, int index) {
chudy@google.com0b5bbb02012-07-31 19:55:32 +0000130 SkBitmap bitmap;
reed@google.com9ebcac52014-01-24 18:53:42 +0000131 bitmap.allocPixels(SkImageInfo::MakeN32Premul(1, 1));
chudy@google.com902ebe52012-06-29 14:21:22 +0000132
chudy@google.com0b5bbb02012-07-31 19:55:32 +0000133 SkCanvas canvas(bitmap);
robertphillips@google.com94acc702012-09-06 18:43:21 +0000134 canvas.translate(SkIntToScalar(-x), SkIntToScalar(-y));
robertphillipsa8d7f0b2014-08-29 08:03:56 -0700135 this->applyUserTransform(&canvas);
chudy@google.com0b5bbb02012-07-31 19:55:32 +0000136
137 int layer = 0;
chudy@google.com751961d2012-07-31 20:07:42 +0000138 SkColor prev = bitmap.getColor(0,0);
chudy@google.com0b5bbb02012-07-31 19:55:32 +0000139 for (int i = 0; i < index; i++) {
robertphillips@google.com67baba42013-01-02 20:20:31 +0000140 if (fCommandVector[i]->isVisible()) {
robertphillips70171682014-10-16 14:28:28 -0700141 fCommandVector[i]->setUserMatrix(fUserMatrix);
robertphillips@google.com67baba42013-01-02 20:20:31 +0000142 fCommandVector[i]->execute(&canvas);
chudy@google.com0b5bbb02012-07-31 19:55:32 +0000143 }
144 if (prev != bitmap.getColor(0,0)) {
145 layer = i;
146 }
147 prev = bitmap.getColor(0,0);
148 }
149 return layer;
150}
151
commit-bot@chromium.org768ac852014-03-03 16:32:17 +0000152class SkDebugClipVisitor : public SkCanvas::ClipVisitor {
153public:
154 SkDebugClipVisitor(SkCanvas* canvas) : fCanvas(canvas) {}
155
reed73603f32016-09-20 08:42:38 -0700156 void clipRect(const SkRect& r, SkCanvas::ClipOp, bool doAA) override {
commit-bot@chromium.org768ac852014-03-03 16:32:17 +0000157 SkPaint p;
158 p.setColor(SK_ColorRED);
159 p.setStyle(SkPaint::kStroke_Style);
160 p.setAntiAlias(doAA);
161 fCanvas->drawRect(r, p);
162 }
reed73603f32016-09-20 08:42:38 -0700163 void clipRRect(const SkRRect& rr, SkCanvas::ClipOp, bool doAA) override {
commit-bot@chromium.org768ac852014-03-03 16:32:17 +0000164 SkPaint p;
165 p.setColor(SK_ColorGREEN);
166 p.setStyle(SkPaint::kStroke_Style);
167 p.setAntiAlias(doAA);
168 fCanvas->drawRRect(rr, p);
169 }
reed73603f32016-09-20 08:42:38 -0700170 void clipPath(const SkPath& path, SkCanvas::ClipOp, bool doAA) override {
commit-bot@chromium.org768ac852014-03-03 16:32:17 +0000171 SkPaint p;
172 p.setColor(SK_ColorBLUE);
173 p.setStyle(SkPaint::kStroke_Style);
174 p.setAntiAlias(doAA);
175 fCanvas->drawPath(path, p);
176 }
177
178protected:
179 SkCanvas* fCanvas;
180
181private:
182 typedef SkCanvas::ClipVisitor INHERITED;
183};
184
185// set up the saveLayer commands so that the active ones
186// return true in their 'active' method
commit-bot@chromium.org1643b2c2014-03-03 23:25:41 +0000187void SkDebugCanvas::markActiveCommands(int index) {
188 fActiveLayers.rewind();
commit-bot@chromium.org768ac852014-03-03 16:32:17 +0000189
190 for (int i = 0; i < fCommandVector.count(); ++i) {
191 fCommandVector[i]->setActive(false);
192 }
193
194 for (int i = 0; i < index; ++i) {
195 SkDrawCommand::Action result = fCommandVector[i]->action();
commit-bot@chromium.org1643b2c2014-03-03 23:25:41 +0000196 if (SkDrawCommand::kPushLayer_Action == result) {
197 fActiveLayers.push(fCommandVector[i]);
198 } else if (SkDrawCommand::kPopLayer_Action == result) {
199 fActiveLayers.pop();
commit-bot@chromium.org768ac852014-03-03 16:32:17 +0000200 }
201 }
202
commit-bot@chromium.org1643b2c2014-03-03 23:25:41 +0000203 for (int i = 0; i < fActiveLayers.count(); ++i) {
204 fActiveLayers[i]->setActive(true);
205 }
206
commit-bot@chromium.org768ac852014-03-03 16:32:17 +0000207}
208
joshualitt46b301d2016-03-02 08:32:37 -0800209void SkDebugCanvas::drawTo(SkCanvas* canvas, int index, int m) {
robertphillips@google.com67baba42013-01-02 20:20:31 +0000210 SkASSERT(!fCommandVector.isEmpty());
211 SkASSERT(index < fCommandVector.count());
kkinnunen26a00de2015-01-13 23:09:19 -0800212
213 int saveCount = canvas->save();
214
kkinnunen26e54002015-01-05 12:58:56 -0800215 SkRect windowRect = SkRect::MakeWH(SkIntToScalar(canvas->getBaseLayerSize().width()),
216 SkIntToScalar(canvas->getBaseLayerSize().height()));
chudy@google.com830b8792012-08-01 15:57:52 +0000217
commit-bot@chromium.org2a67e122014-05-19 13:53:10 +0000218 bool pathOpsMode = getAllowSimplifyClip();
219 canvas->setAllowSimplifyClip(pathOpsMode);
ethannicholascecbbe22016-02-17 11:49:43 -0800220 canvas->clear(SK_ColorWHITE);
kkinnunen26a00de2015-01-13 23:09:19 -0800221 canvas->resetMatrix();
222 if (!windowRect.isEmpty()) {
reed73603f32016-09-20 08:42:38 -0700223 canvas->clipRect(windowRect, SkCanvas::kReplace_Op);
commit-bot@chromium.orga27622c2013-08-05 16:31:27 +0000224 }
kkinnunen26a00de2015-01-13 23:09:19 -0800225 this->applyUserTransform(canvas);
robertphillips@google.comf4741c12013-02-06 20:13:54 +0000226
Ben Wagnerc03e1c52016-10-17 15:20:02 -0400227 DebugPaintFilterCanvas fPaintFilterCanvas(canvas, fOverdrawViz,
228 fOverrideFilterQuality, fFilterQuality);
229 canvas = &fPaintFilterCanvas;
chudy@google.com830b8792012-08-01 15:57:52 +0000230
commit-bot@chromium.org768ac852014-03-03 16:32:17 +0000231 if (fMegaVizMode) {
commit-bot@chromium.org1643b2c2014-03-03 23:25:41 +0000232 this->markActiveCommands(index);
commit-bot@chromium.org768ac852014-03-03 16:32:17 +0000233 }
halcanary9d524f22016-03-29 09:03:52 -0700234
joshualitt40836102016-03-11 11:45:53 -0800235#if SK_SUPPORT_GPU
joshualitt10d8fc22016-02-29 11:15:06 -0800236 // If we have a GPU backend we can also visualize the batching information
joshualitt10d8fc22016-02-29 11:15:06 -0800237 GrAuditTrail* at = nullptr;
joshualittae47aee2016-03-10 13:29:36 -0800238 if (fDrawGpuBatchBounds || m != -1) {
239 at = this->getAuditTrail(canvas);
joshualitt10d8fc22016-02-29 11:15:06 -0800240 }
joshualitt40836102016-03-11 11:45:53 -0800241#endif
commit-bot@chromium.org768ac852014-03-03 16:32:17 +0000242
kkinnunen26a00de2015-01-13 23:09:19 -0800243 for (int i = 0; i <= index; i++) {
chudy@google.com0b5bbb02012-07-31 19:55:32 +0000244 if (i == index && fFilter) {
robertphillipsa8d7f0b2014-08-29 08:03:56 -0700245 canvas->clear(0xAAFFFFFF);
chudy@google.com0b5bbb02012-07-31 19:55:32 +0000246 }
halcanary9d524f22016-03-29 09:03:52 -0700247
joshualitt10d8fc22016-02-29 11:15:06 -0800248#if SK_SUPPORT_GPU
brianosman1c9f9222016-04-15 11:00:51 -0700249 // We need to flush any pending operations, or they might batch with commands below.
250 // Previous operations were not registered with the audit trail when they were
251 // created, so if we allow them to combine, the audit trail will fail to find them.
252 canvas->flush();
253
joshualitt10d8fc22016-02-29 11:15:06 -0800254 GrAuditTrail::AutoCollectBatches* acb = nullptr;
255 if (at) {
256 acb = new GrAuditTrail::AutoCollectBatches(at, i);
257 }
258#endif
chudy@google.com0b5bbb02012-07-31 19:55:32 +0000259
robertphillips@google.com67baba42013-01-02 20:20:31 +0000260 if (fCommandVector[i]->isVisible()) {
commit-bot@chromium.org768ac852014-03-03 16:32:17 +0000261 if (fMegaVizMode && fCommandVector[i]->active()) {
commit-bot@chromium.org1643b2c2014-03-03 23:25:41 +0000262 // "active" commands execute their visualization behaviors:
263 // All active saveLayers get replaced with saves so all draws go to the
264 // visible canvas.
265 // All active culls draw their cull box
266 fCommandVector[i]->vizExecute(canvas);
commit-bot@chromium.org768ac852014-03-03 16:32:17 +0000267 } else {
robertphillips70171682014-10-16 14:28:28 -0700268 fCommandVector[i]->setUserMatrix(fUserMatrix);
commit-bot@chromium.org768ac852014-03-03 16:32:17 +0000269 fCommandVector[i]->execute(canvas);
commit-bot@chromium.org768ac852014-03-03 16:32:17 +0000270 }
chudy@google.com902ebe52012-06-29 14:21:22 +0000271 }
joshualitt10d8fc22016-02-29 11:15:06 -0800272#if SK_SUPPORT_GPU
273 if (at && acb) {
274 delete acb;
275 }
276#endif
chudy@google.com902ebe52012-06-29 14:21:22 +0000277 }
commit-bot@chromium.org768ac852014-03-03 16:32:17 +0000278
ethannicholas0a0520a2016-02-12 12:06:53 -0800279 if (SkColorGetA(fClipVizColor) != 0) {
280 canvas->save();
281 #define LARGE_COORD 1000000000
282 canvas->clipRect(SkRect::MakeLTRB(-LARGE_COORD, -LARGE_COORD, LARGE_COORD, LARGE_COORD),
reed73603f32016-09-20 08:42:38 -0700283 SkCanvas::kReverseDifference_Op);
ethannicholas0a0520a2016-02-12 12:06:53 -0800284 SkPaint clipPaint;
285 clipPaint.setColor(fClipVizColor);
286 canvas->drawPaint(clipPaint);
287 canvas->restore();
288 }
289
commit-bot@chromium.org768ac852014-03-03 16:32:17 +0000290 if (fMegaVizMode) {
commit-bot@chromium.org768ac852014-03-03 16:32:17 +0000291 canvas->save();
292 // nuke the CTM
robertphillipsa8d7f0b2014-08-29 08:03:56 -0700293 canvas->resetMatrix();
commit-bot@chromium.org768ac852014-03-03 16:32:17 +0000294 // turn off clipping
kkinnunen26e54002015-01-05 12:58:56 -0800295 if (!windowRect.isEmpty()) {
296 SkRect r = windowRect;
297 r.outset(SK_Scalar1, SK_Scalar1);
reed73603f32016-09-20 08:42:38 -0700298 canvas->clipRect(r, SkCanvas::kReplace_Op);
kkinnunen26e54002015-01-05 12:58:56 -0800299 }
commit-bot@chromium.org768ac852014-03-03 16:32:17 +0000300 // visualize existing clips
301 SkDebugClipVisitor visitor(canvas);
302
303 canvas->replayClips(&visitor);
304
305 canvas->restore();
306 }
commit-bot@chromium.org2a67e122014-05-19 13:53:10 +0000307 if (pathOpsMode) {
308 this->resetClipStackData();
309 const SkClipStack* clipStack = canvas->getClipStack();
310 SkClipStack::Iter iter(*clipStack, SkClipStack::Iter::kBottom_IterStart);
311 const SkClipStack::Element* element;
312 SkPath devPath;
313 while ((element = iter.next())) {
314 SkClipStack::Element::Type type = element->getType();
315 SkPath operand;
316 if (type != SkClipStack::Element::kEmpty_Type) {
317 element->asPath(&operand);
318 }
reed73603f32016-09-20 08:42:38 -0700319 SkCanvas::ClipOp elementOp = element->getOp();
commit-bot@chromium.org2a67e122014-05-19 13:53:10 +0000320 this->addClipStackData(devPath, operand, elementOp);
reed73603f32016-09-20 08:42:38 -0700321 if (elementOp == SkCanvas::kReplace_Op) {
commit-bot@chromium.org2a67e122014-05-19 13:53:10 +0000322 devPath = operand;
323 } else {
324 Op(devPath, operand, (SkPathOp) elementOp, &devPath);
325 }
326 }
327 this->lastClipStackData(devPath);
328 }
chudy@google.coma9e937c2012-08-03 17:32:05 +0000329 fMatrix = canvas->getTotalMatrix();
commit-bot@chromium.org5c70cdc2014-03-08 03:57:19 +0000330 if (!canvas->getClipDeviceBounds(&fClip)) {
331 fClip.setEmpty();
332 }
kkinnunen26a00de2015-01-13 23:09:19 -0800333
334 canvas->restoreToCount(saveCount);
fmalita65cdb572015-03-26 07:24:48 -0700335
joshualitt10d8fc22016-02-29 11:15:06 -0800336#if SK_SUPPORT_GPU
337 // draw any batches if required and issue a full reset onto GrAuditTrail
338 if (at) {
joshualitte43f7e62016-03-04 10:45:05 -0800339 // just in case there is global reordering, we flush the canvas before querying
340 // GrAuditTrail
joshualittb0666ad2016-03-08 10:43:41 -0800341 GrAuditTrail::AutoEnable ae(at);
joshualitte43f7e62016-03-04 10:45:05 -0800342 canvas->flush();
343
joshualittbdc6b2b2016-03-01 14:22:02 -0800344 // we pick three colorblind-safe colors, 75% alpha
345 static const SkColor kTotalBounds = SkColorSetARGB(0xC0, 0x6A, 0x3D, 0x9A);
346 static const SkColor kOpBatchBounds = SkColorSetARGB(0xC0, 0xE3, 0x1A, 0x1C);
347 static const SkColor kOtherBatchBounds = SkColorSetARGB(0xC0, 0xFF, 0x7F, 0x00);
348
joshualitt1d7decf2016-03-01 07:15:52 -0800349 // get the render target of the top device so we can ignore batches drawn offscreen
350 SkBaseDevice* bd = canvas->getDevice_just_for_deprecated_compatibility_testing();
351 SkGpuDevice* gbd = reinterpret_cast<SkGpuDevice*>(bd);
Brian Osman11052242016-10-27 14:47:55 -0400352 uint32_t rtID = gbd->accessRenderTargetContext()->accessRenderTarget()->uniqueID();
joshualitt1d7decf2016-03-01 07:15:52 -0800353
354 // get the bounding boxes to draw
joshualitt10d8fc22016-02-29 11:15:06 -0800355 SkTArray<GrAuditTrail::BatchInfo> childrenBounds;
joshualitt46b301d2016-03-02 08:32:37 -0800356 if (m == -1) {
357 at->getBoundsByClientID(&childrenBounds, index);
358 } else {
359 // the client wants us to draw the mth batch
360 at->getBoundsByBatchListID(&childrenBounds.push_back(), m);
361 }
joshualitt10d8fc22016-02-29 11:15:06 -0800362 SkPaint paint;
363 paint.setStyle(SkPaint::kStroke_Style);
364 paint.setStrokeWidth(1);
365 for (int i = 0; i < childrenBounds.count(); i++) {
joshualitt1d7decf2016-03-01 07:15:52 -0800366 if (childrenBounds[i].fRenderTargetUniqueID != rtID) {
367 // offscreen draw, ignore for now
368 continue;
369 }
joshualittbdc6b2b2016-03-01 14:22:02 -0800370 paint.setColor(kTotalBounds);
joshualitt10d8fc22016-02-29 11:15:06 -0800371 canvas->drawRect(childrenBounds[i].fBounds, paint);
372 for (int j = 0; j < childrenBounds[i].fBatches.count(); j++) {
373 const GrAuditTrail::BatchInfo::Batch& batch = childrenBounds[i].fBatches[j];
374 if (batch.fClientID != index) {
joshualittbdc6b2b2016-03-01 14:22:02 -0800375 paint.setColor(kOtherBatchBounds);
joshualitt10d8fc22016-02-29 11:15:06 -0800376 } else {
joshualittbdc6b2b2016-03-01 14:22:02 -0800377 paint.setColor(kOpBatchBounds);
joshualitt10d8fc22016-02-29 11:15:06 -0800378 }
379 canvas->drawRect(batch.fBounds, paint);
380 }
381 }
joshualitt10d8fc22016-02-29 11:15:06 -0800382 }
joshualitt10d8fc22016-02-29 11:15:06 -0800383#endif
joshualittae47aee2016-03-10 13:29:36 -0800384 this->cleanupAuditTrail(canvas);
chudy@google.com902ebe52012-06-29 14:21:22 +0000385}
386
robertphillips@google.com50c84da2013-04-01 18:18:49 +0000387void SkDebugCanvas::deleteDrawCommandAt(int index) {
388 SkASSERT(index < fCommandVector.count());
389 delete fCommandVector[index];
390 fCommandVector.remove(index);
391}
392
chudy@google.com902ebe52012-06-29 14:21:22 +0000393SkDrawCommand* SkDebugCanvas::getDrawCommandAt(int index) {
robertphillips@google.com67baba42013-01-02 20:20:31 +0000394 SkASSERT(index < fCommandVector.count());
395 return fCommandVector[index];
chudy@google.com902ebe52012-06-29 14:21:22 +0000396}
397
robertphillips@google.com50c84da2013-04-01 18:18:49 +0000398void SkDebugCanvas::setDrawCommandAt(int index, SkDrawCommand* command) {
399 SkASSERT(index < fCommandVector.count());
400 delete fCommandVector[index];
401 fCommandVector[index] = command;
402}
403
fmalita8c89c522014-11-08 16:18:56 -0800404const SkTDArray<SkString*>* SkDebugCanvas::getCommandInfo(int index) const {
robertphillips@google.com67baba42013-01-02 20:20:31 +0000405 SkASSERT(index < fCommandVector.count());
406 return fCommandVector[index]->Info();
chudy@google.com7e4cfbf2012-07-17 15:40:51 +0000407}
chudy@google.com902ebe52012-06-29 14:21:22 +0000408
chudy@google.com7e4cfbf2012-07-17 15:40:51 +0000409bool SkDebugCanvas::getDrawCommandVisibilityAt(int index) {
robertphillips@google.com67baba42013-01-02 20:20:31 +0000410 SkASSERT(index < fCommandVector.count());
411 return fCommandVector[index]->isVisible();
chudy@google.com902ebe52012-06-29 14:21:22 +0000412}
413
robertphillips@google.com8a1cdae2012-11-19 20:44:29 +0000414const SkTDArray <SkDrawCommand*>& SkDebugCanvas::getDrawCommands() const {
robertphillips@google.com67baba42013-01-02 20:20:31 +0000415 return fCommandVector;
chudy@google.com902ebe52012-06-29 14:21:22 +0000416}
417
robertphillips@google.comfebc0ec2013-03-11 22:53:11 +0000418SkTDArray <SkDrawCommand*>& SkDebugCanvas::getDrawCommands() {
419 return fCommandVector;
420}
421
joshualittae47aee2016-03-10 13:29:36 -0800422GrAuditTrail* SkDebugCanvas::getAuditTrail(SkCanvas* canvas) {
423 GrAuditTrail* at = nullptr;
joshualitte43f7e62016-03-04 10:45:05 -0800424#if SK_SUPPORT_GPU
robertphillips175dd9b2016-04-28 14:32:04 -0700425 GrContext* ctx = canvas->getGrContext();
426 if (ctx) {
427 at = ctx->getAuditTrail();
joshualitte43f7e62016-03-04 10:45:05 -0800428 }
429#endif
joshualittae47aee2016-03-10 13:29:36 -0800430 return at;
431}
432
433void SkDebugCanvas::drawAndCollectBatches(int n, SkCanvas* canvas) {
joshualitt40836102016-03-11 11:45:53 -0800434#if SK_SUPPORT_GPU
joshualittae47aee2016-03-10 13:29:36 -0800435 GrAuditTrail* at = this->getAuditTrail(canvas);
436 if (at) {
joshualittae47aee2016-03-10 13:29:36 -0800437 // loop over all of the commands and draw them, this is to collect reordering
438 // information
439 for (int i = 0; i < this->getSize() && i <= n; i++) {
440 GrAuditTrail::AutoCollectBatches enable(at, i);
441 fCommandVector[i]->execute(canvas);
442 }
443
444 // in case there is some kind of global reordering
445 {
446 GrAuditTrail::AutoEnable ae(at);
447 canvas->flush();
448 }
joshualittae47aee2016-03-10 13:29:36 -0800449 }
joshualitt40836102016-03-11 11:45:53 -0800450#endif
joshualittae47aee2016-03-10 13:29:36 -0800451}
452
453void SkDebugCanvas::cleanupAuditTrail(SkCanvas* canvas) {
454 GrAuditTrail* at = this->getAuditTrail(canvas);
455 if (at) {
456#if SK_SUPPORT_GPU
457 GrAuditTrail::AutoEnable ae(at);
458 at->fullReset();
459#endif
460 }
461}
462
463Json::Value SkDebugCanvas::toJSON(UrlDataManager& urlDataManager, int n, SkCanvas* canvas) {
464 this->drawAndCollectBatches(n, canvas);
halcanary9d524f22016-03-29 09:03:52 -0700465
joshualitte43f7e62016-03-04 10:45:05 -0800466 // now collect json
joshualitt40836102016-03-11 11:45:53 -0800467#if SK_SUPPORT_GPU
joshualittae47aee2016-03-10 13:29:36 -0800468 GrAuditTrail* at = this->getAuditTrail(canvas);
joshualitt40836102016-03-11 11:45:53 -0800469#endif
ethannicholas402cd912016-02-10 12:57:30 -0800470 Json::Value result = Json::Value(Json::objectValue);
471 result[SKDEBUGCANVAS_ATTRIBUTE_VERSION] = Json::Value(SKDEBUGCANVAS_VERSION);
472 Json::Value commands = Json::Value(Json::arrayValue);
ethannicholas0a0520a2016-02-12 12:06:53 -0800473 for (int i = 0; i < this->getSize() && i <= n; i++) {
joshualitte43f7e62016-03-04 10:45:05 -0800474 commands[i] = this->getDrawCommandAt(i)->toJSON(urlDataManager);
475#if SK_SUPPORT_GPU
476 if (at) {
477 // TODO if this is inefficient we could add a method to GrAuditTrail which takes
478 // a Json::Value and is only compiled in this file
479 Json::Value parsedFromString;
480 Json::Reader reader;
481 SkAssertResult(reader.parse(at->toJson(i).c_str(), parsedFromString));
482
483 commands[i][SKDEBUGCANVAS_ATTRIBUTE_AUDITTRAIL] = parsedFromString;
484 }
485#endif
ethannicholas402cd912016-02-10 12:57:30 -0800486 }
joshualittae47aee2016-03-10 13:29:36 -0800487 this->cleanupAuditTrail(canvas);
ethannicholas402cd912016-02-10 12:57:30 -0800488 result[SKDEBUGCANVAS_ATTRIBUTE_COMMANDS] = commands;
489 return result;
490}
491
joshualittae47aee2016-03-10 13:29:36 -0800492Json::Value SkDebugCanvas::toJSONBatchList(int n, SkCanvas* canvas) {
493 this->drawAndCollectBatches(n, canvas);
494
495 Json::Value parsedFromString;
joshualittae47aee2016-03-10 13:29:36 -0800496#if SK_SUPPORT_GPU
joshualitt40836102016-03-11 11:45:53 -0800497 GrAuditTrail* at = this->getAuditTrail(canvas);
joshualittae47aee2016-03-10 13:29:36 -0800498 if (at) {
499 GrAuditTrail::AutoManageBatchList enable(at);
500 Json::Reader reader;
501 SkAssertResult(reader.parse(at->toJson().c_str(), parsedFromString));
502 }
503#endif
504 this->cleanupAuditTrail(canvas);
505 return parsedFromString;
506}
507
fmalita65cdb572015-03-26 07:24:48 -0700508void SkDebugCanvas::setOverdrawViz(bool overdrawViz) {
fmalita65cdb572015-03-26 07:24:48 -0700509 fOverdrawViz = overdrawViz;
fmalita65cdb572015-03-26 07:24:48 -0700510}
511
512void SkDebugCanvas::overrideTexFiltering(bool overrideTexFiltering, SkFilterQuality quality) {
fmalita65cdb572015-03-26 07:24:48 -0700513 fOverrideFilterQuality = overrideTexFiltering;
514 fFilterQuality = quality;
robertphillips@google.com32bbcf82013-10-17 17:56:10 +0000515}
516
reed73603f32016-09-20 08:42:38 -0700517void SkDebugCanvas::onClipPath(const SkPath& path, ClipOp op, ClipEdgeStyle edgeStyle) {
robertphillips@google.com8f90a892014-02-28 18:19:39 +0000518 this->addDrawCommand(new SkClipPathCommand(path, op, kSoft_ClipEdgeStyle == edgeStyle));
chudy@google.com902ebe52012-06-29 14:21:22 +0000519}
520
reed73603f32016-09-20 08:42:38 -0700521void SkDebugCanvas::onClipRect(const SkRect& rect, ClipOp op, ClipEdgeStyle edgeStyle) {
robertphillips@google.com8f90a892014-02-28 18:19:39 +0000522 this->addDrawCommand(new SkClipRectCommand(rect, op, kSoft_ClipEdgeStyle == edgeStyle));
chudy@google.com902ebe52012-06-29 14:21:22 +0000523}
524
reed73603f32016-09-20 08:42:38 -0700525void SkDebugCanvas::onClipRRect(const SkRRect& rrect, ClipOp op, ClipEdgeStyle edgeStyle) {
robertphillips@google.com8f90a892014-02-28 18:19:39 +0000526 this->addDrawCommand(new SkClipRRectCommand(rrect, op, kSoft_ClipEdgeStyle == edgeStyle));
robertphillips@google.com67baba42013-01-02 20:20:31 +0000527}
528
reed73603f32016-09-20 08:42:38 -0700529void SkDebugCanvas::onClipRegion(const SkRegion& region, ClipOp op) {
robertphillips@google.com8f90a892014-02-28 18:19:39 +0000530 this->addDrawCommand(new SkClipRegionCommand(region, op));
chudy@google.com902ebe52012-06-29 14:21:22 +0000531}
532
commit-bot@chromium.org44c48d02014-03-13 20:03:58 +0000533void SkDebugCanvas::didConcat(const SkMatrix& matrix) {
robertphillips9bafc302015-02-13 11:13:00 -0800534 this->addDrawCommand(new SkConcatCommand(matrix));
commit-bot@chromium.org44c48d02014-03-13 20:03:58 +0000535 this->INHERITED::didConcat(matrix);
chudy@google.com902ebe52012-06-29 14:21:22 +0000536}
537
reed97660cc2016-06-28 18:54:19 -0700538void SkDebugCanvas::onDrawAnnotation(const SkRect& rect, const char key[], SkData* value) {
539 this->addDrawCommand(new SkDrawAnnotationCommand(rect, key, sk_ref_sp(value)));
540}
541
reed41af9662015-01-05 07:49:08 -0800542void SkDebugCanvas::onDrawBitmap(const SkBitmap& bitmap, SkScalar left,
543 SkScalar top, const SkPaint* paint) {
commit-bot@chromium.org57f74e02014-03-25 23:31:33 +0000544 this->addDrawCommand(new SkDrawBitmapCommand(bitmap, left, top, paint));
chudy@google.com902ebe52012-06-29 14:21:22 +0000545}
546
reed41af9662015-01-05 07:49:08 -0800547void SkDebugCanvas::onDrawBitmapRect(const SkBitmap& bitmap, const SkRect* src, const SkRect& dst,
reed562fe472015-07-28 07:35:14 -0700548 const SkPaint* paint, SrcRectConstraint constraint) {
reeda5517e22015-07-14 10:54:12 -0700549 this->addDrawCommand(new SkDrawBitmapRectCommand(bitmap, src, dst, paint,
550 (SrcRectConstraint)constraint));
chudy@google.com902ebe52012-06-29 14:21:22 +0000551}
552
reed41af9662015-01-05 07:49:08 -0800553void SkDebugCanvas::onDrawBitmapNine(const SkBitmap& bitmap, const SkIRect& center,
554 const SkRect& dst, const SkPaint* paint) {
commit-bot@chromium.org57f74e02014-03-25 23:31:33 +0000555 this->addDrawCommand(new SkDrawBitmapNineCommand(bitmap, center, dst, paint));
chudy@google.com902ebe52012-06-29 14:21:22 +0000556}
557
reed41af9662015-01-05 07:49:08 -0800558void SkDebugCanvas::onDrawImage(const SkImage* image, SkScalar left, SkScalar top,
559 const SkPaint* paint) {
fmalita651c9202015-07-22 10:23:01 -0700560 this->addDrawCommand(new SkDrawImageCommand(image, left, top, paint));
reed41af9662015-01-05 07:49:08 -0800561}
562
563void SkDebugCanvas::onDrawImageRect(const SkImage* image, const SkRect* src, const SkRect& dst,
reed562fe472015-07-28 07:35:14 -0700564 const SkPaint* paint, SrcRectConstraint constraint) {
fmalita651c9202015-07-22 10:23:01 -0700565 this->addDrawCommand(new SkDrawImageRectCommand(image, src, dst, paint, constraint));
reed41af9662015-01-05 07:49:08 -0800566}
567
reed41af9662015-01-05 07:49:08 -0800568void SkDebugCanvas::onDrawOval(const SkRect& oval, const SkPaint& paint) {
commit-bot@chromium.org57f74e02014-03-25 23:31:33 +0000569 this->addDrawCommand(new SkDrawOvalCommand(oval, paint));
robertphillips@google.com67baba42013-01-02 20:20:31 +0000570}
571
bsalomonac3aa242016-08-19 11:25:19 -0700572void SkDebugCanvas::onDrawArc(const SkRect& oval, SkScalar startAngle, SkScalar sweepAngle,
573 bool useCenter, const SkPaint& paint) {
574 this->addDrawCommand(new SkDrawArcCommand(oval, startAngle, sweepAngle, useCenter, paint));
575}
576
reed41af9662015-01-05 07:49:08 -0800577void SkDebugCanvas::onDrawPaint(const SkPaint& paint) {
commit-bot@chromium.org57f74e02014-03-25 23:31:33 +0000578 this->addDrawCommand(new SkDrawPaintCommand(paint));
chudy@google.com902ebe52012-06-29 14:21:22 +0000579}
580
reed41af9662015-01-05 07:49:08 -0800581void SkDebugCanvas::onDrawPath(const SkPath& path, const SkPaint& paint) {
commit-bot@chromium.org57f74e02014-03-25 23:31:33 +0000582 this->addDrawCommand(new SkDrawPathCommand(path, paint));
chudy@google.com902ebe52012-06-29 14:21:22 +0000583}
584
mtkleinf0f14112014-12-12 08:46:25 -0800585void SkDebugCanvas::onDrawPicture(const SkPicture* picture,
586 const SkMatrix* matrix,
robertphillipsb3f319f2014-08-13 10:46:23 -0700587 const SkPaint* paint) {
fmalita160ebb22015-04-01 20:58:37 -0700588 this->addDrawCommand(new SkBeginDrawPictureCommand(picture, matrix, paint));
ethannicholas891ad662016-02-12 07:15:45 -0800589 SkAutoCanvasMatrixPaint acmp(this, matrix, paint, picture->cullRect());
590 picture->playback(this);
fmalita160ebb22015-04-01 20:58:37 -0700591 this->addDrawCommand(new SkEndDrawPictureCommand(SkToBool(matrix) || SkToBool(paint)));
chudy@google.com902ebe52012-06-29 14:21:22 +0000592}
593
vjiaoblack95302da2016-07-21 10:25:54 -0700594void SkDebugCanvas::onDrawShadowedPicture(const SkPicture* picture,
595 const SkMatrix* matrix,
vjiaoblacke6f5d562016-08-25 06:30:23 -0700596 const SkPaint* paint,
597 const SkShadowParams& params) {
598 this->addDrawCommand(new SkBeginDrawShadowedPictureCommand(picture, matrix, paint, params));
vjiaoblack95302da2016-07-21 10:25:54 -0700599 SkAutoCanvasMatrixPaint acmp(this, matrix, paint, picture->cullRect());
600 picture->playback(this);
601 this->addDrawCommand(new SkEndDrawShadowedPictureCommand(SkToBool(matrix) || SkToBool(paint)));
602}
603
reed41af9662015-01-05 07:49:08 -0800604void SkDebugCanvas::onDrawPoints(PointMode mode, size_t count,
605 const SkPoint pts[], const SkPaint& paint) {
commit-bot@chromium.org57f74e02014-03-25 23:31:33 +0000606 this->addDrawCommand(new SkDrawPointsCommand(mode, count, pts, paint));
chudy@google.com902ebe52012-06-29 14:21:22 +0000607}
608
reed@google.come0d9ce82014-04-23 04:00:17 +0000609void SkDebugCanvas::onDrawPosText(const void* text, size_t byteLength, const SkPoint pos[],
610 const SkPaint& paint) {
commit-bot@chromium.org57f74e02014-03-25 23:31:33 +0000611 this->addDrawCommand(new SkDrawPosTextCommand(text, byteLength, pos, paint));
chudy@google.com902ebe52012-06-29 14:21:22 +0000612}
613
reed@google.come0d9ce82014-04-23 04:00:17 +0000614void SkDebugCanvas::onDrawPosTextH(const void* text, size_t byteLength, const SkScalar xpos[],
615 SkScalar constY, const SkPaint& paint) {
commit-bot@chromium.org57f74e02014-03-25 23:31:33 +0000616 this->addDrawCommand(
commit-bot@chromium.org7a115912013-06-18 20:20:55 +0000617 new SkDrawPosTextHCommand(text, byteLength, xpos, constY, paint));
chudy@google.com902ebe52012-06-29 14:21:22 +0000618}
619
reed41af9662015-01-05 07:49:08 -0800620void SkDebugCanvas::onDrawRect(const SkRect& rect, const SkPaint& paint) {
chudy@google.com902ebe52012-06-29 14:21:22 +0000621 // NOTE(chudy): Messing up when renamed to DrawRect... Why?
commit-bot@chromium.org7a115912013-06-18 20:20:55 +0000622 addDrawCommand(new SkDrawRectCommand(rect, paint));
chudy@google.com902ebe52012-06-29 14:21:22 +0000623}
624
reed41af9662015-01-05 07:49:08 -0800625void SkDebugCanvas::onDrawRRect(const SkRRect& rrect, const SkPaint& paint) {
commit-bot@chromium.org57f74e02014-03-25 23:31:33 +0000626 this->addDrawCommand(new SkDrawRRectCommand(rrect, paint));
robertphillips@google.com67baba42013-01-02 20:20:31 +0000627}
628
commit-bot@chromium.orgab582732014-02-21 12:20:45 +0000629void SkDebugCanvas::onDrawDRRect(const SkRRect& outer, const SkRRect& inner,
630 const SkPaint& paint) {
commit-bot@chromium.org3d305202014-02-24 17:28:55 +0000631 this->addDrawCommand(new SkDrawDRRectCommand(outer, inner, paint));
commit-bot@chromium.orgab582732014-02-21 12:20:45 +0000632}
633
reed@google.come0d9ce82014-04-23 04:00:17 +0000634void SkDebugCanvas::onDrawText(const void* text, size_t byteLength, SkScalar x, SkScalar y,
635 const SkPaint& paint) {
commit-bot@chromium.org57f74e02014-03-25 23:31:33 +0000636 this->addDrawCommand(new SkDrawTextCommand(text, byteLength, x, y, paint));
chudy@google.com902ebe52012-06-29 14:21:22 +0000637}
638
reed@google.come0d9ce82014-04-23 04:00:17 +0000639void SkDebugCanvas::onDrawTextOnPath(const void* text, size_t byteLength, const SkPath& path,
640 const SkMatrix* matrix, const SkPaint& paint) {
commit-bot@chromium.org57f74e02014-03-25 23:31:33 +0000641 this->addDrawCommand(
commit-bot@chromium.org7a115912013-06-18 20:20:55 +0000642 new SkDrawTextOnPathCommand(text, byteLength, path, matrix, paint));
chudy@google.com902ebe52012-06-29 14:21:22 +0000643}
644
reed45561a02016-07-07 12:47:17 -0700645void SkDebugCanvas::onDrawTextRSXform(const void* text, size_t byteLength, const SkRSXform xform[],
646 const SkRect* cull, const SkPaint& paint) {
647 this->addDrawCommand(new SkDrawTextRSXformCommand(text, byteLength, xform, cull, paint));
648}
649
fmalitab7425172014-08-26 07:56:44 -0700650void SkDebugCanvas::onDrawTextBlob(const SkTextBlob* blob, SkScalar x, SkScalar y,
651 const SkPaint& paint) {
fmalita37283c22016-09-13 10:00:23 -0700652 this->addDrawCommand(new SkDrawTextBlobCommand(sk_ref_sp(const_cast<SkTextBlob*>(blob)),
653 x, y, paint));
fmalitab7425172014-08-26 07:56:44 -0700654}
655
robertphillips9bafc302015-02-13 11:13:00 -0800656void SkDebugCanvas::onDrawPatch(const SkPoint cubics[12], const SkColor colors[4],
Mike Reedfaba3712016-11-03 14:45:31 -0400657 const SkPoint texCoords[4], SkBlendMode bmode,
robertphillips9bafc302015-02-13 11:13:00 -0800658 const SkPaint& paint) {
Mike Reed7d954ad2016-10-28 15:42:34 -0400659 this->addDrawCommand(new SkDrawPatchCommand(cubics, colors, texCoords, bmode, paint));
robertphillips9bafc302015-02-13 11:13:00 -0800660}
661
reed41af9662015-01-05 07:49:08 -0800662void SkDebugCanvas::onDrawVertices(VertexMode vmode, int vertexCount, const SkPoint vertices[],
663 const SkPoint texs[], const SkColor colors[],
Mike Reedfaba3712016-11-03 14:45:31 -0400664 SkBlendMode bmode, const uint16_t indices[], int indexCount,
reed41af9662015-01-05 07:49:08 -0800665 const SkPaint& paint) {
commit-bot@chromium.org57f74e02014-03-25 23:31:33 +0000666 this->addDrawCommand(new SkDrawVerticesCommand(vmode, vertexCount, vertices,
Mike Reed7d954ad2016-10-28 15:42:34 -0400667 texs, colors, bmode, indices, indexCount, paint));
chudy@google.com902ebe52012-06-29 14:21:22 +0000668}
669
commit-bot@chromium.orge54a23f2014-03-12 20:21:48 +0000670void SkDebugCanvas::willRestore() {
671 this->addDrawCommand(new SkRestoreCommand());
672 this->INHERITED::willRestore();
chudy@google.com902ebe52012-06-29 14:21:22 +0000673}
674
Florin Malita5f6102d2014-06-30 10:13:28 -0400675void SkDebugCanvas::willSave() {
676 this->addDrawCommand(new SkSaveCommand());
677 this->INHERITED::willSave();
chudy@google.com902ebe52012-06-29 14:21:22 +0000678}
679
reed4960eee2015-12-18 07:09:18 -0800680SkCanvas::SaveLayerStrategy SkDebugCanvas::getSaveLayerStrategy(const SaveLayerRec& rec) {
681 this->addDrawCommand(new SkSaveLayerCommand(rec));
682 (void)this->INHERITED::getSaveLayerStrategy(rec);
commit-bot@chromium.orge54a23f2014-03-12 20:21:48 +0000683 // No need for a full layer.
684 return kNoLayer_SaveLayerStrategy;
chudy@google.com902ebe52012-06-29 14:21:22 +0000685}
686
commit-bot@chromium.org44c48d02014-03-13 20:03:58 +0000687void SkDebugCanvas::didSetMatrix(const SkMatrix& matrix) {
commit-bot@chromium.org57f74e02014-03-25 23:31:33 +0000688 this->addDrawCommand(new SkSetMatrixCommand(matrix));
commit-bot@chromium.org44c48d02014-03-13 20:03:58 +0000689 this->INHERITED::didSetMatrix(matrix);
chudy@google.com902ebe52012-06-29 14:21:22 +0000690}
691
vjiaoblacke5de1302016-07-13 14:05:28 -0700692void SkDebugCanvas::didTranslateZ(SkScalar z) {
vjiaoblack95302da2016-07-21 10:25:54 -0700693#ifdef SK_EXPERIMENTAL_SHADOWING
vjiaoblacke5de1302016-07-13 14:05:28 -0700694 this->addDrawCommand(new SkTranslateZCommand(z));
695 this->INHERITED::didTranslateZ(z);
vjiaoblack95302da2016-07-21 10:25:54 -0700696#endif
vjiaoblacke5de1302016-07-13 14:05:28 -0700697}
698
chudy@google.com902ebe52012-06-29 14:21:22 +0000699void SkDebugCanvas::toggleCommand(int index, bool toggle) {
robertphillips@google.com67baba42013-01-02 20:20:31 +0000700 SkASSERT(index < fCommandVector.count());
701 fCommandVector[index]->setVisible(toggle);
chudy@google.com902ebe52012-06-29 14:21:22 +0000702}
commit-bot@chromium.org2a67e122014-05-19 13:53:10 +0000703
704static const char* gFillTypeStrs[] = {
705 "kWinding_FillType",
706 "kEvenOdd_FillType",
707 "kInverseWinding_FillType",
708 "kInverseEvenOdd_FillType"
709};
710
711static const char* gOpStrs[] = {
scroggo5965b732015-04-07 06:53:21 -0700712 "kDifference_PathOp",
713 "kIntersect_PathOp",
714 "kUnion_PathOp",
commit-bot@chromium.org2a67e122014-05-19 13:53:10 +0000715 "kXor_PathOp",
scroggo5965b732015-04-07 06:53:21 -0700716 "kReverseDifference_PathOp",
commit-bot@chromium.org2a67e122014-05-19 13:53:10 +0000717};
718
719static const char kHTML4SpaceIndent[] = "&nbsp;&nbsp;&nbsp;&nbsp;";
720
721void SkDebugCanvas::outputScalar(SkScalar num) {
722 if (num == (int) num) {
723 fClipStackData.appendf("%d", (int) num);
724 } else {
725 SkString str;
726 str.printf("%1.9g", num);
727 int width = (int) str.size();
728 const char* cStr = str.c_str();
729 while (cStr[width - 1] == '0') {
730 --width;
731 }
732 str.resize(width);
733 fClipStackData.appendf("%sf", str.c_str());
734 }
735}
736
737void SkDebugCanvas::outputPointsCommon(const SkPoint* pts, int count) {
738 for (int index = 0; index < count; ++index) {
739 this->outputScalar(pts[index].fX);
740 fClipStackData.appendf(", ");
741 this->outputScalar(pts[index].fY);
742 if (index + 1 < count) {
743 fClipStackData.appendf(", ");
744 }
745 }
746}
747
748void SkDebugCanvas::outputPoints(const SkPoint* pts, int count) {
749 this->outputPointsCommon(pts, count);
750 fClipStackData.appendf(");<br>");
751}
752
753void SkDebugCanvas::outputConicPoints(const SkPoint* pts, SkScalar weight) {
754 this->outputPointsCommon(pts, 2);
755 fClipStackData.appendf(", ");
756 this->outputScalar(weight);
757 fClipStackData.appendf(");<br>");
758}
759
760void SkDebugCanvas::addPathData(const SkPath& path, const char* pathName) {
761 SkPath::RawIter iter(path);
762 SkPath::FillType fillType = path.getFillType();
763 fClipStackData.appendf("%sSkPath %s;<br>", kHTML4SpaceIndent, pathName);
764 fClipStackData.appendf("%s%s.setFillType(SkPath::%s);<br>", kHTML4SpaceIndent, pathName,
765 gFillTypeStrs[fillType]);
766 iter.setPath(path);
767 uint8_t verb;
768 SkPoint pts[4];
769 while ((verb = iter.next(pts)) != SkPath::kDone_Verb) {
770 switch (verb) {
771 case SkPath::kMove_Verb:
772 fClipStackData.appendf("%s%s.moveTo(", kHTML4SpaceIndent, pathName);
773 this->outputPoints(&pts[0], 1);
774 continue;
775 case SkPath::kLine_Verb:
776 fClipStackData.appendf("%s%s.lineTo(", kHTML4SpaceIndent, pathName);
777 this->outputPoints(&pts[1], 1);
778 break;
779 case SkPath::kQuad_Verb:
780 fClipStackData.appendf("%s%s.quadTo(", kHTML4SpaceIndent, pathName);
781 this->outputPoints(&pts[1], 2);
782 break;
783 case SkPath::kConic_Verb:
784 fClipStackData.appendf("%s%s.conicTo(", kHTML4SpaceIndent, pathName);
785 this->outputConicPoints(&pts[1], iter.conicWeight());
786 break;
787 case SkPath::kCubic_Verb:
788 fClipStackData.appendf("%s%s.cubicTo(", kHTML4SpaceIndent, pathName);
789 this->outputPoints(&pts[1], 3);
790 break;
791 case SkPath::kClose_Verb:
792 fClipStackData.appendf("%s%s.close();<br>", kHTML4SpaceIndent, pathName);
793 break;
794 default:
795 SkDEBUGFAIL("bad verb");
796 return;
797 }
798 }
799}
800
801void SkDebugCanvas::addClipStackData(const SkPath& devPath, const SkPath& operand,
reed73603f32016-09-20 08:42:38 -0700802 SkCanvas::ClipOp elementOp) {
803 if (elementOp == SkCanvas::kReplace_Op) {
commit-bot@chromium.org2a67e122014-05-19 13:53:10 +0000804 if (!lastClipStackData(devPath)) {
805 fSaveDevPath = operand;
806 }
807 fCalledAddStackData = false;
808 } else {
809 fClipStackData.appendf("<br>static void test(skiatest::Reporter* reporter,"
810 " const char* filename) {<br>");
811 addPathData(fCalledAddStackData ? devPath : fSaveDevPath, "path");
812 addPathData(operand, "pathB");
813 fClipStackData.appendf("%stestPathOp(reporter, path, pathB, %s, filename);<br>",
814 kHTML4SpaceIndent, gOpStrs[elementOp]);
815 fClipStackData.appendf("}<br>");
816 fCalledAddStackData = true;
817 }
818}
819
820bool SkDebugCanvas::lastClipStackData(const SkPath& devPath) {
821 if (fCalledAddStackData) {
822 fClipStackData.appendf("<br>");
823 addPathData(devPath, "pathOut");
824 return true;
825 }
826 return false;
827}