commit | be45742933bc39ccceaa82ca9bd844d2568a5ebd | [log] [tgz] |
---|---|---|
author | Chris Dalton <csmartdalton@google.com> | Mon Mar 16 18:05:03 2020 -0600 |
committer | Skia Commit-Bot <skia-commit-bot@chromium.org> | Tue Mar 17 15:06:55 2020 +0000 |
tree | d325c2e83605b700952b544b03051712f701993e | |
parent | 765ed36ad4692075ecf67ade4be68d512227ecef [diff] [blame] |
Change GrProgramInfo::visitProxies to "visitFPProxies" We are removing dynamic state from the ProgramInfo, so the Ops will need to invoke visits on their own primProc proxies. Change-Id: I7ab227ab71208b7c7bcb7a9deb56b9abd556d6aa Reviewed-on: https://skia-review.googlesource.com/c/skia/+/277236 Commit-Queue: Chris Dalton <csmartdalton@google.com> Reviewed-by: Robert Phillips <robertphillips@google.com>
diff --git a/src/gpu/ops/GrDefaultPathRenderer.cpp b/src/gpu/ops/GrDefaultPathRenderer.cpp index 4f79279..bd74221 100644 --- a/src/gpu/ops/GrDefaultPathRenderer.cpp +++ b/src/gpu/ops/GrDefaultPathRenderer.cpp
@@ -362,7 +362,7 @@ void visitProxies(const VisitProxyFunc& func) const override { if (fProgramInfo) { - fProgramInfo->visitProxies(func); + fProgramInfo->visitFPProxies(func); } else { fHelper.visitProxies(func); }