OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2012 Google Inc. | 2 * Copyright 2012 Google Inc. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
6 */ | 6 */ |
7 | 7 |
8 #include "SkCanvasPriv.h" | 8 #include "SkCanvasPriv.h" |
9 #include "SkClipStack.h" | 9 #include "SkClipStack.h" |
10 #include "SkDebugCanvas.h" | 10 #include "SkDebugCanvas.h" |
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
324 } | 324 } |
325 | 325 |
326 const SkTDArray <SkDrawCommand*>& SkDebugCanvas::getDrawCommands() const { | 326 const SkTDArray <SkDrawCommand*>& SkDebugCanvas::getDrawCommands() const { |
327 return fCommandVector; | 327 return fCommandVector; |
328 } | 328 } |
329 | 329 |
330 SkTDArray <SkDrawCommand*>& SkDebugCanvas::getDrawCommands() { | 330 SkTDArray <SkDrawCommand*>& SkDebugCanvas::getDrawCommands() { |
331 return fCommandVector; | 331 return fCommandVector; |
332 } | 332 } |
333 | 333 |
334 Json::Value SkDebugCanvas::toJSON(UrlDataManager& urlDataManager, int n) { | 334 Json::Value SkDebugCanvas::toJSON(UrlDataManager& urlDataManager, int n, SkCanva
s* canvas) { |
335 Json::Value result = Json::Value(Json::objectValue); | 335 Json::Value result = Json::Value(Json::objectValue); |
336 result[SKDEBUGCANVAS_ATTRIBUTE_VERSION] = Json::Value(SKDEBUGCANVAS_VERSION)
; | 336 result[SKDEBUGCANVAS_ATTRIBUTE_VERSION] = Json::Value(SKDEBUGCANVAS_VERSION)
; |
337 Json::Value commands = Json::Value(Json::arrayValue); | 337 Json::Value commands = Json::Value(Json::arrayValue); |
338 for (int i = 0; i < this->getSize() && i <= n; i++) { | 338 for (int i = 0; i < this->getSize() && i <= n; i++) { |
339 commands[i] = this->getDrawCommandAt(i)->toJSON(urlDataManager); | 339 commands[i] = this->getDrawCommandAt(i)->drawToAndCollectJSON(canvas, ur
lDataManager); |
340 } | 340 } |
341 result[SKDEBUGCANVAS_ATTRIBUTE_COMMANDS] = commands; | 341 result[SKDEBUGCANVAS_ATTRIBUTE_COMMANDS] = commands; |
342 return result; | 342 return result; |
343 } | 343 } |
344 | 344 |
345 void SkDebugCanvas::updatePaintFilterCanvas() { | 345 void SkDebugCanvas::updatePaintFilterCanvas() { |
346 if (!fOverdrawViz && !fOverrideFilterQuality) { | 346 if (!fOverdrawViz && !fOverrideFilterQuality) { |
347 fPaintFilterCanvas.reset(nullptr); | 347 fPaintFilterCanvas.reset(nullptr); |
348 return; | 348 return; |
349 } | 349 } |
(...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
644 } | 644 } |
645 | 645 |
646 bool SkDebugCanvas::lastClipStackData(const SkPath& devPath) { | 646 bool SkDebugCanvas::lastClipStackData(const SkPath& devPath) { |
647 if (fCalledAddStackData) { | 647 if (fCalledAddStackData) { |
648 fClipStackData.appendf("<br>"); | 648 fClipStackData.appendf("<br>"); |
649 addPathData(devPath, "pathOut"); | 649 addPathData(devPath, "pathOut"); |
650 return true; | 650 return true; |
651 } | 651 } |
652 return false; | 652 return false; |
653 } | 653 } |
OLD | NEW |