| Index: src/gpu/GrAtlasTextContext.cpp
|
| diff --git a/src/gpu/GrAtlasTextContext.cpp b/src/gpu/GrAtlasTextContext.cpp
|
| index e0d452997b267b8433a5147df5ef53099d754206..f5bcefba7676065b78aaa2b2cb279dbcca895af3 100644
|
| --- a/src/gpu/GrAtlasTextContext.cpp
|
| +++ b/src/gpu/GrAtlasTextContext.cpp
|
| @@ -2167,8 +2167,7 @@ void GrAtlasTextContext::flush(const SkTextBlob* blob,
|
| SkScalar transX, SkScalar transY) {
|
| // We loop through the runs of the blob, flushing each. If any run is too large, then we flush
|
| // it as paths
|
| - GrPipelineBuilder pipelineBuilder;
|
| - pipelineBuilder.setFromPaint(grPaint, rt, clip);
|
| + GrPipelineBuilder pipelineBuilder(grPaint, rt, clip);
|
|
|
| GrColor color = grPaint.getColor();
|
|
|
| @@ -2194,8 +2193,7 @@ void GrAtlasTextContext::flush(BitmapTextBlob* cacheBlob,
|
| const GrPaint& grPaint,
|
| const GrClip& clip,
|
| const SkIRect& clipBounds) {
|
| - GrPipelineBuilder pipelineBuilder;
|
| - pipelineBuilder.setFromPaint(grPaint, rt, clip);
|
| + GrPipelineBuilder pipelineBuilder(grPaint, rt, clip);
|
|
|
| GrColor color = grPaint.getColor();
|
| for (int run = 0; run < cacheBlob->fRunCount; run++) {
|
|
|