| Index: src/gpu/text/GrStencilAndCoverTextContext.cpp
|
| diff --git a/src/gpu/text/GrStencilAndCoverTextContext.cpp b/src/gpu/text/GrStencilAndCoverTextContext.cpp
|
| index b832e0cdd1bf41abe1b693c850296b6e88c327f6..1b06b452b1417971a4555d47f338aa04864d3156 100644
|
| --- a/src/gpu/text/GrStencilAndCoverTextContext.cpp
|
| +++ b/src/gpu/text/GrStencilAndCoverTextContext.cpp
|
| @@ -612,13 +612,13 @@ void GrStencilAndCoverTextContext::TextRun::draw(GrContext* ctx,
|
| SkRect bounds = SkRect::MakeIWH(pipelineBuilder->getRenderTarget()->width(),
|
| pipelineBuilder->getRenderTarget()->height());
|
|
|
| - SkAutoTUnref<GrDrawPathBatchBase> batch(
|
| + SkAutoTUnref<GrDrawBatch> batch(
|
| GrDrawPathRangeBatch::Create(viewMatrix, fTextRatio, fTextInverseRatio * x,
|
| fTextInverseRatio * y, color,
|
| GrPathRendering::kWinding_FillType, glyphs, fInstanceData,
|
| bounds));
|
|
|
| - dc->drawPathBatch(*pipelineBuilder, batch);
|
| + dc->drawBatch(pipelineBuilder, batch);
|
| }
|
|
|
| if (fFallbackTextBlob) {
|
|
|