Index: src/gpu/GrDefaultPathRenderer.cpp |
diff --git a/src/gpu/GrDefaultPathRenderer.cpp b/src/gpu/GrDefaultPathRenderer.cpp |
index 2431696d068511a2c8ceb2e06d293a0c054a95e1..e02e082b56a71627080d9d81b418b2c899700784 100644 |
--- a/src/gpu/GrDefaultPathRenderer.cpp |
+++ b/src/gpu/GrDefaultPathRenderer.cpp |
@@ -678,7 +678,7 @@ bool GrDefaultPathRenderer::internalDrawPath(GrDrawTarget* target, |
} |
const SkMatrix& viewM = (reverse && viewMatrix.hasPerspective()) ? SkMatrix::I() : |
viewMatrix; |
- target->drawBWRect(pipelineBuilder, color, viewM, bounds, NULL, &localMatrix); |
+ target->drawBWRect(*pipelineBuilder, color, viewM, bounds, NULL, &localMatrix); |
} else { |
if (passCount > 1) { |
pipelineBuilder->setDisableColorXPFactory(); |
@@ -692,7 +692,7 @@ bool GrDefaultPathRenderer::internalDrawPath(GrDrawTarget* target, |
SkAutoTUnref<GrBatch> batch(DefaultPathBatch::Create(geometry, newCoverage, viewMatrix, |
isHairline, devBounds)); |
- target->drawBatch(pipelineBuilder, batch); |
+ target->drawBatch(*pipelineBuilder, batch); |
} |
} |
return true; |