commit | 8dd1e22f41309bdfec6b9b35727fe1e4e88cc100 | [log] [tgz] |
---|---|---|
author | John Stiles <johnstiles@google.com> | Wed Aug 12 19:06:24 2020 -0400 |
committer | Skia Commit-Bot <skia-commit-bot@chromium.org> | Thu Aug 13 13:06:59 2020 +0000 |
tree | fbe08c690819d72f9716331619e13c38b858aa43 | |
parent | 1e0136ecdb12940bae0ec3284c28e532611dc4dd [diff] [blame] |
Update GrOp subclasses to use `onDumpInfo` for info dumping. This is meant to parallel the changes in http://review.skia.org/309793, but for GrOps. The base-class info is automatically appended without subclasses manually calling `append(INHERITED::dumpInfo())`. Change-Id: Ic815305feeeca07385687af5703f0dd88a008f9f Reviewed-on: https://skia-review.googlesource.com/c/skia/+/309879 Reviewed-by: Brian Salomon <bsalomon@google.com> Commit-Queue: John Stiles <johnstiles@google.com> Auto-Submit: John Stiles <johnstiles@google.com>
diff --git a/src/gpu/ops/GrAALinearizingConvexPathRenderer.cpp b/src/gpu/ops/GrAALinearizingConvexPathRenderer.cpp index 7a3738c..6f0acba 100644 --- a/src/gpu/ops/GrAALinearizingConvexPathRenderer.cpp +++ b/src/gpu/ops/GrAALinearizingConvexPathRenderer.cpp
@@ -187,7 +187,7 @@ } #if GR_TEST_UTILS - SkString dumpInfo() const override { + SkString onDumpInfo() const override { SkString string; for (const auto& path : fPaths) { string.appendf( @@ -197,7 +197,6 @@ path.fMiterLimit); } string += fHelper.dumpInfo(); - string += INHERITED::dumpInfo(); return string; } #endif