| Index: tools/json/SkJSONCanvas.cpp
|
| diff --git a/tools/json/SkJSONCanvas.cpp b/tools/json/SkJSONCanvas.cpp
|
| index 3c6fa05bb6fdf874d89fcc44abbd279e240e1dfe..3a6a2697a8849326cee5334ea73b6d1441511a86 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);
|
|
|