blob: 3e401cb244a0d0a3d4a18915c721bb3547268246 [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"
Mike Reedebfce6d2016-12-12 10:02:12 -050014#include "SkClipOpPriv.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"
Robert Phillips22f4a1f2016-12-20 08:57:26 -050019#include "GrRenderTargetContext.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)
Brian Salomon144a5c52016-12-20 16:48:59 -050089 , fDrawGpuOpBounds(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
Mike Reedc1f77742016-12-09 09:00:50 -0500108 this->INHERITED::onClipRect(large, kReplace_SkClipOp, 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
Mike Reedc1f77742016-12-09 09:00:50 -0500156 void clipRect(const SkRect& r, SkClipOp, 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 }
Mike Reedc1f77742016-12-09 09:00:50 -0500163 void clipRRect(const SkRRect& rr, SkClipOp, 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 }
Mike Reedc1f77742016-12-09 09:00:50 -0500170 void clipPath(const SkPath& path, SkClipOp, 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()) {
Mike Reedc1f77742016-12-09 09:00:50 -0500223 canvas->clipRect(windowRect, kReplace_SkClipOp);
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
Brian Salomon144a5c52016-12-20 16:48:59 -0500236 // If we have a GPU backend we can also visualize the op information
joshualitt10d8fc22016-02-29 11:15:06 -0800237 GrAuditTrail* at = nullptr;
Brian Salomon144a5c52016-12-20 16:48:59 -0500238 if (fDrawGpuOpBounds || m != -1) {
joshualittae47aee2016-03-10 13:29:36 -0800239 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
Brian Salomon144a5c52016-12-20 16:48:59 -0500249 // We need to flush any pending operations, or they might combine with commands below.
brianosman1c9f9222016-04-15 11:00:51 -0700250 // 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
Brian Salomon42ad83a2016-12-20 16:14:45 -0500254 GrAuditTrail::AutoCollectOps* acb = nullptr;
joshualitt10d8fc22016-02-29 11:15:06 -0800255 if (at) {
Brian Salomon42ad83a2016-12-20 16:14:45 -0500256 acb = new GrAuditTrail::AutoCollectOps(at, i);
joshualitt10d8fc22016-02-29 11:15:06 -0800257 }
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),
Mike Reedc1f77742016-12-09 09:00:50 -0500283 kReverseDifference_SkClipOp);
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);
Mike Reedc1f77742016-12-09 09:00:50 -0500298 canvas->clipRect(r, kReplace_SkClipOp);
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 }
Mike Reedc1f77742016-12-09 09:00:50 -0500319 SkClipOp elementOp = element->getOp();
commit-bot@chromium.org2a67e122014-05-19 13:53:10 +0000320 this->addClipStackData(devPath, operand, elementOp);
Mike Reedc1f77742016-12-09 09:00:50 -0500321 if (elementOp == kReplace_SkClipOp) {
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
Brian Salomon144a5c52016-12-20 16:48:59 -0500337 // draw any ops if required and issue a full reset onto GrAuditTrail
joshualitt10d8fc22016-02-29 11:15:06 -0800338 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);
Brian Salomon144a5c52016-12-20 16:48:59 -0500346 static const SkColor kCommandOpBounds = SkColorSetARGB(0xC0, 0xE3, 0x1A, 0x1C);
347 static const SkColor kOtherOpBounds = SkColorSetARGB(0xC0, 0xFF, 0x7F, 0x00);
joshualittbdc6b2b2016-03-01 14:22:02 -0800348
Brian Salomon144a5c52016-12-20 16:48:59 -0500349 // get the render target of the top device so we can ignore ops drawn offscreen
Robert Phillips22f4a1f2016-12-20 08:57:26 -0500350 GrRenderTargetContext* rtc = canvas->internal_private_accessTopLayerRenderTargetContext();
351 GrGpuResource::UniqueID rtID = rtc->accessRenderTarget()->uniqueID();
joshualitt1d7decf2016-03-01 07:15:52 -0800352
353 // get the bounding boxes to draw
Brian Salomon42ad83a2016-12-20 16:14:45 -0500354 SkTArray<GrAuditTrail::OpInfo> childrenBounds;
joshualitt46b301d2016-03-02 08:32:37 -0800355 if (m == -1) {
356 at->getBoundsByClientID(&childrenBounds, index);
357 } else {
Brian Salomon144a5c52016-12-20 16:48:59 -0500358 // the client wants us to draw the mth op
Brian Salomon42ad83a2016-12-20 16:14:45 -0500359 at->getBoundsByOpListID(&childrenBounds.push_back(), m);
joshualitt46b301d2016-03-02 08:32:37 -0800360 }
joshualitt10d8fc22016-02-29 11:15:06 -0800361 SkPaint paint;
362 paint.setStyle(SkPaint::kStroke_Style);
363 paint.setStrokeWidth(1);
364 for (int i = 0; i < childrenBounds.count(); i++) {
joshualitt1d7decf2016-03-01 07:15:52 -0800365 if (childrenBounds[i].fRenderTargetUniqueID != rtID) {
366 // offscreen draw, ignore for now
367 continue;
368 }
joshualittbdc6b2b2016-03-01 14:22:02 -0800369 paint.setColor(kTotalBounds);
joshualitt10d8fc22016-02-29 11:15:06 -0800370 canvas->drawRect(childrenBounds[i].fBounds, paint);
Brian Salomon42ad83a2016-12-20 16:14:45 -0500371 for (int j = 0; j < childrenBounds[i].fOps.count(); j++) {
Brian Salomon144a5c52016-12-20 16:48:59 -0500372 const GrAuditTrail::OpInfo::Op& op = childrenBounds[i].fOps[j];
373 if (op.fClientID != index) {
374 paint.setColor(kOtherOpBounds);
joshualitt10d8fc22016-02-29 11:15:06 -0800375 } else {
Brian Salomon144a5c52016-12-20 16:48:59 -0500376 paint.setColor(kCommandOpBounds);
joshualitt10d8fc22016-02-29 11:15:06 -0800377 }
Brian Salomon144a5c52016-12-20 16:48:59 -0500378 canvas->drawRect(op.fBounds, paint);
joshualitt10d8fc22016-02-29 11:15:06 -0800379 }
380 }
joshualitt10d8fc22016-02-29 11:15:06 -0800381 }
joshualitt10d8fc22016-02-29 11:15:06 -0800382#endif
joshualittae47aee2016-03-10 13:29:36 -0800383 this->cleanupAuditTrail(canvas);
chudy@google.com902ebe52012-06-29 14:21:22 +0000384}
385
robertphillips@google.com50c84da2013-04-01 18:18:49 +0000386void SkDebugCanvas::deleteDrawCommandAt(int index) {
387 SkASSERT(index < fCommandVector.count());
388 delete fCommandVector[index];
389 fCommandVector.remove(index);
390}
391
chudy@google.com902ebe52012-06-29 14:21:22 +0000392SkDrawCommand* SkDebugCanvas::getDrawCommandAt(int index) {
robertphillips@google.com67baba42013-01-02 20:20:31 +0000393 SkASSERT(index < fCommandVector.count());
394 return fCommandVector[index];
chudy@google.com902ebe52012-06-29 14:21:22 +0000395}
396
robertphillips@google.com50c84da2013-04-01 18:18:49 +0000397void SkDebugCanvas::setDrawCommandAt(int index, SkDrawCommand* command) {
398 SkASSERT(index < fCommandVector.count());
399 delete fCommandVector[index];
400 fCommandVector[index] = command;
401}
402
fmalita8c89c522014-11-08 16:18:56 -0800403const SkTDArray<SkString*>* SkDebugCanvas::getCommandInfo(int index) const {
robertphillips@google.com67baba42013-01-02 20:20:31 +0000404 SkASSERT(index < fCommandVector.count());
405 return fCommandVector[index]->Info();
chudy@google.com7e4cfbf2012-07-17 15:40:51 +0000406}
chudy@google.com902ebe52012-06-29 14:21:22 +0000407
chudy@google.com7e4cfbf2012-07-17 15:40:51 +0000408bool SkDebugCanvas::getDrawCommandVisibilityAt(int index) {
robertphillips@google.com67baba42013-01-02 20:20:31 +0000409 SkASSERT(index < fCommandVector.count());
410 return fCommandVector[index]->isVisible();
chudy@google.com902ebe52012-06-29 14:21:22 +0000411}
412
robertphillips@google.com8a1cdae2012-11-19 20:44:29 +0000413const SkTDArray <SkDrawCommand*>& SkDebugCanvas::getDrawCommands() const {
robertphillips@google.com67baba42013-01-02 20:20:31 +0000414 return fCommandVector;
chudy@google.com902ebe52012-06-29 14:21:22 +0000415}
416
robertphillips@google.comfebc0ec2013-03-11 22:53:11 +0000417SkTDArray <SkDrawCommand*>& SkDebugCanvas::getDrawCommands() {
418 return fCommandVector;
419}
420
joshualittae47aee2016-03-10 13:29:36 -0800421GrAuditTrail* SkDebugCanvas::getAuditTrail(SkCanvas* canvas) {
422 GrAuditTrail* at = nullptr;
joshualitte43f7e62016-03-04 10:45:05 -0800423#if SK_SUPPORT_GPU
robertphillips175dd9b2016-04-28 14:32:04 -0700424 GrContext* ctx = canvas->getGrContext();
425 if (ctx) {
426 at = ctx->getAuditTrail();
joshualitte43f7e62016-03-04 10:45:05 -0800427 }
428#endif
joshualittae47aee2016-03-10 13:29:36 -0800429 return at;
430}
431
Brian Salomon144a5c52016-12-20 16:48:59 -0500432void SkDebugCanvas::drawAndCollectOps(int n, SkCanvas* canvas) {
joshualitt40836102016-03-11 11:45:53 -0800433#if SK_SUPPORT_GPU
joshualittae47aee2016-03-10 13:29:36 -0800434 GrAuditTrail* at = this->getAuditTrail(canvas);
435 if (at) {
joshualittae47aee2016-03-10 13:29:36 -0800436 // loop over all of the commands and draw them, this is to collect reordering
437 // information
438 for (int i = 0; i < this->getSize() && i <= n; i++) {
Brian Salomon42ad83a2016-12-20 16:14:45 -0500439 GrAuditTrail::AutoCollectOps enable(at, i);
joshualittae47aee2016-03-10 13:29:36 -0800440 fCommandVector[i]->execute(canvas);
441 }
442
443 // in case there is some kind of global reordering
444 {
445 GrAuditTrail::AutoEnable ae(at);
446 canvas->flush();
447 }
joshualittae47aee2016-03-10 13:29:36 -0800448 }
joshualitt40836102016-03-11 11:45:53 -0800449#endif
joshualittae47aee2016-03-10 13:29:36 -0800450}
451
452void SkDebugCanvas::cleanupAuditTrail(SkCanvas* canvas) {
453 GrAuditTrail* at = this->getAuditTrail(canvas);
454 if (at) {
455#if SK_SUPPORT_GPU
456 GrAuditTrail::AutoEnable ae(at);
457 at->fullReset();
458#endif
459 }
460}
461
462Json::Value SkDebugCanvas::toJSON(UrlDataManager& urlDataManager, int n, SkCanvas* canvas) {
Brian Salomon144a5c52016-12-20 16:48:59 -0500463 this->drawAndCollectOps(n, canvas);
halcanary9d524f22016-03-29 09:03:52 -0700464
joshualitte43f7e62016-03-04 10:45:05 -0800465 // now collect json
joshualitt40836102016-03-11 11:45:53 -0800466#if SK_SUPPORT_GPU
joshualittae47aee2016-03-10 13:29:36 -0800467 GrAuditTrail* at = this->getAuditTrail(canvas);
joshualitt40836102016-03-11 11:45:53 -0800468#endif
ethannicholas402cd912016-02-10 12:57:30 -0800469 Json::Value result = Json::Value(Json::objectValue);
470 result[SKDEBUGCANVAS_ATTRIBUTE_VERSION] = Json::Value(SKDEBUGCANVAS_VERSION);
471 Json::Value commands = Json::Value(Json::arrayValue);
ethannicholas0a0520a2016-02-12 12:06:53 -0800472 for (int i = 0; i < this->getSize() && i <= n; i++) {
joshualitte43f7e62016-03-04 10:45:05 -0800473 commands[i] = this->getDrawCommandAt(i)->toJSON(urlDataManager);
474#if SK_SUPPORT_GPU
475 if (at) {
476 // TODO if this is inefficient we could add a method to GrAuditTrail which takes
477 // a Json::Value and is only compiled in this file
478 Json::Value parsedFromString;
479 Json::Reader reader;
480 SkAssertResult(reader.parse(at->toJson(i).c_str(), parsedFromString));
481
482 commands[i][SKDEBUGCANVAS_ATTRIBUTE_AUDITTRAIL] = parsedFromString;
483 }
484#endif
ethannicholas402cd912016-02-10 12:57:30 -0800485 }
joshualittae47aee2016-03-10 13:29:36 -0800486 this->cleanupAuditTrail(canvas);
ethannicholas402cd912016-02-10 12:57:30 -0800487 result[SKDEBUGCANVAS_ATTRIBUTE_COMMANDS] = commands;
488 return result;
489}
490
Brian Salomon144a5c52016-12-20 16:48:59 -0500491Json::Value SkDebugCanvas::toJSONOpList(int n, SkCanvas* canvas) {
492 this->drawAndCollectOps(n, canvas);
joshualittae47aee2016-03-10 13:29:36 -0800493
494 Json::Value parsedFromString;
joshualittae47aee2016-03-10 13:29:36 -0800495#if SK_SUPPORT_GPU
joshualitt40836102016-03-11 11:45:53 -0800496 GrAuditTrail* at = this->getAuditTrail(canvas);
joshualittae47aee2016-03-10 13:29:36 -0800497 if (at) {
Brian Salomon42ad83a2016-12-20 16:14:45 -0500498 GrAuditTrail::AutoManageOpList enable(at);
joshualittae47aee2016-03-10 13:29:36 -0800499 Json::Reader reader;
500 SkAssertResult(reader.parse(at->toJson().c_str(), parsedFromString));
501 }
502#endif
503 this->cleanupAuditTrail(canvas);
504 return parsedFromString;
505}
506
fmalita65cdb572015-03-26 07:24:48 -0700507void SkDebugCanvas::setOverdrawViz(bool overdrawViz) {
fmalita65cdb572015-03-26 07:24:48 -0700508 fOverdrawViz = overdrawViz;
fmalita65cdb572015-03-26 07:24:48 -0700509}
510
511void SkDebugCanvas::overrideTexFiltering(bool overrideTexFiltering, SkFilterQuality quality) {
fmalita65cdb572015-03-26 07:24:48 -0700512 fOverrideFilterQuality = overrideTexFiltering;
513 fFilterQuality = quality;
robertphillips@google.com32bbcf82013-10-17 17:56:10 +0000514}
515
Mike Reedc1f77742016-12-09 09:00:50 -0500516void SkDebugCanvas::onClipPath(const SkPath& path, SkClipOp op, ClipEdgeStyle edgeStyle) {
robertphillips@google.com8f90a892014-02-28 18:19:39 +0000517 this->addDrawCommand(new SkClipPathCommand(path, op, kSoft_ClipEdgeStyle == edgeStyle));
chudy@google.com902ebe52012-06-29 14:21:22 +0000518}
519
Mike Reedc1f77742016-12-09 09:00:50 -0500520void SkDebugCanvas::onClipRect(const SkRect& rect, SkClipOp op, ClipEdgeStyle edgeStyle) {
robertphillips@google.com8f90a892014-02-28 18:19:39 +0000521 this->addDrawCommand(new SkClipRectCommand(rect, op, kSoft_ClipEdgeStyle == edgeStyle));
chudy@google.com902ebe52012-06-29 14:21:22 +0000522}
523
Mike Reedc1f77742016-12-09 09:00:50 -0500524void SkDebugCanvas::onClipRRect(const SkRRect& rrect, SkClipOp op, ClipEdgeStyle edgeStyle) {
robertphillips@google.com8f90a892014-02-28 18:19:39 +0000525 this->addDrawCommand(new SkClipRRectCommand(rrect, op, kSoft_ClipEdgeStyle == edgeStyle));
robertphillips@google.com67baba42013-01-02 20:20:31 +0000526}
527
Mike Reedc1f77742016-12-09 09:00:50 -0500528void SkDebugCanvas::onClipRegion(const SkRegion& region, SkClipOp op) {
robertphillips@google.com8f90a892014-02-28 18:19:39 +0000529 this->addDrawCommand(new SkClipRegionCommand(region, op));
chudy@google.com902ebe52012-06-29 14:21:22 +0000530}
531
commit-bot@chromium.org44c48d02014-03-13 20:03:58 +0000532void SkDebugCanvas::didConcat(const SkMatrix& matrix) {
robertphillips9bafc302015-02-13 11:13:00 -0800533 this->addDrawCommand(new SkConcatCommand(matrix));
commit-bot@chromium.org44c48d02014-03-13 20:03:58 +0000534 this->INHERITED::didConcat(matrix);
chudy@google.com902ebe52012-06-29 14:21:22 +0000535}
536
reed97660cc2016-06-28 18:54:19 -0700537void SkDebugCanvas::onDrawAnnotation(const SkRect& rect, const char key[], SkData* value) {
538 this->addDrawCommand(new SkDrawAnnotationCommand(rect, key, sk_ref_sp(value)));
539}
540
reed41af9662015-01-05 07:49:08 -0800541void SkDebugCanvas::onDrawBitmap(const SkBitmap& bitmap, SkScalar left,
542 SkScalar top, const SkPaint* paint) {
commit-bot@chromium.org57f74e02014-03-25 23:31:33 +0000543 this->addDrawCommand(new SkDrawBitmapCommand(bitmap, left, top, paint));
chudy@google.com902ebe52012-06-29 14:21:22 +0000544}
545
reed41af9662015-01-05 07:49:08 -0800546void SkDebugCanvas::onDrawBitmapRect(const SkBitmap& bitmap, const SkRect* src, const SkRect& dst,
reed562fe472015-07-28 07:35:14 -0700547 const SkPaint* paint, SrcRectConstraint constraint) {
reeda5517e22015-07-14 10:54:12 -0700548 this->addDrawCommand(new SkDrawBitmapRectCommand(bitmap, src, dst, paint,
549 (SrcRectConstraint)constraint));
chudy@google.com902ebe52012-06-29 14:21:22 +0000550}
551
reed41af9662015-01-05 07:49:08 -0800552void SkDebugCanvas::onDrawBitmapNine(const SkBitmap& bitmap, const SkIRect& center,
553 const SkRect& dst, const SkPaint* paint) {
commit-bot@chromium.org57f74e02014-03-25 23:31:33 +0000554 this->addDrawCommand(new SkDrawBitmapNineCommand(bitmap, center, dst, paint));
chudy@google.com902ebe52012-06-29 14:21:22 +0000555}
556
reed41af9662015-01-05 07:49:08 -0800557void SkDebugCanvas::onDrawImage(const SkImage* image, SkScalar left, SkScalar top,
558 const SkPaint* paint) {
fmalita651c9202015-07-22 10:23:01 -0700559 this->addDrawCommand(new SkDrawImageCommand(image, left, top, paint));
reed41af9662015-01-05 07:49:08 -0800560}
561
562void SkDebugCanvas::onDrawImageRect(const SkImage* image, const SkRect* src, const SkRect& dst,
reed562fe472015-07-28 07:35:14 -0700563 const SkPaint* paint, SrcRectConstraint constraint) {
fmalita651c9202015-07-22 10:23:01 -0700564 this->addDrawCommand(new SkDrawImageRectCommand(image, src, dst, paint, constraint));
reed41af9662015-01-05 07:49:08 -0800565}
566
reed41af9662015-01-05 07:49:08 -0800567void SkDebugCanvas::onDrawOval(const SkRect& oval, const SkPaint& paint) {
commit-bot@chromium.org57f74e02014-03-25 23:31:33 +0000568 this->addDrawCommand(new SkDrawOvalCommand(oval, paint));
robertphillips@google.com67baba42013-01-02 20:20:31 +0000569}
570
bsalomonac3aa242016-08-19 11:25:19 -0700571void SkDebugCanvas::onDrawArc(const SkRect& oval, SkScalar startAngle, SkScalar sweepAngle,
572 bool useCenter, const SkPaint& paint) {
573 this->addDrawCommand(new SkDrawArcCommand(oval, startAngle, sweepAngle, useCenter, paint));
574}
575
reed41af9662015-01-05 07:49:08 -0800576void SkDebugCanvas::onDrawPaint(const SkPaint& paint) {
commit-bot@chromium.org57f74e02014-03-25 23:31:33 +0000577 this->addDrawCommand(new SkDrawPaintCommand(paint));
chudy@google.com902ebe52012-06-29 14:21:22 +0000578}
579
reed41af9662015-01-05 07:49:08 -0800580void SkDebugCanvas::onDrawPath(const SkPath& path, const SkPaint& paint) {
commit-bot@chromium.org57f74e02014-03-25 23:31:33 +0000581 this->addDrawCommand(new SkDrawPathCommand(path, paint));
chudy@google.com902ebe52012-06-29 14:21:22 +0000582}
583
mtkleinf0f14112014-12-12 08:46:25 -0800584void SkDebugCanvas::onDrawPicture(const SkPicture* picture,
585 const SkMatrix* matrix,
robertphillipsb3f319f2014-08-13 10:46:23 -0700586 const SkPaint* paint) {
fmalita160ebb22015-04-01 20:58:37 -0700587 this->addDrawCommand(new SkBeginDrawPictureCommand(picture, matrix, paint));
ethannicholas891ad662016-02-12 07:15:45 -0800588 SkAutoCanvasMatrixPaint acmp(this, matrix, paint, picture->cullRect());
589 picture->playback(this);
fmalita160ebb22015-04-01 20:58:37 -0700590 this->addDrawCommand(new SkEndDrawPictureCommand(SkToBool(matrix) || SkToBool(paint)));
chudy@google.com902ebe52012-06-29 14:21:22 +0000591}
592
vjiaoblack95302da2016-07-21 10:25:54 -0700593void SkDebugCanvas::onDrawShadowedPicture(const SkPicture* picture,
594 const SkMatrix* matrix,
vjiaoblacke6f5d562016-08-25 06:30:23 -0700595 const SkPaint* paint,
596 const SkShadowParams& params) {
597 this->addDrawCommand(new SkBeginDrawShadowedPictureCommand(picture, matrix, paint, params));
vjiaoblack95302da2016-07-21 10:25:54 -0700598 SkAutoCanvasMatrixPaint acmp(this, matrix, paint, picture->cullRect());
599 picture->playback(this);
600 this->addDrawCommand(new SkEndDrawShadowedPictureCommand(SkToBool(matrix) || SkToBool(paint)));
601}
602
reed41af9662015-01-05 07:49:08 -0800603void SkDebugCanvas::onDrawPoints(PointMode mode, size_t count,
604 const SkPoint pts[], const SkPaint& paint) {
commit-bot@chromium.org57f74e02014-03-25 23:31:33 +0000605 this->addDrawCommand(new SkDrawPointsCommand(mode, count, pts, paint));
chudy@google.com902ebe52012-06-29 14:21:22 +0000606}
607
reed@google.come0d9ce82014-04-23 04:00:17 +0000608void SkDebugCanvas::onDrawPosText(const void* text, size_t byteLength, const SkPoint pos[],
609 const SkPaint& paint) {
commit-bot@chromium.org57f74e02014-03-25 23:31:33 +0000610 this->addDrawCommand(new SkDrawPosTextCommand(text, byteLength, pos, paint));
chudy@google.com902ebe52012-06-29 14:21:22 +0000611}
612
reed@google.come0d9ce82014-04-23 04:00:17 +0000613void SkDebugCanvas::onDrawPosTextH(const void* text, size_t byteLength, const SkScalar xpos[],
614 SkScalar constY, const SkPaint& paint) {
commit-bot@chromium.org57f74e02014-03-25 23:31:33 +0000615 this->addDrawCommand(
commit-bot@chromium.org7a115912013-06-18 20:20:55 +0000616 new SkDrawPosTextHCommand(text, byteLength, xpos, constY, paint));
chudy@google.com902ebe52012-06-29 14:21:22 +0000617}
618
reed41af9662015-01-05 07:49:08 -0800619void SkDebugCanvas::onDrawRect(const SkRect& rect, const SkPaint& paint) {
chudy@google.com902ebe52012-06-29 14:21:22 +0000620 // NOTE(chudy): Messing up when renamed to DrawRect... Why?
commit-bot@chromium.org7a115912013-06-18 20:20:55 +0000621 addDrawCommand(new SkDrawRectCommand(rect, paint));
chudy@google.com902ebe52012-06-29 14:21:22 +0000622}
623
reed41af9662015-01-05 07:49:08 -0800624void SkDebugCanvas::onDrawRRect(const SkRRect& rrect, const SkPaint& paint) {
commit-bot@chromium.org57f74e02014-03-25 23:31:33 +0000625 this->addDrawCommand(new SkDrawRRectCommand(rrect, paint));
robertphillips@google.com67baba42013-01-02 20:20:31 +0000626}
627
commit-bot@chromium.orgab582732014-02-21 12:20:45 +0000628void SkDebugCanvas::onDrawDRRect(const SkRRect& outer, const SkRRect& inner,
629 const SkPaint& paint) {
commit-bot@chromium.org3d305202014-02-24 17:28:55 +0000630 this->addDrawCommand(new SkDrawDRRectCommand(outer, inner, paint));
commit-bot@chromium.orgab582732014-02-21 12:20:45 +0000631}
632
reed@google.come0d9ce82014-04-23 04:00:17 +0000633void SkDebugCanvas::onDrawText(const void* text, size_t byteLength, SkScalar x, SkScalar y,
634 const SkPaint& paint) {
commit-bot@chromium.org57f74e02014-03-25 23:31:33 +0000635 this->addDrawCommand(new SkDrawTextCommand(text, byteLength, x, y, paint));
chudy@google.com902ebe52012-06-29 14:21:22 +0000636}
637
reed@google.come0d9ce82014-04-23 04:00:17 +0000638void SkDebugCanvas::onDrawTextOnPath(const void* text, size_t byteLength, const SkPath& path,
639 const SkMatrix* matrix, const SkPaint& paint) {
commit-bot@chromium.org57f74e02014-03-25 23:31:33 +0000640 this->addDrawCommand(
commit-bot@chromium.org7a115912013-06-18 20:20:55 +0000641 new SkDrawTextOnPathCommand(text, byteLength, path, matrix, paint));
chudy@google.com902ebe52012-06-29 14:21:22 +0000642}
643
reed45561a02016-07-07 12:47:17 -0700644void SkDebugCanvas::onDrawTextRSXform(const void* text, size_t byteLength, const SkRSXform xform[],
645 const SkRect* cull, const SkPaint& paint) {
646 this->addDrawCommand(new SkDrawTextRSXformCommand(text, byteLength, xform, cull, paint));
647}
648
fmalitab7425172014-08-26 07:56:44 -0700649void SkDebugCanvas::onDrawTextBlob(const SkTextBlob* blob, SkScalar x, SkScalar y,
650 const SkPaint& paint) {
fmalita37283c22016-09-13 10:00:23 -0700651 this->addDrawCommand(new SkDrawTextBlobCommand(sk_ref_sp(const_cast<SkTextBlob*>(blob)),
652 x, y, paint));
fmalitab7425172014-08-26 07:56:44 -0700653}
654
robertphillips9bafc302015-02-13 11:13:00 -0800655void SkDebugCanvas::onDrawPatch(const SkPoint cubics[12], const SkColor colors[4],
Mike Reedfaba3712016-11-03 14:45:31 -0400656 const SkPoint texCoords[4], SkBlendMode bmode,
robertphillips9bafc302015-02-13 11:13:00 -0800657 const SkPaint& paint) {
Mike Reed7d954ad2016-10-28 15:42:34 -0400658 this->addDrawCommand(new SkDrawPatchCommand(cubics, colors, texCoords, bmode, paint));
robertphillips9bafc302015-02-13 11:13:00 -0800659}
660
reed41af9662015-01-05 07:49:08 -0800661void SkDebugCanvas::onDrawVertices(VertexMode vmode, int vertexCount, const SkPoint vertices[],
662 const SkPoint texs[], const SkColor colors[],
Mike Reedfaba3712016-11-03 14:45:31 -0400663 SkBlendMode bmode, const uint16_t indices[], int indexCount,
reed41af9662015-01-05 07:49:08 -0800664 const SkPaint& paint) {
commit-bot@chromium.org57f74e02014-03-25 23:31:33 +0000665 this->addDrawCommand(new SkDrawVerticesCommand(vmode, vertexCount, vertices,
Mike Reed7d954ad2016-10-28 15:42:34 -0400666 texs, colors, bmode, indices, indexCount, paint));
chudy@google.com902ebe52012-06-29 14:21:22 +0000667}
668
commit-bot@chromium.orge54a23f2014-03-12 20:21:48 +0000669void SkDebugCanvas::willRestore() {
670 this->addDrawCommand(new SkRestoreCommand());
671 this->INHERITED::willRestore();
chudy@google.com902ebe52012-06-29 14:21:22 +0000672}
673
Florin Malita5f6102d2014-06-30 10:13:28 -0400674void SkDebugCanvas::willSave() {
675 this->addDrawCommand(new SkSaveCommand());
676 this->INHERITED::willSave();
chudy@google.com902ebe52012-06-29 14:21:22 +0000677}
678
reed4960eee2015-12-18 07:09:18 -0800679SkCanvas::SaveLayerStrategy SkDebugCanvas::getSaveLayerStrategy(const SaveLayerRec& rec) {
680 this->addDrawCommand(new SkSaveLayerCommand(rec));
681 (void)this->INHERITED::getSaveLayerStrategy(rec);
commit-bot@chromium.orge54a23f2014-03-12 20:21:48 +0000682 // No need for a full layer.
683 return kNoLayer_SaveLayerStrategy;
chudy@google.com902ebe52012-06-29 14:21:22 +0000684}
685
commit-bot@chromium.org44c48d02014-03-13 20:03:58 +0000686void SkDebugCanvas::didSetMatrix(const SkMatrix& matrix) {
commit-bot@chromium.org57f74e02014-03-25 23:31:33 +0000687 this->addDrawCommand(new SkSetMatrixCommand(matrix));
commit-bot@chromium.org44c48d02014-03-13 20:03:58 +0000688 this->INHERITED::didSetMatrix(matrix);
chudy@google.com902ebe52012-06-29 14:21:22 +0000689}
690
vjiaoblacke5de1302016-07-13 14:05:28 -0700691void SkDebugCanvas::didTranslateZ(SkScalar z) {
vjiaoblack95302da2016-07-21 10:25:54 -0700692#ifdef SK_EXPERIMENTAL_SHADOWING
vjiaoblacke5de1302016-07-13 14:05:28 -0700693 this->addDrawCommand(new SkTranslateZCommand(z));
694 this->INHERITED::didTranslateZ(z);
vjiaoblack95302da2016-07-21 10:25:54 -0700695#endif
vjiaoblacke5de1302016-07-13 14:05:28 -0700696}
697
chudy@google.com902ebe52012-06-29 14:21:22 +0000698void SkDebugCanvas::toggleCommand(int index, bool toggle) {
robertphillips@google.com67baba42013-01-02 20:20:31 +0000699 SkASSERT(index < fCommandVector.count());
700 fCommandVector[index]->setVisible(toggle);
chudy@google.com902ebe52012-06-29 14:21:22 +0000701}
commit-bot@chromium.org2a67e122014-05-19 13:53:10 +0000702
703static const char* gFillTypeStrs[] = {
704 "kWinding_FillType",
705 "kEvenOdd_FillType",
706 "kInverseWinding_FillType",
707 "kInverseEvenOdd_FillType"
708};
709
710static const char* gOpStrs[] = {
scroggo5965b732015-04-07 06:53:21 -0700711 "kDifference_PathOp",
712 "kIntersect_PathOp",
713 "kUnion_PathOp",
commit-bot@chromium.org2a67e122014-05-19 13:53:10 +0000714 "kXor_PathOp",
scroggo5965b732015-04-07 06:53:21 -0700715 "kReverseDifference_PathOp",
commit-bot@chromium.org2a67e122014-05-19 13:53:10 +0000716};
717
718static const char kHTML4SpaceIndent[] = "&nbsp;&nbsp;&nbsp;&nbsp;";
719
720void SkDebugCanvas::outputScalar(SkScalar num) {
721 if (num == (int) num) {
722 fClipStackData.appendf("%d", (int) num);
723 } else {
724 SkString str;
725 str.printf("%1.9g", num);
726 int width = (int) str.size();
727 const char* cStr = str.c_str();
728 while (cStr[width - 1] == '0') {
729 --width;
730 }
731 str.resize(width);
732 fClipStackData.appendf("%sf", str.c_str());
733 }
734}
735
736void SkDebugCanvas::outputPointsCommon(const SkPoint* pts, int count) {
737 for (int index = 0; index < count; ++index) {
738 this->outputScalar(pts[index].fX);
739 fClipStackData.appendf(", ");
740 this->outputScalar(pts[index].fY);
741 if (index + 1 < count) {
742 fClipStackData.appendf(", ");
743 }
744 }
745}
746
747void SkDebugCanvas::outputPoints(const SkPoint* pts, int count) {
748 this->outputPointsCommon(pts, count);
749 fClipStackData.appendf(");<br>");
750}
751
752void SkDebugCanvas::outputConicPoints(const SkPoint* pts, SkScalar weight) {
753 this->outputPointsCommon(pts, 2);
754 fClipStackData.appendf(", ");
755 this->outputScalar(weight);
756 fClipStackData.appendf(");<br>");
757}
758
759void SkDebugCanvas::addPathData(const SkPath& path, const char* pathName) {
760 SkPath::RawIter iter(path);
761 SkPath::FillType fillType = path.getFillType();
762 fClipStackData.appendf("%sSkPath %s;<br>", kHTML4SpaceIndent, pathName);
763 fClipStackData.appendf("%s%s.setFillType(SkPath::%s);<br>", kHTML4SpaceIndent, pathName,
764 gFillTypeStrs[fillType]);
765 iter.setPath(path);
766 uint8_t verb;
767 SkPoint pts[4];
768 while ((verb = iter.next(pts)) != SkPath::kDone_Verb) {
769 switch (verb) {
770 case SkPath::kMove_Verb:
771 fClipStackData.appendf("%s%s.moveTo(", kHTML4SpaceIndent, pathName);
772 this->outputPoints(&pts[0], 1);
773 continue;
774 case SkPath::kLine_Verb:
775 fClipStackData.appendf("%s%s.lineTo(", kHTML4SpaceIndent, pathName);
776 this->outputPoints(&pts[1], 1);
777 break;
778 case SkPath::kQuad_Verb:
779 fClipStackData.appendf("%s%s.quadTo(", kHTML4SpaceIndent, pathName);
780 this->outputPoints(&pts[1], 2);
781 break;
782 case SkPath::kConic_Verb:
783 fClipStackData.appendf("%s%s.conicTo(", kHTML4SpaceIndent, pathName);
784 this->outputConicPoints(&pts[1], iter.conicWeight());
785 break;
786 case SkPath::kCubic_Verb:
787 fClipStackData.appendf("%s%s.cubicTo(", kHTML4SpaceIndent, pathName);
788 this->outputPoints(&pts[1], 3);
789 break;
790 case SkPath::kClose_Verb:
791 fClipStackData.appendf("%s%s.close();<br>", kHTML4SpaceIndent, pathName);
792 break;
793 default:
794 SkDEBUGFAIL("bad verb");
795 return;
796 }
797 }
798}
799
800void SkDebugCanvas::addClipStackData(const SkPath& devPath, const SkPath& operand,
Mike Reedc1f77742016-12-09 09:00:50 -0500801 SkClipOp elementOp) {
802 if (elementOp == kReplace_SkClipOp) {
commit-bot@chromium.org2a67e122014-05-19 13:53:10 +0000803 if (!lastClipStackData(devPath)) {
804 fSaveDevPath = operand;
805 }
806 fCalledAddStackData = false;
807 } else {
808 fClipStackData.appendf("<br>static void test(skiatest::Reporter* reporter,"
809 " const char* filename) {<br>");
810 addPathData(fCalledAddStackData ? devPath : fSaveDevPath, "path");
811 addPathData(operand, "pathB");
812 fClipStackData.appendf("%stestPathOp(reporter, path, pathB, %s, filename);<br>",
Mike Reedebfce6d2016-12-12 10:02:12 -0500813 kHTML4SpaceIndent, gOpStrs[static_cast<int>(elementOp)]);
commit-bot@chromium.org2a67e122014-05-19 13:53:10 +0000814 fClipStackData.appendf("}<br>");
815 fCalledAddStackData = true;
816 }
817}
818
819bool SkDebugCanvas::lastClipStackData(const SkPath& devPath) {
820 if (fCalledAddStackData) {
821 fClipStackData.appendf("<br>");
822 addPathData(devPath, "pathOut");
823 return true;
824 }
825 return false;
826}