diff options
author | joshualitt <joshualitt@chromium.org> | 2016-03-03 11:39:38 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-03-03 11:39:39 -0800 |
commit | bd72413059d913ceddbf5cd29327c05b13a62503 (patch) | |
tree | c266e9241bcbb330cdacf63a25109614fde65be0 /tools/debugger | |
parent | 862110042d715214b484e643194336c0f0b28659 (diff) |
Remove dependency on SkJsonCanvas.h
BUG=skia:
GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1748183007
NOTRY=True
Review URL: https://codereview.chromium.org/1748183007
Diffstat (limited to 'tools/debugger')
-rw-r--r-- | tools/debugger/SkDrawCommand.cpp | 12 | ||||
-rw-r--r-- | tools/debugger/SkDrawCommand.h | 4 |
2 files changed, 10 insertions, 6 deletions
diff --git a/tools/debugger/SkDrawCommand.cpp b/tools/debugger/SkDrawCommand.cpp index 1af299831f..34cbee7ff5 100644 --- a/tools/debugger/SkDrawCommand.cpp +++ b/tools/debugger/SkDrawCommand.cpp @@ -456,7 +456,7 @@ static Json::Value make_json_rect(const SkRect& rect) { return result; } -static Json::Value make_json_irect(const SkIRect& rect) { +Json::Value SkDrawCommand::MakeJsonIRect(const SkIRect& rect) { Json::Value result(Json::arrayValue); result.append(Json::Value(rect.left())); result.append(Json::Value(rect.top())); @@ -475,7 +475,7 @@ static Json::Value make_json_rrect(const SkRRect& rrect) { return result; } -static Json::Value make_json_matrix(const SkMatrix& matrix) { +Json::Value SkDrawCommand::MakeJsonMatrix(const SkMatrix& matrix) { Json::Value result(Json::arrayValue); Json::Value row1(Json::arrayValue); row1.append(Json::Value(matrix[0])); @@ -1707,7 +1707,7 @@ void SkConcatCommand::execute(SkCanvas* canvas) const { Json::Value SkConcatCommand::toJSON(UrlDataManager& urlDataManager) const { Json::Value result = INHERITED::toJSON(urlDataManager); - result[SKDEBUGCANVAS_ATTRIBUTE_MATRIX] = make_json_matrix(fMatrix); + result[SKDEBUGCANVAS_ATTRIBUTE_MATRIX] = MakeJsonMatrix(fMatrix); return result; } @@ -1819,7 +1819,7 @@ Json::Value SkDrawBitmapNineCommand::toJSON(UrlDataManager& urlDataManager) cons Json::Value encoded; if (flatten(fBitmap, &encoded, urlDataManager)) { result[SKDEBUGCANVAS_ATTRIBUTE_BITMAP] = encoded; - result[SKDEBUGCANVAS_ATTRIBUTE_CENTER] = make_json_irect(fCenter); + result[SKDEBUGCANVAS_ATTRIBUTE_CENTER] = MakeJsonIRect(fCenter); result[SKDEBUGCANVAS_ATTRIBUTE_DST] = make_json_rect(fDst); if (fPaintPtr != nullptr) { result[SKDEBUGCANVAS_ATTRIBUTE_PAINT] = make_json_paint(*fPaintPtr, urlDataManager); @@ -2883,7 +2883,7 @@ Json::Value SkDrawTextOnPathCommand::toJSON(UrlDataManager& urlDataManager) cons Json::Value coords(Json::arrayValue); result[SKDEBUGCANVAS_ATTRIBUTE_PATH] = make_json_path(fPath); if (!fMatrix.isIdentity()) { - result[SKDEBUGCANVAS_ATTRIBUTE_MATRIX] = make_json_matrix(fMatrix); + result[SKDEBUGCANVAS_ATTRIBUTE_MATRIX] = MakeJsonMatrix(fMatrix); } result[SKDEBUGCANVAS_ATTRIBUTE_PAINT] = make_json_paint(fPaint, urlDataManager); return result; @@ -3105,7 +3105,7 @@ void SkSetMatrixCommand::execute(SkCanvas* canvas) const { Json::Value SkSetMatrixCommand::toJSON(UrlDataManager& urlDataManager) const { Json::Value result = INHERITED::toJSON(urlDataManager); - result[SKDEBUGCANVAS_ATTRIBUTE_MATRIX] = make_json_matrix(fMatrix); + result[SKDEBUGCANVAS_ATTRIBUTE_MATRIX] = MakeJsonMatrix(fMatrix); return result; } diff --git a/tools/debugger/SkDrawCommand.h b/tools/debugger/SkDrawCommand.h index 74c2b2c69e..a2835dc6e7 100644 --- a/tools/debugger/SkDrawCommand.h +++ b/tools/debugger/SkDrawCommand.h @@ -113,6 +113,10 @@ public: static const char* GetCommandString(OpType type); + // Helper methods for converting things to JSON + static Json::Value MakeJsonIRect(const SkIRect&); + static Json::Value MakeJsonMatrix(const SkMatrix&); + protected: SkTDArray<SkString*> fInfo; |