aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorGravatar ethannicholas <ethannicholas@google.com>2016-02-04 11:19:40 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2016-02-04 11:19:40 -0800
commit299200c24b0bcb256fd9089c78d3d796114d3126 (patch)
tree37ebc08d1b7a90405e15e03deae454cbd5f3c228 /tools
parentb6c65e99956b867e24bd5bd68ae37673a9fd4b27 (diff)
Fixed references to MakeMatrix function
Diffstat (limited to 'tools')
-rw-r--r--tools/json/SkJSONCanvas.cpp4
1 files changed, 2 insertions, 2 deletions
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);