aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/GrPath.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gpu/GrPath.h')
-rw-r--r--src/gpu/GrPath.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/gpu/GrPath.h b/src/gpu/GrPath.h
index 975dad0afd..4cb12f4325 100644
--- a/src/gpu/GrPath.h
+++ b/src/gpu/GrPath.h
@@ -36,18 +36,6 @@ public:
const SkRect& getBounds() const { return fBounds; }
GrPathRendering::FillType getFillType() const { return fFillType; }
-
- /**
- * Returns true if a path can be drawn in the same draw paths operation as the other
- * path. Should return true only when the condition holds transitively with all other paths in
- * the same group.
- * E.g.
- * canCombineDrawPathBatchWith(a) AND canCombineDrawPathBatchWith(b)
- * canCombineDrawPathBatchWith(a) AND canCombineDrawPathBatchWith(c)
- * implies
- * canCombineDrawPathBatchWith(b) AND canCombineDrawPathBatchWith(c)
- */
- virtual bool canCombineDrawPathBatchWith(const GrPath& other) const = 0;
#ifdef SK_DEBUG
bool isEqualTo(const SkPath& path, const GrStrokeInfo& stroke) const;
#endif