Searched refs:DebugCanvas (Results 1 - 12 of 12) sorted by relevance
/third_party/skia/tools/debugger/ |
H A D | DebugCanvas.cpp | 8 #include "tools/debugger/DebugCanvas.h" 86 DebugCanvas::DebugCanvas(int width, int height) in DebugCanvas() function in DebugCanvas 115 DebugCanvas::DebugCanvas(SkIRect bounds) in DebugCanvas() function in DebugCanvas 116 : DebugCanvas(bounds.width(), bounds.height()) {} in DebugCanvas() 118 DebugCanvas::~DebugCanvas() { fCommandVector.deleteAll(); } in ~DebugCanvas() 120 void DebugCanvas::addDrawCommand(DrawCommand* command) { fCommandVector.push_back(command); } in addDrawCommand() 122 void DebugCanvas [all...] |
H A D | DebugLayerManager.h | 14 #include "tools/debugger/DebugCanvas.h" 24 // pictures to it up to the requested command using a DebugCanvas. 35 class DebugCanvas; 73 // I expect DebugCanvas to call it, which doesn't know which frame it's rendering. The code in 106 // asks the DebugCanvas of the indicated draw event to serialize it's commands as JSON. 110 DebugCanvas* getEventDebugCanvas(int nodeid, int frame); 142 // the SkPicture itself isn't saved, since it's in the DebugCanvas. 143 std::unique_ptr<DebugCanvas> debugCanvas;
|
H A D | DebugCanvas.h | 30 class DebugCanvas : public SkCanvasVirtualEnforcer<SkCanvas> { class 32 DebugCanvas(int width, int height); 34 DebugCanvas(SkIRect bounds); 36 ~DebugCanvas() override; 40 * when set this DebugCanvas will attempt to parse layer info from annotations. 44 * DebugCanvas. 224 // May be set when DebugCanvas is used in playing back an animation.
|
H A D | DebugLayerManager.cpp | 15 #include "tools/debugger/DebugCanvas.h" 46 auto debugCanvas = std::make_unique<DebugCanvas>(layerBounds); 179 DebugCanvas* DebugLayerManager::getEventDebugCanvas(int nodeId, int frame) { in getEventDebugCanvas()
|
/third_party/skia/experimental/wasm-skp-debugger/ |
H A D | debugger_bindings.cpp | 23 #include "tools/debugger/DebugCanvas.h" 155 DebugCanvas* visibleCanvas() { in visibleCanvas() 286 DebugCanvas* debugCanvas = frames[framenumber].get(); in imageUseInfo() 371 // a newly allocated DebugCanvas initialized with the SkPicture that was in the file. 372 std::unique_ptr<DebugCanvas> loadSingleFrame(SkMemoryStream* stream) { in loadSingleFrame() 382 std::unique_ptr<DebugCanvas> debugCanvas = std::make_unique<DebugCanvas>(fBoundsArray.back()); in loadSingleFrame() 414 std::unique_ptr<DebugCanvas> debugCanvas = std::make_unique<DebugCanvas>(fBoundsArray.back()); in loadMultiFrame() 447 // A vector of DebugCanvas, eac [all...] |
/third_party/skia/tools/mdbviz/ |
H A D | Model.cpp | 16 #include "tools/debugger/DebugCanvas.h" 38 std::unique_ptr<DebugCanvas> temp( in load() 39 new DebugCanvas(SkScalarCeilToInt(pic->cullRect().width()), in load()
|
/third_party/skia/tools/skiaserve/ |
H A D | Request.h | 18 #include "tools/debugger/DebugCanvas.h" 63 std::unique_ptr<DebugCanvas> fDebugCanvas;
|
H A D | Request.cpp | 214 fDebugCanvas = std::make_unique<DebugCanvas>(bounds.width(), bounds.height()); in initPictureFromStream()
|
/third_party/skia/tools/ |
H A D | skp_parser.cpp | 11 #include "tools/debugger/DebugCanvas.h" 54 DebugCanvas debugCanvas(size.width(), size.height()); in main()
|
/third_party/skia/tests/ |
H A D | MatrixClipCollapseTest.cpp | 13 #include "tools/debugger/DebugCanvas.h" 62 DebugCanvas debugCanvas(input.width(), input.height()); in gets_ops()
|
/third_party/skia/fuzz/ |
H A D | FuzzCanvas.cpp | 31 #include "tools/debugger/DebugCanvas.h" 1676 DebugCanvas debugCanvas(kCanvasSize.width(), kCanvasSize.height());
|
/third_party/skia/dm/ |
H A D | DMSrcSink.cpp | 55 #include "tools/debugger/DebugCanvas.h" 2063 DebugCanvas debugCanvas(src.size().width(), src.size().height()); in draw()
|
Completed in 12 milliseconds