chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 1 | /* |
| 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 | |
ethannicholas | 891ad66 | 2016-02-12 07:15:45 -0800 | [diff] [blame] | 8 | #include "SkCanvasPriv.h" |
chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 9 | #include "SkDebugCanvas.h" |
| 10 | #include "SkDrawCommand.h" |
Brian Osman | d8a90f9 | 2019-01-28 13:41:19 -0500 | [diff] [blame] | 11 | #include "SkJSONWriter.h" |
fmalita | 37283c2 | 2016-09-13 10:00:23 -0700 | [diff] [blame] | 12 | #include "SkPaintFilterCanvas.h" |
Brian Osman | 255735e | 2018-04-06 14:51:42 -0400 | [diff] [blame] | 13 | #include "SkPicture.h" |
Mike Reed | 274218e | 2018-01-08 15:05:02 -0500 | [diff] [blame] | 14 | #include "SkRectPriv.h" |
fmalita | 37283c2 | 2016-09-13 10:00:23 -0700 | [diff] [blame] | 15 | #include "SkTextBlob.h" |
Mike Reed | ebfce6d | 2016-12-12 10:02:12 -0500 | [diff] [blame] | 16 | #include "SkClipOpPriv.h" |
fmalita | 65cdb57 | 2015-03-26 07:24:48 -0700 | [diff] [blame] | 17 | |
joshualitt | 10d8fc2 | 2016-02-29 11:15:06 -0800 | [diff] [blame] | 18 | #include "GrAuditTrail.h" |
| 19 | #include "GrContext.h" |
Robert Phillips | be9aff2 | 2019-02-15 11:33:22 -0500 | [diff] [blame^] | 20 | #include "GrContextPriv.h" |
Robert Phillips | 22f4a1f | 2016-12-20 08:57:26 -0500 | [diff] [blame] | 21 | #include "GrRenderTargetContext.h" |
joshualitt | 10d8fc2 | 2016-02-29 11:15:06 -0800 | [diff] [blame] | 22 | |
joshualitt | e43f7e6 | 2016-03-04 10:45:05 -0800 | [diff] [blame] | 23 | #define SKDEBUGCANVAS_VERSION 1 |
| 24 | #define SKDEBUGCANVAS_ATTRIBUTE_VERSION "version" |
| 25 | #define SKDEBUGCANVAS_ATTRIBUTE_COMMANDS "commands" |
| 26 | #define SKDEBUGCANVAS_ATTRIBUTE_AUDITTRAIL "auditTrail" |
ethannicholas | 402cd91 | 2016-02-10 12:57:30 -0800 | [diff] [blame] | 27 | |
fmalita | 65cdb57 | 2015-03-26 07:24:48 -0700 | [diff] [blame] | 28 | class DebugPaintFilterCanvas : public SkPaintFilterCanvas { |
| 29 | public: |
Ben Wagner | c03e1c5 | 2016-10-17 15:20:02 -0400 | [diff] [blame] | 30 | DebugPaintFilterCanvas(SkCanvas* canvas, |
Brian Osman | 255735e | 2018-04-06 14:51:42 -0400 | [diff] [blame] | 31 | bool overdrawViz) |
Ben Wagner | c03e1c5 | 2016-10-17 15:20:02 -0400 | [diff] [blame] | 32 | : INHERITED(canvas) |
Brian Osman | 255735e | 2018-04-06 14:51:42 -0400 | [diff] [blame] | 33 | , fOverdrawViz(overdrawViz) {} |
fmalita | 65cdb57 | 2015-03-26 07:24:48 -0700 | [diff] [blame] | 34 | |
| 35 | protected: |
fmalita | 32cdc32 | 2016-01-12 07:21:11 -0800 | [diff] [blame] | 36 | bool onFilter(SkTCopyOnFirstWrite<SkPaint>* paint, Type) const override { |
| 37 | if (*paint) { |
Ben Wagner | c03e1c5 | 2016-10-17 15:20:02 -0400 | [diff] [blame] | 38 | if (fOverdrawViz) { |
| 39 | paint->writable()->setColor(SK_ColorRED); |
| 40 | paint->writable()->setAlpha(0x08); |
| 41 | paint->writable()->setBlendMode(SkBlendMode::kSrcOver); |
fmalita | bad23dc | 2016-01-11 13:58:29 -0800 | [diff] [blame] | 42 | } |
fmalita | 65cdb57 | 2015-03-26 07:24:48 -0700 | [diff] [blame] | 43 | } |
fmalita | bad23dc | 2016-01-11 13:58:29 -0800 | [diff] [blame] | 44 | return true; |
fmalita | 65cdb57 | 2015-03-26 07:24:48 -0700 | [diff] [blame] | 45 | } |
| 46 | |
mtklein | f059900 | 2015-07-13 06:18:39 -0700 | [diff] [blame] | 47 | void onDrawPicture(const SkPicture* picture, |
| 48 | const SkMatrix* matrix, |
| 49 | const SkPaint* paint) override { |
fmalita | 65cdb57 | 2015-03-26 07:24:48 -0700 | [diff] [blame] | 50 | // We need to replay the picture onto this canvas in order to filter its internal paints. |
| 51 | this->SkCanvas::onDrawPicture(picture, matrix, paint); |
| 52 | } |
| 53 | |
| 54 | private: |
Ben Wagner | c03e1c5 | 2016-10-17 15:20:02 -0400 | [diff] [blame] | 55 | bool fOverdrawViz; |
fmalita | 65cdb57 | 2015-03-26 07:24:48 -0700 | [diff] [blame] | 56 | |
| 57 | typedef SkPaintFilterCanvas INHERITED; |
| 58 | }; |
| 59 | |
kkinnunen | 26e5400 | 2015-01-05 12:58:56 -0800 | [diff] [blame] | 60 | SkDebugCanvas::SkDebugCanvas(int width, int height) |
| 61 | : INHERITED(width, height) |
robertphillips@google.com | f4741c1 | 2013-02-06 20:13:54 +0000 | [diff] [blame] | 62 | , fOverdrawViz(false) |
joshualitt | 10d8fc2 | 2016-02-29 11:15:06 -0800 | [diff] [blame] | 63 | , fClipVizColor(SK_ColorTRANSPARENT) |
Brian Salomon | 144a5c5 | 2016-12-20 16:48:59 -0500 | [diff] [blame] | 64 | , fDrawGpuOpBounds(false) { |
robertphillips@google.com | 8b15717 | 2013-11-07 22:20:31 +0000 | [diff] [blame] | 65 | // SkPicturePlayback uses the base-class' quickReject calls to cull clipped |
| 66 | // operations. This can lead to problems in the debugger which expects all |
| 67 | // the operations in the captured skp to appear in the debug canvas. To |
| 68 | // circumvent this we create a wide open clip here (an empty clip rect |
| 69 | // is not sufficient). |
| 70 | // Internally, the SkRect passed to clipRect is converted to an SkIRect and |
| 71 | // rounded out. The following code creates a nearly maximal rect that will |
| 72 | // not get collapsed by the coming conversions (Due to precision loss the |
| 73 | // inset has to be surprisingly large). |
Mike Reed | 8008df1 | 2018-01-17 12:20:04 -0500 | [diff] [blame] | 74 | SkIRect largeIRect = SkRectPriv::MakeILarge(); |
robertphillips@google.com | 8b15717 | 2013-11-07 22:20:31 +0000 | [diff] [blame] | 75 | largeIRect.inset(1024, 1024); |
robertphillips@google.com | 6c1e49a | 2013-11-10 15:08:45 +0000 | [diff] [blame] | 76 | SkRect large = SkRect::Make(largeIRect); |
robertphillips@google.com | 8b15717 | 2013-11-07 22:20:31 +0000 | [diff] [blame] | 77 | #ifdef SK_DEBUG |
reed | b07a94f | 2014-11-19 05:03:18 -0800 | [diff] [blame] | 78 | SkASSERT(!large.roundOut().isEmpty()); |
robertphillips@google.com | 8b15717 | 2013-11-07 22:20:31 +0000 | [diff] [blame] | 79 | #endif |
robertphillips@google.com | 8f90a89 | 2014-02-28 18:19:39 +0000 | [diff] [blame] | 80 | // call the base class' version to avoid adding a draw command |
Mike Reed | c1f7774 | 2016-12-09 09:00:50 -0500 | [diff] [blame] | 81 | this->INHERITED::onClipRect(large, kReplace_SkClipOp, kHard_ClipEdgeStyle); |
chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 82 | } |
| 83 | |
chudy@google.com | 9cda6f7 | 2012-08-07 15:08:33 +0000 | [diff] [blame] | 84 | SkDebugCanvas::~SkDebugCanvas() { |
robertphillips@google.com | 67baba4 | 2013-01-02 20:20:31 +0000 | [diff] [blame] | 85 | fCommandVector.deleteAll(); |
chudy@google.com | 9cda6f7 | 2012-08-07 15:08:33 +0000 | [diff] [blame] | 86 | } |
chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 87 | |
| 88 | void SkDebugCanvas::addDrawCommand(SkDrawCommand* command) { |
Mike Reed | 5edcd31 | 2018-08-08 11:23:41 -0400 | [diff] [blame] | 89 | fCommandVector.push_back(command); |
chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 90 | } |
| 91 | |
| 92 | void SkDebugCanvas::draw(SkCanvas* canvas) { |
commit-bot@chromium.org | 1735d66 | 2013-12-04 13:42:46 +0000 | [diff] [blame] | 93 | if (!fCommandVector.isEmpty()) { |
commit-bot@chromium.org | 57f74e0 | 2014-03-25 23:31:33 +0000 | [diff] [blame] | 94 | this->drawTo(canvas, fCommandVector.count() - 1); |
chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 95 | } |
| 96 | } |
| 97 | |
Ravi Mistry | 99c9796 | 2016-12-21 22:41:03 +0000 | [diff] [blame] | 98 | void SkDebugCanvas::drawTo(SkCanvas* originalCanvas, int index, int m) { |
robertphillips@google.com | 67baba4 | 2013-01-02 20:20:31 +0000 | [diff] [blame] | 99 | SkASSERT(!fCommandVector.isEmpty()); |
| 100 | SkASSERT(index < fCommandVector.count()); |
kkinnunen | 26a00de | 2015-01-13 23:09:19 -0800 | [diff] [blame] | 101 | |
Ravi Mistry | 99c9796 | 2016-12-21 22:41:03 +0000 | [diff] [blame] | 102 | int saveCount = originalCanvas->save(); |
kkinnunen | 26a00de | 2015-01-13 23:09:19 -0800 | [diff] [blame] | 103 | |
Ravi Mistry | 99c9796 | 2016-12-21 22:41:03 +0000 | [diff] [blame] | 104 | SkRect windowRect = SkRect::MakeWH(SkIntToScalar(originalCanvas->getBaseLayerSize().width()), |
| 105 | SkIntToScalar(originalCanvas->getBaseLayerSize().height())); |
chudy@google.com | 830b879 | 2012-08-01 15:57:52 +0000 | [diff] [blame] | 106 | |
Ravi Mistry | 99c9796 | 2016-12-21 22:41:03 +0000 | [diff] [blame] | 107 | originalCanvas->clear(SK_ColorWHITE); |
| 108 | originalCanvas->resetMatrix(); |
kkinnunen | 26a00de | 2015-01-13 23:09:19 -0800 | [diff] [blame] | 109 | if (!windowRect.isEmpty()) { |
Ravi Mistry | 99c9796 | 2016-12-21 22:41:03 +0000 | [diff] [blame] | 110 | originalCanvas->clipRect(windowRect, kReplace_SkClipOp); |
commit-bot@chromium.org | a27622c | 2013-08-05 16:31:27 +0000 | [diff] [blame] | 111 | } |
robertphillips@google.com | f4741c1 | 2013-02-06 20:13:54 +0000 | [diff] [blame] | 112 | |
Brian Osman | 255735e | 2018-04-06 14:51:42 -0400 | [diff] [blame] | 113 | DebugPaintFilterCanvas filterCanvas(originalCanvas, fOverdrawViz); |
halcanary | 9d524f2 | 2016-03-29 09:03:52 -0700 | [diff] [blame] | 114 | |
Brian Salomon | 144a5c5 | 2016-12-20 16:48:59 -0500 | [diff] [blame] | 115 | // If we have a GPU backend we can also visualize the op information |
joshualitt | 10d8fc2 | 2016-02-29 11:15:06 -0800 | [diff] [blame] | 116 | GrAuditTrail* at = nullptr; |
Brian Salomon | 144a5c5 | 2016-12-20 16:48:59 -0500 | [diff] [blame] | 117 | if (fDrawGpuOpBounds || m != -1) { |
Ravi Mistry | 99c9796 | 2016-12-21 22:41:03 +0000 | [diff] [blame] | 118 | // The audit trail must be obtained from the original canvas. |
| 119 | at = this->getAuditTrail(originalCanvas); |
joshualitt | 10d8fc2 | 2016-02-29 11:15:06 -0800 | [diff] [blame] | 120 | } |
commit-bot@chromium.org | 768ac85 | 2014-03-03 16:32:17 +0000 | [diff] [blame] | 121 | |
kkinnunen | 26a00de | 2015-01-13 23:09:19 -0800 | [diff] [blame] | 122 | for (int i = 0; i <= index; i++) { |
Brian Salomon | 144a5c5 | 2016-12-20 16:48:59 -0500 | [diff] [blame] | 123 | // We need to flush any pending operations, or they might combine with commands below. |
brianosman | 1c9f922 | 2016-04-15 11:00:51 -0700 | [diff] [blame] | 124 | // Previous operations were not registered with the audit trail when they were |
| 125 | // created, so if we allow them to combine, the audit trail will fail to find them. |
Ravi Mistry | 99c9796 | 2016-12-21 22:41:03 +0000 | [diff] [blame] | 126 | filterCanvas.flush(); |
brianosman | 1c9f922 | 2016-04-15 11:00:51 -0700 | [diff] [blame] | 127 | |
Brian Salomon | 42ad83a | 2016-12-20 16:14:45 -0500 | [diff] [blame] | 128 | GrAuditTrail::AutoCollectOps* acb = nullptr; |
joshualitt | 10d8fc2 | 2016-02-29 11:15:06 -0800 | [diff] [blame] | 129 | if (at) { |
Brian Salomon | 42ad83a | 2016-12-20 16:14:45 -0500 | [diff] [blame] | 130 | acb = new GrAuditTrail::AutoCollectOps(at, i); |
joshualitt | 10d8fc2 | 2016-02-29 11:15:06 -0800 | [diff] [blame] | 131 | } |
chudy@google.com | 0b5bbb0 | 2012-07-31 19:55:32 +0000 | [diff] [blame] | 132 | |
robertphillips@google.com | 67baba4 | 2013-01-02 20:20:31 +0000 | [diff] [blame] | 133 | if (fCommandVector[i]->isVisible()) { |
Brian Osman | 255735e | 2018-04-06 14:51:42 -0400 | [diff] [blame] | 134 | fCommandVector[i]->execute(&filterCanvas); |
chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 135 | } |
joshualitt | 10d8fc2 | 2016-02-29 11:15:06 -0800 | [diff] [blame] | 136 | if (at && acb) { |
| 137 | delete acb; |
| 138 | } |
chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 139 | } |
commit-bot@chromium.org | 768ac85 | 2014-03-03 16:32:17 +0000 | [diff] [blame] | 140 | |
ethannicholas | 0a0520a | 2016-02-12 12:06:53 -0800 | [diff] [blame] | 141 | if (SkColorGetA(fClipVizColor) != 0) { |
Ravi Mistry | 99c9796 | 2016-12-21 22:41:03 +0000 | [diff] [blame] | 142 | filterCanvas.save(); |
ethannicholas | 0a0520a | 2016-02-12 12:06:53 -0800 | [diff] [blame] | 143 | #define LARGE_COORD 1000000000 |
Ravi Mistry | 99c9796 | 2016-12-21 22:41:03 +0000 | [diff] [blame] | 144 | filterCanvas.clipRect( |
| 145 | SkRect::MakeLTRB(-LARGE_COORD, -LARGE_COORD, LARGE_COORD, LARGE_COORD), |
| 146 | kReverseDifference_SkClipOp); |
ethannicholas | 0a0520a | 2016-02-12 12:06:53 -0800 | [diff] [blame] | 147 | SkPaint clipPaint; |
| 148 | clipPaint.setColor(fClipVizColor); |
Ravi Mistry | 99c9796 | 2016-12-21 22:41:03 +0000 | [diff] [blame] | 149 | filterCanvas.drawPaint(clipPaint); |
| 150 | filterCanvas.restore(); |
ethannicholas | 0a0520a | 2016-02-12 12:06:53 -0800 | [diff] [blame] | 151 | } |
| 152 | |
Ravi Mistry | 99c9796 | 2016-12-21 22:41:03 +0000 | [diff] [blame] | 153 | fMatrix = filterCanvas.getTotalMatrix(); |
Mike Reed | 918e144 | 2017-01-23 11:39:45 -0500 | [diff] [blame] | 154 | fClip = filterCanvas.getDeviceClipBounds(); |
Ravi Mistry | 99c9796 | 2016-12-21 22:41:03 +0000 | [diff] [blame] | 155 | filterCanvas.restoreToCount(saveCount); |
fmalita | 65cdb57 | 2015-03-26 07:24:48 -0700 | [diff] [blame] | 156 | |
Brian Salomon | 144a5c5 | 2016-12-20 16:48:59 -0500 | [diff] [blame] | 157 | // draw any ops if required and issue a full reset onto GrAuditTrail |
joshualitt | 10d8fc2 | 2016-02-29 11:15:06 -0800 | [diff] [blame] | 158 | if (at) { |
joshualitt | e43f7e6 | 2016-03-04 10:45:05 -0800 | [diff] [blame] | 159 | // just in case there is global reordering, we flush the canvas before querying |
| 160 | // GrAuditTrail |
joshualitt | b0666ad | 2016-03-08 10:43:41 -0800 | [diff] [blame] | 161 | GrAuditTrail::AutoEnable ae(at); |
Ravi Mistry | 99c9796 | 2016-12-21 22:41:03 +0000 | [diff] [blame] | 162 | filterCanvas.flush(); |
joshualitt | e43f7e6 | 2016-03-04 10:45:05 -0800 | [diff] [blame] | 163 | |
joshualitt | bdc6b2b | 2016-03-01 14:22:02 -0800 | [diff] [blame] | 164 | // we pick three colorblind-safe colors, 75% alpha |
| 165 | static const SkColor kTotalBounds = SkColorSetARGB(0xC0, 0x6A, 0x3D, 0x9A); |
Brian Salomon | 144a5c5 | 2016-12-20 16:48:59 -0500 | [diff] [blame] | 166 | static const SkColor kCommandOpBounds = SkColorSetARGB(0xC0, 0xE3, 0x1A, 0x1C); |
| 167 | static const SkColor kOtherOpBounds = SkColorSetARGB(0xC0, 0xFF, 0x7F, 0x00); |
joshualitt | bdc6b2b | 2016-03-01 14:22:02 -0800 | [diff] [blame] | 168 | |
Ravi Mistry | 99c9796 | 2016-12-21 22:41:03 +0000 | [diff] [blame] | 169 | // get the render target of the top device (from the original canvas) so we can ignore ops |
| 170 | // drawn offscreen |
| 171 | GrRenderTargetContext* rtc = |
| 172 | originalCanvas->internal_private_accessTopLayerRenderTargetContext(); |
Robert Phillips | 318c419 | 2017-05-17 09:36:38 -0400 | [diff] [blame] | 173 | GrSurfaceProxy::UniqueID proxyID = rtc->asSurfaceProxy()->uniqueID(); |
joshualitt | 1d7decf | 2016-03-01 07:15:52 -0800 | [diff] [blame] | 174 | |
| 175 | // get the bounding boxes to draw |
Brian Salomon | 42ad83a | 2016-12-20 16:14:45 -0500 | [diff] [blame] | 176 | SkTArray<GrAuditTrail::OpInfo> childrenBounds; |
joshualitt | 46b301d | 2016-03-02 08:32:37 -0800 | [diff] [blame] | 177 | if (m == -1) { |
| 178 | at->getBoundsByClientID(&childrenBounds, index); |
| 179 | } else { |
Brian Salomon | 144a5c5 | 2016-12-20 16:48:59 -0500 | [diff] [blame] | 180 | // the client wants us to draw the mth op |
Brian Salomon | 42ad83a | 2016-12-20 16:14:45 -0500 | [diff] [blame] | 181 | at->getBoundsByOpListID(&childrenBounds.push_back(), m); |
joshualitt | 46b301d | 2016-03-02 08:32:37 -0800 | [diff] [blame] | 182 | } |
joshualitt | 10d8fc2 | 2016-02-29 11:15:06 -0800 | [diff] [blame] | 183 | SkPaint paint; |
| 184 | paint.setStyle(SkPaint::kStroke_Style); |
| 185 | paint.setStrokeWidth(1); |
| 186 | for (int i = 0; i < childrenBounds.count(); i++) { |
Robert Phillips | 318c419 | 2017-05-17 09:36:38 -0400 | [diff] [blame] | 187 | if (childrenBounds[i].fProxyUniqueID != proxyID) { |
joshualitt | 1d7decf | 2016-03-01 07:15:52 -0800 | [diff] [blame] | 188 | // offscreen draw, ignore for now |
| 189 | continue; |
| 190 | } |
joshualitt | bdc6b2b | 2016-03-01 14:22:02 -0800 | [diff] [blame] | 191 | paint.setColor(kTotalBounds); |
Ravi Mistry | 99c9796 | 2016-12-21 22:41:03 +0000 | [diff] [blame] | 192 | filterCanvas.drawRect(childrenBounds[i].fBounds, paint); |
Brian Salomon | 42ad83a | 2016-12-20 16:14:45 -0500 | [diff] [blame] | 193 | for (int j = 0; j < childrenBounds[i].fOps.count(); j++) { |
Brian Salomon | 144a5c5 | 2016-12-20 16:48:59 -0500 | [diff] [blame] | 194 | const GrAuditTrail::OpInfo::Op& op = childrenBounds[i].fOps[j]; |
| 195 | if (op.fClientID != index) { |
| 196 | paint.setColor(kOtherOpBounds); |
joshualitt | 10d8fc2 | 2016-02-29 11:15:06 -0800 | [diff] [blame] | 197 | } else { |
Brian Salomon | 144a5c5 | 2016-12-20 16:48:59 -0500 | [diff] [blame] | 198 | paint.setColor(kCommandOpBounds); |
joshualitt | 10d8fc2 | 2016-02-29 11:15:06 -0800 | [diff] [blame] | 199 | } |
Ravi Mistry | 99c9796 | 2016-12-21 22:41:03 +0000 | [diff] [blame] | 200 | filterCanvas.drawRect(op.fBounds, paint); |
joshualitt | 10d8fc2 | 2016-02-29 11:15:06 -0800 | [diff] [blame] | 201 | } |
| 202 | } |
joshualitt | 10d8fc2 | 2016-02-29 11:15:06 -0800 | [diff] [blame] | 203 | } |
Ravi Mistry | 99c9796 | 2016-12-21 22:41:03 +0000 | [diff] [blame] | 204 | this->cleanupAuditTrail(originalCanvas); |
chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 205 | } |
| 206 | |
robertphillips@google.com | 50c84da | 2013-04-01 18:18:49 +0000 | [diff] [blame] | 207 | void SkDebugCanvas::deleteDrawCommandAt(int index) { |
| 208 | SkASSERT(index < fCommandVector.count()); |
| 209 | delete fCommandVector[index]; |
| 210 | fCommandVector.remove(index); |
| 211 | } |
| 212 | |
chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 213 | SkDrawCommand* SkDebugCanvas::getDrawCommandAt(int index) { |
robertphillips@google.com | 67baba4 | 2013-01-02 20:20:31 +0000 | [diff] [blame] | 214 | SkASSERT(index < fCommandVector.count()); |
| 215 | return fCommandVector[index]; |
chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 216 | } |
| 217 | |
joshualitt | ae47aee | 2016-03-10 13:29:36 -0800 | [diff] [blame] | 218 | GrAuditTrail* SkDebugCanvas::getAuditTrail(SkCanvas* canvas) { |
| 219 | GrAuditTrail* at = nullptr; |
robertphillips | 175dd9b | 2016-04-28 14:32:04 -0700 | [diff] [blame] | 220 | GrContext* ctx = canvas->getGrContext(); |
| 221 | if (ctx) { |
Robert Phillips | d684148 | 2019-02-08 10:29:20 -0500 | [diff] [blame] | 222 | at = ctx->priv().auditTrail(); |
joshualitt | e43f7e6 | 2016-03-04 10:45:05 -0800 | [diff] [blame] | 223 | } |
joshualitt | ae47aee | 2016-03-10 13:29:36 -0800 | [diff] [blame] | 224 | return at; |
| 225 | } |
| 226 | |
Brian Salomon | 144a5c5 | 2016-12-20 16:48:59 -0500 | [diff] [blame] | 227 | void SkDebugCanvas::drawAndCollectOps(int n, SkCanvas* canvas) { |
joshualitt | ae47aee | 2016-03-10 13:29:36 -0800 | [diff] [blame] | 228 | GrAuditTrail* at = this->getAuditTrail(canvas); |
| 229 | if (at) { |
joshualitt | ae47aee | 2016-03-10 13:29:36 -0800 | [diff] [blame] | 230 | // loop over all of the commands and draw them, this is to collect reordering |
| 231 | // information |
| 232 | for (int i = 0; i < this->getSize() && i <= n; i++) { |
Brian Salomon | 42ad83a | 2016-12-20 16:14:45 -0500 | [diff] [blame] | 233 | GrAuditTrail::AutoCollectOps enable(at, i); |
joshualitt | ae47aee | 2016-03-10 13:29:36 -0800 | [diff] [blame] | 234 | fCommandVector[i]->execute(canvas); |
| 235 | } |
| 236 | |
| 237 | // in case there is some kind of global reordering |
| 238 | { |
| 239 | GrAuditTrail::AutoEnable ae(at); |
| 240 | canvas->flush(); |
| 241 | } |
joshualitt | ae47aee | 2016-03-10 13:29:36 -0800 | [diff] [blame] | 242 | } |
| 243 | } |
| 244 | |
| 245 | void SkDebugCanvas::cleanupAuditTrail(SkCanvas* canvas) { |
| 246 | GrAuditTrail* at = this->getAuditTrail(canvas); |
| 247 | if (at) { |
joshualitt | ae47aee | 2016-03-10 13:29:36 -0800 | [diff] [blame] | 248 | GrAuditTrail::AutoEnable ae(at); |
| 249 | at->fullReset(); |
joshualitt | ae47aee | 2016-03-10 13:29:36 -0800 | [diff] [blame] | 250 | } |
| 251 | } |
| 252 | |
Brian Osman | d8a90f9 | 2019-01-28 13:41:19 -0500 | [diff] [blame] | 253 | void SkDebugCanvas::toJSON(SkJSONWriter& writer, UrlDataManager& urlDataManager, int n, |
| 254 | SkCanvas* canvas) { |
Brian Salomon | 144a5c5 | 2016-12-20 16:48:59 -0500 | [diff] [blame] | 255 | this->drawAndCollectOps(n, canvas); |
halcanary | 9d524f2 | 2016-03-29 09:03:52 -0700 | [diff] [blame] | 256 | |
joshualitt | e43f7e6 | 2016-03-04 10:45:05 -0800 | [diff] [blame] | 257 | // now collect json |
joshualitt | ae47aee | 2016-03-10 13:29:36 -0800 | [diff] [blame] | 258 | GrAuditTrail* at = this->getAuditTrail(canvas); |
Brian Osman | d8a90f9 | 2019-01-28 13:41:19 -0500 | [diff] [blame] | 259 | writer.appendS32(SKDEBUGCANVAS_ATTRIBUTE_VERSION, SKDEBUGCANVAS_VERSION); |
| 260 | writer.beginArray(SKDEBUGCANVAS_ATTRIBUTE_COMMANDS); |
joshualitt | e43f7e6 | 2016-03-04 10:45:05 -0800 | [diff] [blame] | 261 | |
Brian Osman | d8a90f9 | 2019-01-28 13:41:19 -0500 | [diff] [blame] | 262 | for (int i = 0; i < this->getSize() && i <= n; i++) { |
| 263 | writer.beginObject(); // command |
| 264 | this->getDrawCommandAt(i)->toJSON(writer, urlDataManager); |
| 265 | |
| 266 | if (at) { |
| 267 | writer.appendName(SKDEBUGCANVAS_ATTRIBUTE_AUDITTRAIL); |
| 268 | at->toJson(writer, i); |
joshualitt | e43f7e6 | 2016-03-04 10:45:05 -0800 | [diff] [blame] | 269 | } |
Brian Osman | d8a90f9 | 2019-01-28 13:41:19 -0500 | [diff] [blame] | 270 | writer.endObject(); // command |
ethannicholas | 402cd91 | 2016-02-10 12:57:30 -0800 | [diff] [blame] | 271 | } |
Brian Osman | d8a90f9 | 2019-01-28 13:41:19 -0500 | [diff] [blame] | 272 | |
| 273 | writer.endArray(); // commands |
joshualitt | ae47aee | 2016-03-10 13:29:36 -0800 | [diff] [blame] | 274 | this->cleanupAuditTrail(canvas); |
ethannicholas | 402cd91 | 2016-02-10 12:57:30 -0800 | [diff] [blame] | 275 | } |
| 276 | |
Brian Osman | d8a90f9 | 2019-01-28 13:41:19 -0500 | [diff] [blame] | 277 | void SkDebugCanvas::toJSONOpList(SkJSONWriter& writer, int n, SkCanvas* canvas) { |
Brian Salomon | 144a5c5 | 2016-12-20 16:48:59 -0500 | [diff] [blame] | 278 | this->drawAndCollectOps(n, canvas); |
joshualitt | ae47aee | 2016-03-10 13:29:36 -0800 | [diff] [blame] | 279 | |
joshualitt | 4083610 | 2016-03-11 11:45:53 -0800 | [diff] [blame] | 280 | GrAuditTrail* at = this->getAuditTrail(canvas); |
joshualitt | ae47aee | 2016-03-10 13:29:36 -0800 | [diff] [blame] | 281 | if (at) { |
Brian Salomon | 42ad83a | 2016-12-20 16:14:45 -0500 | [diff] [blame] | 282 | GrAuditTrail::AutoManageOpList enable(at); |
Brian Osman | d8a90f9 | 2019-01-28 13:41:19 -0500 | [diff] [blame] | 283 | at->toJson(writer); |
| 284 | } else { |
| 285 | writer.beginObject(); |
| 286 | writer.endObject(); |
joshualitt | ae47aee | 2016-03-10 13:29:36 -0800 | [diff] [blame] | 287 | } |
joshualitt | ae47aee | 2016-03-10 13:29:36 -0800 | [diff] [blame] | 288 | this->cleanupAuditTrail(canvas); |
joshualitt | ae47aee | 2016-03-10 13:29:36 -0800 | [diff] [blame] | 289 | } |
| 290 | |
fmalita | 65cdb57 | 2015-03-26 07:24:48 -0700 | [diff] [blame] | 291 | void SkDebugCanvas::setOverdrawViz(bool overdrawViz) { |
fmalita | 65cdb57 | 2015-03-26 07:24:48 -0700 | [diff] [blame] | 292 | fOverdrawViz = overdrawViz; |
fmalita | 65cdb57 | 2015-03-26 07:24:48 -0700 | [diff] [blame] | 293 | } |
| 294 | |
Mike Reed | c1f7774 | 2016-12-09 09:00:50 -0500 | [diff] [blame] | 295 | void SkDebugCanvas::onClipPath(const SkPath& path, SkClipOp op, ClipEdgeStyle edgeStyle) { |
robertphillips@google.com | 8f90a89 | 2014-02-28 18:19:39 +0000 | [diff] [blame] | 296 | this->addDrawCommand(new SkClipPathCommand(path, op, kSoft_ClipEdgeStyle == edgeStyle)); |
chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 297 | } |
| 298 | |
Mike Reed | c1f7774 | 2016-12-09 09:00:50 -0500 | [diff] [blame] | 299 | void SkDebugCanvas::onClipRect(const SkRect& rect, SkClipOp op, ClipEdgeStyle edgeStyle) { |
robertphillips@google.com | 8f90a89 | 2014-02-28 18:19:39 +0000 | [diff] [blame] | 300 | this->addDrawCommand(new SkClipRectCommand(rect, op, kSoft_ClipEdgeStyle == edgeStyle)); |
chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 301 | } |
| 302 | |
Mike Reed | c1f7774 | 2016-12-09 09:00:50 -0500 | [diff] [blame] | 303 | void SkDebugCanvas::onClipRRect(const SkRRect& rrect, SkClipOp op, ClipEdgeStyle edgeStyle) { |
robertphillips@google.com | 8f90a89 | 2014-02-28 18:19:39 +0000 | [diff] [blame] | 304 | this->addDrawCommand(new SkClipRRectCommand(rrect, op, kSoft_ClipEdgeStyle == edgeStyle)); |
robertphillips@google.com | 67baba4 | 2013-01-02 20:20:31 +0000 | [diff] [blame] | 305 | } |
| 306 | |
Mike Reed | c1f7774 | 2016-12-09 09:00:50 -0500 | [diff] [blame] | 307 | void SkDebugCanvas::onClipRegion(const SkRegion& region, SkClipOp op) { |
robertphillips@google.com | 8f90a89 | 2014-02-28 18:19:39 +0000 | [diff] [blame] | 308 | this->addDrawCommand(new SkClipRegionCommand(region, op)); |
chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 309 | } |
| 310 | |
commit-bot@chromium.org | 44c48d0 | 2014-03-13 20:03:58 +0000 | [diff] [blame] | 311 | void SkDebugCanvas::didConcat(const SkMatrix& matrix) { |
robertphillips | 9bafc30 | 2015-02-13 11:13:00 -0800 | [diff] [blame] | 312 | this->addDrawCommand(new SkConcatCommand(matrix)); |
commit-bot@chromium.org | 44c48d0 | 2014-03-13 20:03:58 +0000 | [diff] [blame] | 313 | this->INHERITED::didConcat(matrix); |
chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 314 | } |
| 315 | |
reed | 97660cc | 2016-06-28 18:54:19 -0700 | [diff] [blame] | 316 | void SkDebugCanvas::onDrawAnnotation(const SkRect& rect, const char key[], SkData* value) { |
| 317 | this->addDrawCommand(new SkDrawAnnotationCommand(rect, key, sk_ref_sp(value))); |
| 318 | } |
| 319 | |
reed | 41af966 | 2015-01-05 07:49:08 -0800 | [diff] [blame] | 320 | void SkDebugCanvas::onDrawBitmap(const SkBitmap& bitmap, SkScalar left, |
| 321 | SkScalar top, const SkPaint* paint) { |
commit-bot@chromium.org | 57f74e0 | 2014-03-25 23:31:33 +0000 | [diff] [blame] | 322 | this->addDrawCommand(new SkDrawBitmapCommand(bitmap, left, top, paint)); |
chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 323 | } |
| 324 | |
Brian Osman | 78a7648 | 2018-05-18 16:59:13 -0400 | [diff] [blame] | 325 | void SkDebugCanvas::onDrawBitmapLattice(const SkBitmap& bitmap, const Lattice& lattice, |
| 326 | const SkRect& dst, const SkPaint* paint) { |
| 327 | this->addDrawCommand(new SkDrawBitmapLatticeCommand(bitmap, lattice, dst, paint)); |
| 328 | } |
| 329 | |
reed | 41af966 | 2015-01-05 07:49:08 -0800 | [diff] [blame] | 330 | void SkDebugCanvas::onDrawBitmapRect(const SkBitmap& bitmap, const SkRect* src, const SkRect& dst, |
reed | 562fe47 | 2015-07-28 07:35:14 -0700 | [diff] [blame] | 331 | const SkPaint* paint, SrcRectConstraint constraint) { |
reed | a5517e2 | 2015-07-14 10:54:12 -0700 | [diff] [blame] | 332 | this->addDrawCommand(new SkDrawBitmapRectCommand(bitmap, src, dst, paint, |
| 333 | (SrcRectConstraint)constraint)); |
chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 334 | } |
| 335 | |
reed | 41af966 | 2015-01-05 07:49:08 -0800 | [diff] [blame] | 336 | void SkDebugCanvas::onDrawBitmapNine(const SkBitmap& bitmap, const SkIRect& center, |
| 337 | const SkRect& dst, const SkPaint* paint) { |
commit-bot@chromium.org | 57f74e0 | 2014-03-25 23:31:33 +0000 | [diff] [blame] | 338 | this->addDrawCommand(new SkDrawBitmapNineCommand(bitmap, center, dst, paint)); |
chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 339 | } |
| 340 | |
reed | 41af966 | 2015-01-05 07:49:08 -0800 | [diff] [blame] | 341 | void SkDebugCanvas::onDrawImage(const SkImage* image, SkScalar left, SkScalar top, |
| 342 | const SkPaint* paint) { |
fmalita | 651c920 | 2015-07-22 10:23:01 -0700 | [diff] [blame] | 343 | this->addDrawCommand(new SkDrawImageCommand(image, left, top, paint)); |
reed | 41af966 | 2015-01-05 07:49:08 -0800 | [diff] [blame] | 344 | } |
| 345 | |
Stan Iliev | ac42aeb | 2017-01-12 16:20:50 -0500 | [diff] [blame] | 346 | void SkDebugCanvas::onDrawImageLattice(const SkImage* image, const Lattice& lattice, |
| 347 | const SkRect& dst, const SkPaint* paint) { |
| 348 | this->addDrawCommand(new SkDrawImageLatticeCommand(image, lattice, dst, paint)); |
| 349 | } |
| 350 | |
reed | 41af966 | 2015-01-05 07:49:08 -0800 | [diff] [blame] | 351 | void SkDebugCanvas::onDrawImageRect(const SkImage* image, const SkRect* src, const SkRect& dst, |
reed | 562fe47 | 2015-07-28 07:35:14 -0700 | [diff] [blame] | 352 | const SkPaint* paint, SrcRectConstraint constraint) { |
fmalita | 651c920 | 2015-07-22 10:23:01 -0700 | [diff] [blame] | 353 | this->addDrawCommand(new SkDrawImageRectCommand(image, src, dst, paint, constraint)); |
reed | 41af966 | 2015-01-05 07:49:08 -0800 | [diff] [blame] | 354 | } |
| 355 | |
Brian Osman | c25e269 | 2018-03-12 10:57:28 -0400 | [diff] [blame] | 356 | void SkDebugCanvas::onDrawImageNine(const SkImage* image, const SkIRect& center, |
| 357 | const SkRect& dst, const SkPaint* paint) { |
| 358 | this->addDrawCommand(new SkDrawImageNineCommand(image, center, dst, paint)); |
| 359 | } |
| 360 | |
Brian Salomon | d003d22 | 2018-11-26 13:25:05 -0500 | [diff] [blame] | 361 | void SkDebugCanvas::onDrawImageSet(const SkCanvas::ImageSetEntry set[], int count, |
Brian Salomon | d7065e7 | 2018-10-12 11:42:02 -0400 | [diff] [blame] | 362 | SkFilterQuality filterQuality, SkBlendMode mode) { |
Brian Salomon | d003d22 | 2018-11-26 13:25:05 -0500 | [diff] [blame] | 363 | this->addDrawCommand(new SkDrawImageSetCommand(set, count, filterQuality, mode)); |
Brian Salomon | d7065e7 | 2018-10-12 11:42:02 -0400 | [diff] [blame] | 364 | } |
| 365 | |
reed | 41af966 | 2015-01-05 07:49:08 -0800 | [diff] [blame] | 366 | void SkDebugCanvas::onDrawOval(const SkRect& oval, const SkPaint& paint) { |
commit-bot@chromium.org | 57f74e0 | 2014-03-25 23:31:33 +0000 | [diff] [blame] | 367 | this->addDrawCommand(new SkDrawOvalCommand(oval, paint)); |
robertphillips@google.com | 67baba4 | 2013-01-02 20:20:31 +0000 | [diff] [blame] | 368 | } |
| 369 | |
bsalomon | ac3aa24 | 2016-08-19 11:25:19 -0700 | [diff] [blame] | 370 | void SkDebugCanvas::onDrawArc(const SkRect& oval, SkScalar startAngle, SkScalar sweepAngle, |
| 371 | bool useCenter, const SkPaint& paint) { |
| 372 | this->addDrawCommand(new SkDrawArcCommand(oval, startAngle, sweepAngle, useCenter, paint)); |
| 373 | } |
| 374 | |
reed | 41af966 | 2015-01-05 07:49:08 -0800 | [diff] [blame] | 375 | void SkDebugCanvas::onDrawPaint(const SkPaint& paint) { |
commit-bot@chromium.org | 57f74e0 | 2014-03-25 23:31:33 +0000 | [diff] [blame] | 376 | this->addDrawCommand(new SkDrawPaintCommand(paint)); |
chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 377 | } |
| 378 | |
reed | 41af966 | 2015-01-05 07:49:08 -0800 | [diff] [blame] | 379 | void SkDebugCanvas::onDrawPath(const SkPath& path, const SkPaint& paint) { |
commit-bot@chromium.org | 57f74e0 | 2014-03-25 23:31:33 +0000 | [diff] [blame] | 380 | this->addDrawCommand(new SkDrawPathCommand(path, paint)); |
chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 381 | } |
| 382 | |
Brian Osman | c25e269 | 2018-03-12 10:57:28 -0400 | [diff] [blame] | 383 | void SkDebugCanvas::onDrawRegion(const SkRegion& region, const SkPaint& paint) { |
| 384 | this->addDrawCommand(new SkDrawRegionCommand(region, paint)); |
| 385 | } |
| 386 | |
mtklein | f0f1411 | 2014-12-12 08:46:25 -0800 | [diff] [blame] | 387 | void SkDebugCanvas::onDrawPicture(const SkPicture* picture, |
| 388 | const SkMatrix* matrix, |
robertphillips | b3f319f | 2014-08-13 10:46:23 -0700 | [diff] [blame] | 389 | const SkPaint* paint) { |
fmalita | 160ebb2 | 2015-04-01 20:58:37 -0700 | [diff] [blame] | 390 | this->addDrawCommand(new SkBeginDrawPictureCommand(picture, matrix, paint)); |
ethannicholas | 891ad66 | 2016-02-12 07:15:45 -0800 | [diff] [blame] | 391 | SkAutoCanvasMatrixPaint acmp(this, matrix, paint, picture->cullRect()); |
| 392 | picture->playback(this); |
fmalita | 160ebb2 | 2015-04-01 20:58:37 -0700 | [diff] [blame] | 393 | this->addDrawCommand(new SkEndDrawPictureCommand(SkToBool(matrix) || SkToBool(paint))); |
chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 394 | } |
| 395 | |
reed | 41af966 | 2015-01-05 07:49:08 -0800 | [diff] [blame] | 396 | void SkDebugCanvas::onDrawPoints(PointMode mode, size_t count, |
| 397 | const SkPoint pts[], const SkPaint& paint) { |
commit-bot@chromium.org | 57f74e0 | 2014-03-25 23:31:33 +0000 | [diff] [blame] | 398 | this->addDrawCommand(new SkDrawPointsCommand(mode, count, pts, paint)); |
chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 399 | } |
| 400 | |
reed | 41af966 | 2015-01-05 07:49:08 -0800 | [diff] [blame] | 401 | void SkDebugCanvas::onDrawRect(const SkRect& rect, const SkPaint& paint) { |
chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 402 | // NOTE(chudy): Messing up when renamed to DrawRect... Why? |
commit-bot@chromium.org | 7a11591 | 2013-06-18 20:20:55 +0000 | [diff] [blame] | 403 | addDrawCommand(new SkDrawRectCommand(rect, paint)); |
chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 404 | } |
| 405 | |
Michael Ludwig | 7545190 | 2019-01-23 11:14:29 -0500 | [diff] [blame] | 406 | void SkDebugCanvas::onDrawEdgeAARect(const SkRect& rect, SkCanvas::QuadAAFlags aa, SkColor color, |
| 407 | SkBlendMode mode) { |
| 408 | this->addDrawCommand(new SkDrawEdgeAARectCommand(rect, aa, color, mode)); |
| 409 | } |
| 410 | |
reed | 41af966 | 2015-01-05 07:49:08 -0800 | [diff] [blame] | 411 | void SkDebugCanvas::onDrawRRect(const SkRRect& rrect, const SkPaint& paint) { |
commit-bot@chromium.org | 57f74e0 | 2014-03-25 23:31:33 +0000 | [diff] [blame] | 412 | this->addDrawCommand(new SkDrawRRectCommand(rrect, paint)); |
robertphillips@google.com | 67baba4 | 2013-01-02 20:20:31 +0000 | [diff] [blame] | 413 | } |
| 414 | |
commit-bot@chromium.org | ab58273 | 2014-02-21 12:20:45 +0000 | [diff] [blame] | 415 | void SkDebugCanvas::onDrawDRRect(const SkRRect& outer, const SkRRect& inner, |
| 416 | const SkPaint& paint) { |
commit-bot@chromium.org | 3d30520 | 2014-02-24 17:28:55 +0000 | [diff] [blame] | 417 | this->addDrawCommand(new SkDrawDRRectCommand(outer, inner, paint)); |
commit-bot@chromium.org | ab58273 | 2014-02-21 12:20:45 +0000 | [diff] [blame] | 418 | } |
| 419 | |
fmalita | b742517 | 2014-08-26 07:56:44 -0700 | [diff] [blame] | 420 | void SkDebugCanvas::onDrawTextBlob(const SkTextBlob* blob, SkScalar x, SkScalar y, |
| 421 | const SkPaint& paint) { |
fmalita | 37283c2 | 2016-09-13 10:00:23 -0700 | [diff] [blame] | 422 | this->addDrawCommand(new SkDrawTextBlobCommand(sk_ref_sp(const_cast<SkTextBlob*>(blob)), |
| 423 | x, y, paint)); |
fmalita | b742517 | 2014-08-26 07:56:44 -0700 | [diff] [blame] | 424 | } |
| 425 | |
robertphillips | 9bafc30 | 2015-02-13 11:13:00 -0800 | [diff] [blame] | 426 | void SkDebugCanvas::onDrawPatch(const SkPoint cubics[12], const SkColor colors[4], |
Mike Reed | faba371 | 2016-11-03 14:45:31 -0400 | [diff] [blame] | 427 | const SkPoint texCoords[4], SkBlendMode bmode, |
robertphillips | 9bafc30 | 2015-02-13 11:13:00 -0800 | [diff] [blame] | 428 | const SkPaint& paint) { |
Mike Reed | 7d954ad | 2016-10-28 15:42:34 -0400 | [diff] [blame] | 429 | this->addDrawCommand(new SkDrawPatchCommand(cubics, colors, texCoords, bmode, paint)); |
robertphillips | 9bafc30 | 2015-02-13 11:13:00 -0800 | [diff] [blame] | 430 | } |
| 431 | |
Ruiqi Mao | c97a339 | 2018-08-15 10:44:19 -0400 | [diff] [blame] | 432 | void SkDebugCanvas::onDrawVerticesObject(const SkVertices* vertices, const SkVertices::Bone bones[], |
Ruiqi Mao | f510149 | 2018-06-29 14:32:21 -0400 | [diff] [blame] | 433 | int boneCount, SkBlendMode bmode, const SkPaint& paint) { |
| 434 | // TODO: ANIMATION NOT LOGGED |
Mike Reed | fed9cfd | 2017-03-17 12:09:04 -0400 | [diff] [blame] | 435 | this->addDrawCommand(new SkDrawVerticesCommand(sk_ref_sp(const_cast<SkVertices*>(vertices)), |
| 436 | bmode, paint)); |
chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 437 | } |
| 438 | |
Brian Osman | 616f1cb | 2018-05-29 11:23:35 -0400 | [diff] [blame] | 439 | void SkDebugCanvas::onDrawAtlas(const SkImage* image, const SkRSXform xform[], const SkRect tex[], |
| 440 | const SkColor colors[], int count, SkBlendMode bmode, |
| 441 | const SkRect* cull, const SkPaint* paint) { |
| 442 | this->addDrawCommand(new SkDrawAtlasCommand(image, xform, tex, colors, count, bmode, cull, |
| 443 | paint)); |
| 444 | } |
| 445 | |
Derek Sollenberger | 6aab2ab | 2018-04-12 12:45:58 -0400 | [diff] [blame] | 446 | void SkDebugCanvas::onDrawShadowRec(const SkPath& path, const SkDrawShadowRec& rec) { |
| 447 | this->addDrawCommand(new SkDrawShadowCommand(path, rec)); |
| 448 | } |
| 449 | |
Brian Osman | c761108 | 2018-05-29 14:55:50 -0400 | [diff] [blame] | 450 | void SkDebugCanvas::onDrawDrawable(SkDrawable* drawable, const SkMatrix* matrix) { |
| 451 | this->addDrawCommand(new SkDrawDrawableCommand(drawable, matrix)); |
| 452 | } |
| 453 | |
commit-bot@chromium.org | e54a23f | 2014-03-12 20:21:48 +0000 | [diff] [blame] | 454 | void SkDebugCanvas::willRestore() { |
| 455 | this->addDrawCommand(new SkRestoreCommand()); |
| 456 | this->INHERITED::willRestore(); |
chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 457 | } |
| 458 | |
Florin Malita | 5f6102d | 2014-06-30 10:13:28 -0400 | [diff] [blame] | 459 | void SkDebugCanvas::willSave() { |
| 460 | this->addDrawCommand(new SkSaveCommand()); |
| 461 | this->INHERITED::willSave(); |
chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 462 | } |
| 463 | |
reed | 4960eee | 2015-12-18 07:09:18 -0800 | [diff] [blame] | 464 | SkCanvas::SaveLayerStrategy SkDebugCanvas::getSaveLayerStrategy(const SaveLayerRec& rec) { |
| 465 | this->addDrawCommand(new SkSaveLayerCommand(rec)); |
| 466 | (void)this->INHERITED::getSaveLayerStrategy(rec); |
commit-bot@chromium.org | e54a23f | 2014-03-12 20:21:48 +0000 | [diff] [blame] | 467 | // No need for a full layer. |
| 468 | return kNoLayer_SaveLayerStrategy; |
chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 469 | } |
| 470 | |
Mike Reed | 148b7fd | 2018-12-18 17:38:18 -0500 | [diff] [blame] | 471 | bool SkDebugCanvas::onDoSaveBehind(const SkRect* subset) { |
| 472 | // TODO |
| 473 | return false; |
| 474 | } |
| 475 | |
commit-bot@chromium.org | 44c48d0 | 2014-03-13 20:03:58 +0000 | [diff] [blame] | 476 | void SkDebugCanvas::didSetMatrix(const SkMatrix& matrix) { |
commit-bot@chromium.org | 57f74e0 | 2014-03-25 23:31:33 +0000 | [diff] [blame] | 477 | this->addDrawCommand(new SkSetMatrixCommand(matrix)); |
commit-bot@chromium.org | 44c48d0 | 2014-03-13 20:03:58 +0000 | [diff] [blame] | 478 | this->INHERITED::didSetMatrix(matrix); |
chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 479 | } |
| 480 | |
chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 481 | void SkDebugCanvas::toggleCommand(int index, bool toggle) { |
robertphillips@google.com | 67baba4 | 2013-01-02 20:20:31 +0000 | [diff] [blame] | 482 | SkASSERT(index < fCommandVector.count()); |
| 483 | fCommandVector[index]->setVisible(toggle); |
chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 484 | } |