aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/ops/GrLatticeOp.cpp
diff options
context:
space:
mode:
authorGravatar Robert Phillips <robertphillips@google.com>2017-09-14 14:11:24 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-09-14 20:39:42 +0000
commitf1748f5a9238a0d3e189d50fc5e57ae8b8ec087c (patch)
treecaff30803c0b92b567f9c8dc9cdb7610389684af /src/gpu/ops/GrLatticeOp.cpp
parent7d76ed2b1be9f5dcc1acca311d47829cd03d52f8 (diff)
Change visitProxies signature
There is a perf regression (mainly on the Nexus5) for the https://skia-review.googlesource.com/c/skia/+/46200 (Add method to iterate over a GrOp's GrSurfaceProxies) This is one candidate. Change-Id: I995d3a88bad2a914f24b49512abbf01aeaf579c8 Reviewed-on: https://skia-review.googlesource.com/46586 Reviewed-by: Brian Osman <brianosman@google.com> Commit-Queue: Robert Phillips <robertphillips@google.com>
Diffstat (limited to 'src/gpu/ops/GrLatticeOp.cpp')
-rw-r--r--src/gpu/ops/GrLatticeOp.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gpu/ops/GrLatticeOp.cpp b/src/gpu/ops/GrLatticeOp.cpp
index 64983f4e66..35d1ab7fcb 100644
--- a/src/gpu/ops/GrLatticeOp.cpp
+++ b/src/gpu/ops/GrLatticeOp.cpp
@@ -60,7 +60,7 @@ public:
const char* name() const override { return "NonAALatticeOp"; }
- void visitProxies(VisitProxyFunc func) const override {
+ void visitProxies(const VisitProxyFunc& func) const override {
fHelper.visitProxies(func);
}