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