Index: tests/PictureTest.cpp |
diff --git a/tests/PictureTest.cpp b/tests/PictureTest.cpp |
index 0603eb328f7597d3a8ac1c63fa1b7f1446677b73..6dbc86b147387ed5e06420a6a4de8596b0f484fc 100644 |
--- a/tests/PictureTest.cpp |
+++ b/tests/PictureTest.cpp |
@@ -1416,7 +1416,7 @@ DEF_TEST(PictureGpuAnalyzer, r) { |
SkPictureGpuAnalyzer analyzer; |
REPORTER_ASSERT(r, analyzer.suitableForGpuRasterization()); |
- analyzer.analyze(vetoPicture.get()); |
+ analyzer.analyzePicture(vetoPicture.get()); |
REPORTER_ASSERT(r, !analyzer.suitableForGpuRasterization()); |
analyzer.reset(); |
@@ -1425,7 +1425,7 @@ DEF_TEST(PictureGpuAnalyzer, r) { |
recorder.beginRecording(10, 10)->drawPicture(vetoPicture); |
sk_sp<SkPicture> nestedVetoPicture(recorder.finishRecordingAsPicture()); |
- analyzer.analyze(nestedVetoPicture.get()); |
+ analyzer.analyzePicture(nestedVetoPicture.get()); |
REPORTER_ASSERT(r, !analyzer.suitableForGpuRasterization()); |
analyzer.reset(); |