aboutsummaryrefslogtreecommitdiff
path: root/tests/PathOpsSimplifyRectThreadedTest.cpp
diff options
context:
space:
mode:
authorMike Reed <reed@google.com>2017-01-07 11:16:28 -0500
committerSkia Commit-Bot <skia-commit-bot@chromium.org>2017-01-08 03:06:06 +0000
commitff80c2ab305a25434d17fbcbec02b20d69b05227 (patch)
tree0d0a1beaac4c14b85419d330b17078a0c870a2ba /tests/PathOpsSimplifyRectThreadedTest.cpp
parent1523dbdd7211561957eec466c87af84f1f2bf5c5 (diff)
remove SkMemoryWStream -- unused externally
BUG=skia: Change-Id: Idbc9af4e703238871f56f623cd616fb7a5e686d3 Reviewed-on: https://skia-review.googlesource.com/6727 Reviewed-by: Cary Clark <caryclark@google.com> Commit-Queue: Mike Reed <reed@google.com>
Diffstat (limited to 'tests/PathOpsSimplifyRectThreadedTest.cpp')
-rw-r--r--tests/PathOpsSimplifyRectThreadedTest.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/PathOpsSimplifyRectThreadedTest.cpp b/tests/PathOpsSimplifyRectThreadedTest.cpp
index 4ddc6f7f34..384d1b0cce 100644
--- a/tests/PathOpsSimplifyRectThreadedTest.cpp
+++ b/tests/PathOpsSimplifyRectThreadedTest.cpp
@@ -166,11 +166,11 @@ static void testSimplify4x4RectsMain(PathOpsThreadState* data)
}
path.close();
if (state.fReporter->verbose()) {
- outputProgress(state.fPathStr, pathStr.c_str(), SkPath::kWinding_FillType);
+ state.outputProgress(pathStr.c_str(), SkPath::kWinding_FillType);
}
testSimplify(path, false, out, state, pathStr.c_str());
if (state.fReporter->verbose()) {
- outputProgress(state.fPathStr, pathStr.c_str(), SkPath::kEvenOdd_FillType);
+ state.outputProgress(pathStr.c_str(), SkPath::kEvenOdd_FillType);
}
testSimplify(path, true, out, state, pathStr.c_str());
}