Index: src/gpu/GrTessellatingPathRenderer.h |
diff --git a/src/gpu/GrTessellatingPathRenderer.h b/src/gpu/GrTessellatingPathRenderer.h |
deleted file mode 100644 |
index 7598ceb065a7995530ddb99e41d847203ea81276..0000000000000000000000000000000000000000 |
--- a/src/gpu/GrTessellatingPathRenderer.h |
+++ /dev/null |
@@ -1,33 +0,0 @@ |
-/* |
- * Copyright 2015 Google Inc. |
- * |
- * Use of this source code is governed by a BSD-style license that can be |
- * found in the LICENSE file. |
- */ |
- |
-#ifndef GrTessellatingPathRenderer_DEFINED |
-#define GrTessellatingPathRenderer_DEFINED |
- |
-#include "GrPathRenderer.h" |
- |
-/** |
- * Subclass that renders the path by converting to screen-space trapezoids plus |
- * extra 1-pixel geometry for AA. |
- */ |
-class SK_API GrTessellatingPathRenderer : public GrPathRenderer { |
-public: |
- GrTessellatingPathRenderer(); |
- |
-private: |
- bool onCanDrawPath(const CanDrawPathArgs& ) const override; |
- |
- StencilSupport onGetStencilSupport(const SkPath&, const GrStrokeInfo&) const override { |
- return GrPathRenderer::kNoSupport_StencilSupport; |
- } |
- |
- bool onDrawPath(const DrawPathArgs&) override; |
- |
- typedef GrPathRenderer INHERITED; |
-}; |
- |
-#endif |