Revert of r13384 (Stateful PathRenderer implementation)

https://codereview.chromium.org/142543007/



git-svn-id: http://skia.googlecode.com/svn/trunk@13409 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/src/gpu/GrAAHairLinePathRenderer.cpp b/src/gpu/GrAAHairLinePathRenderer.cpp
index 7f15266..830f513 100644
--- a/src/gpu/GrAAHairLinePathRenderer.cpp
+++ b/src/gpu/GrAAHairLinePathRenderer.cpp
@@ -826,7 +826,8 @@
     return true;
 }
 
-bool GrAAHairLinePathRenderer::canDrawPath(const SkStrokeRec& stroke,
+bool GrAAHairLinePathRenderer::canDrawPath(const SkPath& path,
+                                           const SkStrokeRec& stroke,
                                            const GrDrawTarget* target,
                                            bool antiAlias) const {
     if (!antiAlias) {
@@ -839,7 +840,7 @@
         return false;
     }
 
-    if (SkPath::kLine_SegmentMask == this->path().getSegmentMasks() ||
+    if (SkPath::kLine_SegmentMask == path.getSegmentMasks() ||
         target->caps()->shaderDerivativeSupport()) {
         return true;
     }
@@ -883,7 +884,8 @@
     return true;
 }
 
-bool GrAAHairLinePathRenderer::onDrawPath(const SkStrokeRec& stroke,
+bool GrAAHairLinePathRenderer::onDrawPath(const SkPath& path,
+                                          const SkStrokeRec& stroke,
                                           GrDrawTarget* target,
                                           bool antiAlias) {
     GrDrawState* drawState = target->drawState();
@@ -908,7 +910,7 @@
     PREALLOC_PTARRAY(128) conics;
     IntArray qSubdivs;
     FloatArray cWeights;
-    quadCnt = generate_lines_and_quads(this->path(), drawState->getViewMatrix(), devClipBounds,
+    quadCnt = generate_lines_and_quads(path, drawState->getViewMatrix(), devClipBounds,
                                        &lines, &quads, &conics, &qSubdivs, &cWeights);
     lineCnt = lines.count() / 2;
     conicCnt = conics.count() / 3;
@@ -918,7 +920,7 @@
         GrDrawTarget::AutoReleaseGeometry arg;
         SkRect devBounds;
 
-        if (!this->createLineGeom(this->path(),
+        if (!this->createLineGeom(path,
                                   target,
                                   lines,
                                   lineCnt,
@@ -964,7 +966,7 @@
         GrDrawTarget::AutoReleaseGeometry arg;
         SkRect devBounds;
 
-        if (!this->createBezierGeom(this->path(),
+        if (!this->createBezierGeom(path,
                                     target,
                                     quads,
                                     quadCnt,