From 299200c24b0bcb256fd9089c78d3d796114d3126 Mon Sep 17 00:00:00 2001 From: ethannicholas Date: Thu, 4 Feb 2016 11:19:40 -0800 Subject: Fixed references to MakeMatrix function TBR=joshualitt@chromium.org GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1666213002 Review URL: https://codereview.chromium.org/1666213002 --- tools/json/SkJSONCanvas.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tools/json') diff --git a/tools/json/SkJSONCanvas.cpp b/tools/json/SkJSONCanvas.cpp index 3c6fa05bb6..3a6a2697a8 100644 --- a/tools/json/SkJSONCanvas.cpp +++ b/tools/json/SkJSONCanvas.cpp @@ -533,7 +533,7 @@ void SkJSONCanvas::didConcat(const SkMatrix& matrix) { void SkJSONCanvas::didSetMatrix(const SkMatrix& matrix) { Json::Value command(Json::objectValue); command[SKJSONCANVAS_COMMAND] = Json::Value(SKJSONCANVAS_COMMAND_MATRIX); - command[SKJSONCANVAS_ATTRIBUTE_MATRIX] = this->makeMatrix(matrix); + command[SKJSONCANVAS_ATTRIBUTE_MATRIX] = this->MakeMatrix(matrix); fCommands.append(command); } @@ -748,7 +748,7 @@ void SkJSONCanvas::onDrawTextOnPath(const void* text, size_t byteLength, ((const char*) text) + byteLength); command[SKJSONCANVAS_ATTRIBUTE_PATH] = this->makePath(path); if (matrix != nullptr) { - command[SKJSONCANVAS_ATTRIBUTE_MATRIX] = this->makeMatrix(*matrix); + command[SKJSONCANVAS_ATTRIBUTE_MATRIX] = this->MakeMatrix(*matrix); } command[SKJSONCANVAS_ATTRIBUTE_PAINT] = this->makePaint(paint); fCommands.append(command); -- cgit v1.2.3