From: ethannicholas Date: Thu, 4 Feb 2016 19:19:40 +0000 (-0800) Subject: Fixed references to MakeMatrix function X-Git-Tag: accepted/tizen/5.0/unified/20181102.025319~129^2~2223 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=299200c24b0bcb256fd9089c78d3d796114d3126;p=platform%2Fupstream%2FlibSkiaSharp.git 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 --- diff --git a/tools/json/SkJSONCanvas.cpp b/tools/json/SkJSONCanvas.cpp index 3c6fa05..3a6a269 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);