aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/GrAAConvexPathRenderer.cpp
diff options
context:
space:
mode:
authorGravatar joshualitt <joshualitt@chromium.org>2015-07-13 08:08:25 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-07-13 08:08:25 -0700
commit1c735488cbec9abdb25c9a12e0c11af9c302a776 (patch)
treee55fc2b07702ae3d9ee8403c97fcdfd21ec02a68 /src/gpu/GrAAConvexPathRenderer.cpp
parent5e6ba21f0722fea6b2f95b9d166d7601ffab18bf (diff)
Start to propagate constness of GrPipelineBuilder up the stack
Diffstat (limited to 'src/gpu/GrAAConvexPathRenderer.cpp')
-rw-r--r--src/gpu/GrAAConvexPathRenderer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gpu/GrAAConvexPathRenderer.cpp b/src/gpu/GrAAConvexPathRenderer.cpp
index 2d4694cb84..fed6a7afd7 100644
--- a/src/gpu/GrAAConvexPathRenderer.cpp
+++ b/src/gpu/GrAAConvexPathRenderer.cpp
@@ -1001,7 +1001,7 @@ bool GrAAConvexPathRenderer::onDrawPath(GrDrawTarget* target,
geometry.fPath = path;
SkAutoTUnref<GrBatch> batch(AAConvexPathBatch::Create(geometry));
- target->drawBatch(pipelineBuilder, batch);
+ target->drawBatch(*pipelineBuilder, batch);
return true;