Index: tests/ColorSpaceXformTest.cpp |
diff --git a/tests/ColorSpaceXformTest.cpp b/tests/ColorSpaceXformTest.cpp |
index b5df1e1e7200751a9c2ca3bd8ad81ab8fae2e0e9..2b5db2bbe48bf41f549391486e5f32357bc21b07 100644 |
--- a/tests/ColorSpaceXformTest.cpp |
+++ b/tests/ColorSpaceXformTest.cpp |
@@ -45,7 +45,7 @@ static void test_xform(skiatest::Reporter* r, const sk_sp<SkGammas>& gammas) { |
// Create and perform xform |
std::unique_ptr<SkColorSpaceXform> xform = |
ColorSpaceXformTest::CreateDefaultXform(gammas, srcToDst, gammas); |
- xform->xform_RGB1_8888(dstPixels, srcPixels, width); |
+ xform->applyTo8888(dstPixels, srcPixels, width); |
// Since the matrix is the identity, and the gamma curves match, the pixels |
// should be unchanged. |