aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/PathOpsDLineTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/PathOpsDLineTest.cpp')
-rw-r--r--tests/PathOpsDLineTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/PathOpsDLineTest.cpp b/tests/PathOpsDLineTest.cpp
index feab21d466..ea816c5b8f 100644
--- a/tests/PathOpsDLineTest.cpp
+++ b/tests/PathOpsDLineTest.cpp
@@ -47,7 +47,7 @@ static void PathOpsLineUtilitiesTest(skiatest::Reporter* reporter) {
REPORTER_ASSERT(reporter, line[0] == line2[1] && line[1] == line2[0]);
line2 = SkDLine::SubDivide(pts, 1, 0);
REPORTER_ASSERT(reporter, line[0] == line2[1] && line[1] == line2[0]);
- SkDPoint mid = line.xyAtT(.5);
+ SkDPoint mid = line.ptAtT(.5);
REPORTER_ASSERT(reporter, approximately_equal((line[0].fX + line[1].fX) / 2, mid.fX));
REPORTER_ASSERT(reporter, approximately_equal((line[0].fY + line[1].fY) / 2, mid.fY));
}