| Index: src/gpu/GrDrawTarget.cpp
|
| diff --git a/src/gpu/GrDrawTarget.cpp b/src/gpu/GrDrawTarget.cpp
|
| index 536d695d675f89c6660c58e6d5aafee7155c9816..e6f78977c1d44f238308dd8610af3c8d8f9313fd 100644
|
| --- a/src/gpu/GrDrawTarget.cpp
|
| +++ b/src/gpu/GrDrawTarget.cpp
|
| @@ -524,12 +524,12 @@ void GrDrawTarget::stencilPath(const GrPath* path, const SkStrokeRec& stroke, Sk
|
| this->onStencilPath(path, stroke, fill);
|
| }
|
|
|
| -void GrDrawTarget::fillPath(const GrPath* path, const SkStrokeRec& stroke, SkPath::FillType fill) {
|
| +void GrDrawTarget::drawPath(const GrPath* path, const SkStrokeRec& stroke, SkPath::FillType fill) {
|
| // TODO: extract portions of checkDraw that are relevant to path stenciling.
|
| SkASSERT(NULL != path);
|
| SkASSERT(this->caps()->pathRenderingSupport());
|
| SkASSERT(!stroke.isHairlineStyle());
|
| - this->onFillPath(path, stroke, fill);
|
| + this->onDrawPath(path, stroke, fill);
|
| }
|
|
|
| ////////////////////////////////////////////////////////////////////////////////
|
|
|