From 019db3fe885848913645e2dda62c84744ad5ee65 Mon Sep 17 00:00:00 2001 From: fmalita Date: Tue, 31 May 2016 06:32:57 -0700 Subject: Remove unused SkPictureGpuAnalyzer::analyze() After https://crrev.com/c64bd21780da13051846ae45b54a1e6c6bf6ac52, Chromium no longer uses analyze(). R=mtklein@google.com,reed@google.com GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2014983002 Review-Url: https://codereview.chromium.org/2014983002 --- tests/PictureTest.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/PictureTest.cpp') diff --git a/tests/PictureTest.cpp b/tests/PictureTest.cpp index 0603eb328f..6dbc86b147 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 nestedVetoPicture(recorder.finishRecordingAsPicture()); - analyzer.analyze(nestedVetoPicture.get()); + analyzer.analyzePicture(nestedVetoPicture.get()); REPORTER_ASSERT(r, !analyzer.suitableForGpuRasterization()); analyzer.reset(); -- cgit v1.2.3