| Index: src/gpu/GrDrawTarget.cpp
|
| diff --git a/src/gpu/GrDrawTarget.cpp b/src/gpu/GrDrawTarget.cpp
|
| index bae4cabaae3876c104db7ae520a34784617d8942..0389d92f482cb52f2abfabecc7443a62fd3667c4 100644
|
| --- a/src/gpu/GrDrawTarget.cpp
|
| +++ b/src/gpu/GrDrawTarget.cpp
|
| @@ -359,27 +359,6 @@ void GrDrawTarget::drawNonAARect(const GrPipelineBuilder& pipelineBuilder,
|
| this->drawBatch(pipelineBuilder, batch);
|
| }
|
|
|
| -void GrDrawTarget::drawNonAARect(const GrPipelineBuilder& pipelineBuilder,
|
| - GrColor color,
|
| - const SkMatrix& viewMatrix,
|
| - const SkRect& rect,
|
| - const SkMatrix& localMatrix) {
|
| - SkAutoTUnref<GrDrawBatch> batch(GrRectBatchFactory::CreateNonAAFill(color, viewMatrix, rect,
|
| - nullptr, &localMatrix));
|
| - this->drawBatch(pipelineBuilder, batch);
|
| -}
|
| -
|
| -void GrDrawTarget::drawNonAARect(const GrPipelineBuilder& pipelineBuilder,
|
| - GrColor color,
|
| - const SkMatrix& viewMatrix,
|
| - const SkRect& rect,
|
| - const SkRect& localRect) {
|
| - SkAutoTUnref<GrDrawBatch> batch(GrRectBatchFactory::CreateNonAAFill(color, viewMatrix, rect,
|
| - &localRect, nullptr));
|
| - this->drawBatch(pipelineBuilder, batch);
|
| -}
|
| -
|
| -
|
| void GrDrawTarget::drawAARect(const GrPipelineBuilder& pipelineBuilder,
|
| GrColor color,
|
| const SkMatrix& viewMatrix,
|
|
|