blob: c9d18eeca4ce97484543c1fce4d812ccb221b516 [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
Ravi Mistry99c97962016-12-21 22:41:03 +0000209void SkDebugCanvas::drawTo(SkCanvas* originalCanvas, 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
Ravi Mistry99c97962016-12-21 22:41:03 +0000213 int saveCount = originalCanvas->save();
kkinnunen26a00de2015-01-13 23:09:19 -0800214
Ravi Mistry99c97962016-12-21 22:41:03 +0000215 SkRect windowRect = SkRect::MakeWH(SkIntToScalar(originalCanvas->getBaseLayerSize().width()),
216 SkIntToScalar(originalCanvas->getBaseLayerSize().height()));
chudy@google.com830b8792012-08-01 15:57:52 +0000217
commit-bot@chromium.org2a67e122014-05-19 13:53:10 +0000218 bool pathOpsMode = getAllowSimplifyClip();
Ravi Mistry99c97962016-12-21 22:41:03 +0000219 originalCanvas->setAllowSimplifyClip(pathOpsMode);
220 originalCanvas->clear(SK_ColorWHITE);
221 originalCanvas->resetMatrix();
kkinnunen26a00de2015-01-13 23:09:19 -0800222 if (!windowRect.isEmpty()) {
Ravi Mistry99c97962016-12-21 22:41:03 +0000223 originalCanvas->clipRect(windowRect, kReplace_SkClipOp);
commit-bot@chromium.orga27622c2013-08-05 16:31:27 +0000224 }
Ravi Mistry99c97962016-12-21 22:41:03 +0000225 this->applyUserTransform(originalCanvas);
robertphillips@google.comf4741c12013-02-06 20:13:54 +0000226
Ravi Mistry99c97962016-12-21 22:41:03 +0000227 DebugPaintFilterCanvas filterCanvas(originalCanvas, fOverdrawViz, fOverrideFilterQuality,
228 fFilterQuality);
chudy@google.com830b8792012-08-01 15:57:52 +0000229
commit-bot@chromium.org768ac852014-03-03 16:32:17 +0000230 if (fMegaVizMode) {
commit-bot@chromium.org1643b2c2014-03-03 23:25:41 +0000231 this->markActiveCommands(index);
commit-bot@chromium.org768ac852014-03-03 16:32:17 +0000232 }
halcanary9d524f22016-03-29 09:03:52 -0700233
joshualitt40836102016-03-11 11:45:53 -0800234#if SK_SUPPORT_GPU
Brian Salomon144a5c52016-12-20 16:48:59 -0500235 // If we have a GPU backend we can also visualize the op information
joshualitt10d8fc22016-02-29 11:15:06 -0800236 GrAuditTrail* at = nullptr;
Brian Salomon144a5c52016-12-20 16:48:59 -0500237 if (fDrawGpuOpBounds || m != -1) {
Ravi Mistry99c97962016-12-21 22:41:03 +0000238 // The audit trail must be obtained from the original canvas.
239 at = this->getAuditTrail(originalCanvas);
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) {
Ravi Mistry99c97962016-12-21 22:41:03 +0000245 filterCanvas.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.
Ravi Mistry99c97962016-12-21 22:41:03 +0000252 filterCanvas.flush();
brianosman1c9f9222016-04-15 11:00:51 -0700253
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
Ravi Mistry99c97962016-12-21 22:41:03 +0000266 fCommandVector[i]->vizExecute(&filterCanvas);
commit-bot@chromium.org768ac852014-03-03 16:32:17 +0000267 } else {
robertphillips70171682014-10-16 14:28:28 -0700268 fCommandVector[i]->setUserMatrix(fUserMatrix);
Ravi Mistry99c97962016-12-21 22:41:03 +0000269 fCommandVector[i]->execute(&filterCanvas);
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) {
Ravi Mistry99c97962016-12-21 22:41:03 +0000280 filterCanvas.save();
ethannicholas0a0520a2016-02-12 12:06:53 -0800281 #define LARGE_COORD 1000000000
Ravi Mistry99c97962016-12-21 22:41:03 +0000282 filterCanvas.clipRect(
283 SkRect::MakeLTRB(-LARGE_COORD, -LARGE_COORD, LARGE_COORD, LARGE_COORD),
284 kReverseDifference_SkClipOp);
ethannicholas0a0520a2016-02-12 12:06:53 -0800285 SkPaint clipPaint;
286 clipPaint.setColor(fClipVizColor);
Ravi Mistry99c97962016-12-21 22:41:03 +0000287 filterCanvas.drawPaint(clipPaint);
288 filterCanvas.restore();
ethannicholas0a0520a2016-02-12 12:06:53 -0800289 }
290
commit-bot@chromium.org768ac852014-03-03 16:32:17 +0000291 if (fMegaVizMode) {
Ravi Mistry99c97962016-12-21 22:41:03 +0000292 filterCanvas.save();
commit-bot@chromium.org768ac852014-03-03 16:32:17 +0000293 // nuke the CTM
Ravi Mistry99c97962016-12-21 22:41:03 +0000294 filterCanvas.resetMatrix();
commit-bot@chromium.org768ac852014-03-03 16:32:17 +0000295 // turn off clipping
kkinnunen26e54002015-01-05 12:58:56 -0800296 if (!windowRect.isEmpty()) {
297 SkRect r = windowRect;
298 r.outset(SK_Scalar1, SK_Scalar1);
Ravi Mistry99c97962016-12-21 22:41:03 +0000299 filterCanvas.clipRect(r, kReplace_SkClipOp);
kkinnunen26e54002015-01-05 12:58:56 -0800300 }
commit-bot@chromium.org768ac852014-03-03 16:32:17 +0000301 // visualize existing clips
Ravi Mistry99c97962016-12-21 22:41:03 +0000302 SkDebugClipVisitor visitor(&filterCanvas);
commit-bot@chromium.org768ac852014-03-03 16:32:17 +0000303
Ravi Mistry99c97962016-12-21 22:41:03 +0000304 filterCanvas.replayClips(&visitor);
commit-bot@chromium.org768ac852014-03-03 16:32:17 +0000305
Ravi Mistry99c97962016-12-21 22:41:03 +0000306 filterCanvas.restore();
commit-bot@chromium.org768ac852014-03-03 16:32:17 +0000307 }
commit-bot@chromium.org2a67e122014-05-19 13:53:10 +0000308 if (pathOpsMode) {
309 this->resetClipStackData();
Cary Clarkbaf06bc2017-03-03 20:27:13 +0000310 const SkClipStack* clipStack = filterCanvas.getClipStack();
commit-bot@chromium.org2a67e122014-05-19 13:53:10 +0000311 SkClipStack::Iter iter(*clipStack, SkClipStack::Iter::kBottom_IterStart);
312 const SkClipStack::Element* element;
313 SkPath devPath;
314 while ((element = iter.next())) {
315 SkClipStack::Element::Type type = element->getType();
316 SkPath operand;
317 if (type != SkClipStack::Element::kEmpty_Type) {
318 element->asPath(&operand);
319 }
Mike Reedc1f77742016-12-09 09:00:50 -0500320 SkClipOp elementOp = element->getOp();
commit-bot@chromium.org2a67e122014-05-19 13:53:10 +0000321 this->addClipStackData(devPath, operand, elementOp);
Mike Reedc1f77742016-12-09 09:00:50 -0500322 if (elementOp == kReplace_SkClipOp) {
commit-bot@chromium.org2a67e122014-05-19 13:53:10 +0000323 devPath = operand;
324 } else {
325 Op(devPath, operand, (SkPathOp) elementOp, &devPath);
326 }
327 }
328 this->lastClipStackData(devPath);
329 }
Ravi Mistry99c97962016-12-21 22:41:03 +0000330 fMatrix = filterCanvas.getTotalMatrix();
Mike Reed918e1442017-01-23 11:39:45 -0500331 fClip = filterCanvas.getDeviceClipBounds();
Ravi Mistry99c97962016-12-21 22:41:03 +0000332 filterCanvas.restoreToCount(saveCount);
fmalita65cdb572015-03-26 07:24:48 -0700333
joshualitt10d8fc22016-02-29 11:15:06 -0800334#if SK_SUPPORT_GPU
Brian Salomon144a5c52016-12-20 16:48:59 -0500335 // draw any ops if required and issue a full reset onto GrAuditTrail
joshualitt10d8fc22016-02-29 11:15:06 -0800336 if (at) {
joshualitte43f7e62016-03-04 10:45:05 -0800337 // just in case there is global reordering, we flush the canvas before querying
338 // GrAuditTrail
joshualittb0666ad2016-03-08 10:43:41 -0800339 GrAuditTrail::AutoEnable ae(at);
Ravi Mistry99c97962016-12-21 22:41:03 +0000340 filterCanvas.flush();
joshualitte43f7e62016-03-04 10:45:05 -0800341
joshualittbdc6b2b2016-03-01 14:22:02 -0800342 // we pick three colorblind-safe colors, 75% alpha
343 static const SkColor kTotalBounds = SkColorSetARGB(0xC0, 0x6A, 0x3D, 0x9A);
Brian Salomon144a5c52016-12-20 16:48:59 -0500344 static const SkColor kCommandOpBounds = SkColorSetARGB(0xC0, 0xE3, 0x1A, 0x1C);
345 static const SkColor kOtherOpBounds = SkColorSetARGB(0xC0, 0xFF, 0x7F, 0x00);
joshualittbdc6b2b2016-03-01 14:22:02 -0800346
Ravi Mistry99c97962016-12-21 22:41:03 +0000347 // get the render target of the top device (from the original canvas) so we can ignore ops
348 // drawn offscreen
349 GrRenderTargetContext* rtc =
350 originalCanvas->internal_private_accessTopLayerRenderTargetContext();
Robert Phillips22f4a1f2016-12-20 08:57:26 -0500351 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);
Ravi Mistry99c97962016-12-21 22:41:03 +0000370 filterCanvas.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 }
Ravi Mistry99c97962016-12-21 22:41:03 +0000378 filterCanvas.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
Ravi Mistry99c97962016-12-21 22:41:03 +0000383 this->cleanupAuditTrail(originalCanvas);
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
Stan Ilievac42aeb2017-01-12 16:20:50 -0500562void SkDebugCanvas::onDrawImageLattice(const SkImage* image, const Lattice& lattice,
563 const SkRect& dst, const SkPaint* paint) {
564 this->addDrawCommand(new SkDrawImageLatticeCommand(image, lattice, dst, paint));
565}
566
reed41af9662015-01-05 07:49:08 -0800567void SkDebugCanvas::onDrawImageRect(const SkImage* image, const SkRect* src, const SkRect& dst,
reed562fe472015-07-28 07:35:14 -0700568 const SkPaint* paint, SrcRectConstraint constraint) {
fmalita651c9202015-07-22 10:23:01 -0700569 this->addDrawCommand(new SkDrawImageRectCommand(image, src, dst, paint, constraint));
reed41af9662015-01-05 07:49:08 -0800570}
571
reed41af9662015-01-05 07:49:08 -0800572void SkDebugCanvas::onDrawOval(const SkRect& oval, const SkPaint& paint) {
commit-bot@chromium.org57f74e02014-03-25 23:31:33 +0000573 this->addDrawCommand(new SkDrawOvalCommand(oval, paint));
robertphillips@google.com67baba42013-01-02 20:20:31 +0000574}
575
bsalomonac3aa242016-08-19 11:25:19 -0700576void SkDebugCanvas::onDrawArc(const SkRect& oval, SkScalar startAngle, SkScalar sweepAngle,
577 bool useCenter, const SkPaint& paint) {
578 this->addDrawCommand(new SkDrawArcCommand(oval, startAngle, sweepAngle, useCenter, paint));
579}
580
reed41af9662015-01-05 07:49:08 -0800581void SkDebugCanvas::onDrawPaint(const SkPaint& paint) {
commit-bot@chromium.org57f74e02014-03-25 23:31:33 +0000582 this->addDrawCommand(new SkDrawPaintCommand(paint));
chudy@google.com902ebe52012-06-29 14:21:22 +0000583}
584
reed41af9662015-01-05 07:49:08 -0800585void SkDebugCanvas::onDrawPath(const SkPath& path, const SkPaint& paint) {
commit-bot@chromium.org57f74e02014-03-25 23:31:33 +0000586 this->addDrawCommand(new SkDrawPathCommand(path, paint));
chudy@google.com902ebe52012-06-29 14:21:22 +0000587}
588
mtkleinf0f14112014-12-12 08:46:25 -0800589void SkDebugCanvas::onDrawPicture(const SkPicture* picture,
590 const SkMatrix* matrix,
robertphillipsb3f319f2014-08-13 10:46:23 -0700591 const SkPaint* paint) {
fmalita160ebb22015-04-01 20:58:37 -0700592 this->addDrawCommand(new SkBeginDrawPictureCommand(picture, matrix, paint));
ethannicholas891ad662016-02-12 07:15:45 -0800593 SkAutoCanvasMatrixPaint acmp(this, matrix, paint, picture->cullRect());
594 picture->playback(this);
fmalita160ebb22015-04-01 20:58:37 -0700595 this->addDrawCommand(new SkEndDrawPictureCommand(SkToBool(matrix) || SkToBool(paint)));
chudy@google.com902ebe52012-06-29 14:21:22 +0000596}
597
vjiaoblack95302da2016-07-21 10:25:54 -0700598void SkDebugCanvas::onDrawShadowedPicture(const SkPicture* picture,
599 const SkMatrix* matrix,
vjiaoblacke6f5d562016-08-25 06:30:23 -0700600 const SkPaint* paint,
601 const SkShadowParams& params) {
602 this->addDrawCommand(new SkBeginDrawShadowedPictureCommand(picture, matrix, paint, params));
vjiaoblack95302da2016-07-21 10:25:54 -0700603 SkAutoCanvasMatrixPaint acmp(this, matrix, paint, picture->cullRect());
604 picture->playback(this);
605 this->addDrawCommand(new SkEndDrawShadowedPictureCommand(SkToBool(matrix) || SkToBool(paint)));
606}
607
reed41af9662015-01-05 07:49:08 -0800608void SkDebugCanvas::onDrawPoints(PointMode mode, size_t count,
609 const SkPoint pts[], const SkPaint& paint) {
commit-bot@chromium.org57f74e02014-03-25 23:31:33 +0000610 this->addDrawCommand(new SkDrawPointsCommand(mode, count, pts, paint));
chudy@google.com902ebe52012-06-29 14:21:22 +0000611}
612
reed@google.come0d9ce82014-04-23 04:00:17 +0000613void SkDebugCanvas::onDrawPosText(const void* text, size_t byteLength, const SkPoint pos[],
614 const SkPaint& paint) {
commit-bot@chromium.org57f74e02014-03-25 23:31:33 +0000615 this->addDrawCommand(new SkDrawPosTextCommand(text, byteLength, pos, paint));
chudy@google.com902ebe52012-06-29 14:21:22 +0000616}
617
reed@google.come0d9ce82014-04-23 04:00:17 +0000618void SkDebugCanvas::onDrawPosTextH(const void* text, size_t byteLength, const SkScalar xpos[],
619 SkScalar constY, const SkPaint& paint) {
commit-bot@chromium.org57f74e02014-03-25 23:31:33 +0000620 this->addDrawCommand(
commit-bot@chromium.org7a115912013-06-18 20:20:55 +0000621 new SkDrawPosTextHCommand(text, byteLength, xpos, constY, paint));
chudy@google.com902ebe52012-06-29 14:21:22 +0000622}
623
reed41af9662015-01-05 07:49:08 -0800624void SkDebugCanvas::onDrawRect(const SkRect& rect, const SkPaint& paint) {
chudy@google.com902ebe52012-06-29 14:21:22 +0000625 // NOTE(chudy): Messing up when renamed to DrawRect... Why?
commit-bot@chromium.org7a115912013-06-18 20:20:55 +0000626 addDrawCommand(new SkDrawRectCommand(rect, paint));
chudy@google.com902ebe52012-06-29 14:21:22 +0000627}
628
reed41af9662015-01-05 07:49:08 -0800629void SkDebugCanvas::onDrawRRect(const SkRRect& rrect, const SkPaint& paint) {
commit-bot@chromium.org57f74e02014-03-25 23:31:33 +0000630 this->addDrawCommand(new SkDrawRRectCommand(rrect, paint));
robertphillips@google.com67baba42013-01-02 20:20:31 +0000631}
632
commit-bot@chromium.orgab582732014-02-21 12:20:45 +0000633void SkDebugCanvas::onDrawDRRect(const SkRRect& outer, const SkRRect& inner,
634 const SkPaint& paint) {
commit-bot@chromium.org3d305202014-02-24 17:28:55 +0000635 this->addDrawCommand(new SkDrawDRRectCommand(outer, inner, paint));
commit-bot@chromium.orgab582732014-02-21 12:20:45 +0000636}
637
reed@google.come0d9ce82014-04-23 04:00:17 +0000638void SkDebugCanvas::onDrawText(const void* text, size_t byteLength, SkScalar x, SkScalar y,
639 const SkPaint& paint) {
commit-bot@chromium.org57f74e02014-03-25 23:31:33 +0000640 this->addDrawCommand(new SkDrawTextCommand(text, byteLength, x, y, paint));
chudy@google.com902ebe52012-06-29 14:21:22 +0000641}
642
reed@google.come0d9ce82014-04-23 04:00:17 +0000643void SkDebugCanvas::onDrawTextOnPath(const void* text, size_t byteLength, const SkPath& path,
644 const SkMatrix* matrix, const SkPaint& paint) {
commit-bot@chromium.org57f74e02014-03-25 23:31:33 +0000645 this->addDrawCommand(
commit-bot@chromium.org7a115912013-06-18 20:20:55 +0000646 new SkDrawTextOnPathCommand(text, byteLength, path, matrix, paint));
chudy@google.com902ebe52012-06-29 14:21:22 +0000647}
648
reed45561a02016-07-07 12:47:17 -0700649void SkDebugCanvas::onDrawTextRSXform(const void* text, size_t byteLength, const SkRSXform xform[],
650 const SkRect* cull, const SkPaint& paint) {
651 this->addDrawCommand(new SkDrawTextRSXformCommand(text, byteLength, xform, cull, paint));
652}
653
fmalitab7425172014-08-26 07:56:44 -0700654void SkDebugCanvas::onDrawTextBlob(const SkTextBlob* blob, SkScalar x, SkScalar y,
655 const SkPaint& paint) {
fmalita37283c22016-09-13 10:00:23 -0700656 this->addDrawCommand(new SkDrawTextBlobCommand(sk_ref_sp(const_cast<SkTextBlob*>(blob)),
657 x, y, paint));
fmalitab7425172014-08-26 07:56:44 -0700658}
659
robertphillips9bafc302015-02-13 11:13:00 -0800660void SkDebugCanvas::onDrawPatch(const SkPoint cubics[12], const SkColor colors[4],
Mike Reedfaba3712016-11-03 14:45:31 -0400661 const SkPoint texCoords[4], SkBlendMode bmode,
robertphillips9bafc302015-02-13 11:13:00 -0800662 const SkPaint& paint) {
Mike Reed7d954ad2016-10-28 15:42:34 -0400663 this->addDrawCommand(new SkDrawPatchCommand(cubics, colors, texCoords, bmode, paint));
robertphillips9bafc302015-02-13 11:13:00 -0800664}
665
reed41af9662015-01-05 07:49:08 -0800666void SkDebugCanvas::onDrawVertices(VertexMode vmode, int vertexCount, const SkPoint vertices[],
667 const SkPoint texs[], const SkColor colors[],
Mike Reedfaba3712016-11-03 14:45:31 -0400668 SkBlendMode bmode, const uint16_t indices[], int indexCount,
reed41af9662015-01-05 07:49:08 -0800669 const SkPaint& paint) {
commit-bot@chromium.org57f74e02014-03-25 23:31:33 +0000670 this->addDrawCommand(new SkDrawVerticesCommand(vmode, vertexCount, vertices,
Mike Reed7d954ad2016-10-28 15:42:34 -0400671 texs, colors, bmode, indices, indexCount, paint));
chudy@google.com902ebe52012-06-29 14:21:22 +0000672}
673
commit-bot@chromium.orge54a23f2014-03-12 20:21:48 +0000674void SkDebugCanvas::willRestore() {
675 this->addDrawCommand(new SkRestoreCommand());
676 this->INHERITED::willRestore();
chudy@google.com902ebe52012-06-29 14:21:22 +0000677}
678
Florin Malita5f6102d2014-06-30 10:13:28 -0400679void SkDebugCanvas::willSave() {
680 this->addDrawCommand(new SkSaveCommand());
681 this->INHERITED::willSave();
chudy@google.com902ebe52012-06-29 14:21:22 +0000682}
683
reed4960eee2015-12-18 07:09:18 -0800684SkCanvas::SaveLayerStrategy SkDebugCanvas::getSaveLayerStrategy(const SaveLayerRec& rec) {
685 this->addDrawCommand(new SkSaveLayerCommand(rec));
686 (void)this->INHERITED::getSaveLayerStrategy(rec);
commit-bot@chromium.orge54a23f2014-03-12 20:21:48 +0000687 // No need for a full layer.
688 return kNoLayer_SaveLayerStrategy;
chudy@google.com902ebe52012-06-29 14:21:22 +0000689}
690
commit-bot@chromium.org44c48d02014-03-13 20:03:58 +0000691void SkDebugCanvas::didSetMatrix(const SkMatrix& matrix) {
commit-bot@chromium.org57f74e02014-03-25 23:31:33 +0000692 this->addDrawCommand(new SkSetMatrixCommand(matrix));
commit-bot@chromium.org44c48d02014-03-13 20:03:58 +0000693 this->INHERITED::didSetMatrix(matrix);
chudy@google.com902ebe52012-06-29 14:21:22 +0000694}
695
vjiaoblacke5de1302016-07-13 14:05:28 -0700696void SkDebugCanvas::didTranslateZ(SkScalar z) {
vjiaoblack95302da2016-07-21 10:25:54 -0700697#ifdef SK_EXPERIMENTAL_SHADOWING
vjiaoblacke5de1302016-07-13 14:05:28 -0700698 this->addDrawCommand(new SkTranslateZCommand(z));
699 this->INHERITED::didTranslateZ(z);
vjiaoblack95302da2016-07-21 10:25:54 -0700700#endif
vjiaoblacke5de1302016-07-13 14:05:28 -0700701}
702
chudy@google.com902ebe52012-06-29 14:21:22 +0000703void SkDebugCanvas::toggleCommand(int index, bool toggle) {
robertphillips@google.com67baba42013-01-02 20:20:31 +0000704 SkASSERT(index < fCommandVector.count());
705 fCommandVector[index]->setVisible(toggle);
chudy@google.com902ebe52012-06-29 14:21:22 +0000706}
commit-bot@chromium.org2a67e122014-05-19 13:53:10 +0000707
708static const char* gFillTypeStrs[] = {
709 "kWinding_FillType",
710 "kEvenOdd_FillType",
711 "kInverseWinding_FillType",
712 "kInverseEvenOdd_FillType"
713};
714
715static const char* gOpStrs[] = {
scroggo5965b732015-04-07 06:53:21 -0700716 "kDifference_PathOp",
717 "kIntersect_PathOp",
718 "kUnion_PathOp",
commit-bot@chromium.org2a67e122014-05-19 13:53:10 +0000719 "kXor_PathOp",
scroggo5965b732015-04-07 06:53:21 -0700720 "kReverseDifference_PathOp",
commit-bot@chromium.org2a67e122014-05-19 13:53:10 +0000721};
722
723static const char kHTML4SpaceIndent[] = "&nbsp;&nbsp;&nbsp;&nbsp;";
724
725void SkDebugCanvas::outputScalar(SkScalar num) {
726 if (num == (int) num) {
727 fClipStackData.appendf("%d", (int) num);
728 } else {
729 SkString str;
730 str.printf("%1.9g", num);
731 int width = (int) str.size();
732 const char* cStr = str.c_str();
733 while (cStr[width - 1] == '0') {
734 --width;
735 }
736 str.resize(width);
737 fClipStackData.appendf("%sf", str.c_str());
738 }
739}
740
741void SkDebugCanvas::outputPointsCommon(const SkPoint* pts, int count) {
742 for (int index = 0; index < count; ++index) {
743 this->outputScalar(pts[index].fX);
744 fClipStackData.appendf(", ");
745 this->outputScalar(pts[index].fY);
746 if (index + 1 < count) {
747 fClipStackData.appendf(", ");
748 }
749 }
750}
751
752void SkDebugCanvas::outputPoints(const SkPoint* pts, int count) {
753 this->outputPointsCommon(pts, count);
754 fClipStackData.appendf(");<br>");
755}
756
757void SkDebugCanvas::outputConicPoints(const SkPoint* pts, SkScalar weight) {
758 this->outputPointsCommon(pts, 2);
759 fClipStackData.appendf(", ");
760 this->outputScalar(weight);
761 fClipStackData.appendf(");<br>");
762}
763
764void SkDebugCanvas::addPathData(const SkPath& path, const char* pathName) {
765 SkPath::RawIter iter(path);
766 SkPath::FillType fillType = path.getFillType();
767 fClipStackData.appendf("%sSkPath %s;<br>", kHTML4SpaceIndent, pathName);
768 fClipStackData.appendf("%s%s.setFillType(SkPath::%s);<br>", kHTML4SpaceIndent, pathName,
769 gFillTypeStrs[fillType]);
770 iter.setPath(path);
771 uint8_t verb;
772 SkPoint pts[4];
773 while ((verb = iter.next(pts)) != SkPath::kDone_Verb) {
774 switch (verb) {
775 case SkPath::kMove_Verb:
776 fClipStackData.appendf("%s%s.moveTo(", kHTML4SpaceIndent, pathName);
777 this->outputPoints(&pts[0], 1);
778 continue;
779 case SkPath::kLine_Verb:
780 fClipStackData.appendf("%s%s.lineTo(", kHTML4SpaceIndent, pathName);
781 this->outputPoints(&pts[1], 1);
782 break;
783 case SkPath::kQuad_Verb:
784 fClipStackData.appendf("%s%s.quadTo(", kHTML4SpaceIndent, pathName);
785 this->outputPoints(&pts[1], 2);
786 break;
787 case SkPath::kConic_Verb:
788 fClipStackData.appendf("%s%s.conicTo(", kHTML4SpaceIndent, pathName);
789 this->outputConicPoints(&pts[1], iter.conicWeight());
790 break;
791 case SkPath::kCubic_Verb:
792 fClipStackData.appendf("%s%s.cubicTo(", kHTML4SpaceIndent, pathName);
793 this->outputPoints(&pts[1], 3);
794 break;
795 case SkPath::kClose_Verb:
796 fClipStackData.appendf("%s%s.close();<br>", kHTML4SpaceIndent, pathName);
797 break;
798 default:
799 SkDEBUGFAIL("bad verb");
800 return;
801 }
802 }
803}
804
805void SkDebugCanvas::addClipStackData(const SkPath& devPath, const SkPath& operand,
Mike Reedc1f77742016-12-09 09:00:50 -0500806 SkClipOp elementOp) {
807 if (elementOp == kReplace_SkClipOp) {
commit-bot@chromium.org2a67e122014-05-19 13:53:10 +0000808 if (!lastClipStackData(devPath)) {
809 fSaveDevPath = operand;
810 }
811 fCalledAddStackData = false;
812 } else {
813 fClipStackData.appendf("<br>static void test(skiatest::Reporter* reporter,"
814 " const char* filename) {<br>");
815 addPathData(fCalledAddStackData ? devPath : fSaveDevPath, "path");
816 addPathData(operand, "pathB");
817 fClipStackData.appendf("%stestPathOp(reporter, path, pathB, %s, filename);<br>",
Mike Reedebfce6d2016-12-12 10:02:12 -0500818 kHTML4SpaceIndent, gOpStrs[static_cast<int>(elementOp)]);
commit-bot@chromium.org2a67e122014-05-19 13:53:10 +0000819 fClipStackData.appendf("}<br>");
820 fCalledAddStackData = true;
821 }
822}
823
824bool SkDebugCanvas::lastClipStackData(const SkPath& devPath) {
825 if (fCalledAddStackData) {
826 fClipStackData.appendf("<br>");
827 addPathData(devPath, "pathOut");
828 return true;
829 }
830 return false;
831}