aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/GrStencilAndCoverPathRenderer.h
diff options
context:
space:
mode:
authorGravatar robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2014-02-10 16:46:23 +0000
committerGravatar robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2014-02-10 16:46:23 +0000
commit3e0c64ad1e5e12aca2907a1384ee7dc3d39d5148 (patch)
treef52833d3ae2b671a3b0dfa890b912fc5611bb7cb /src/gpu/GrStencilAndCoverPathRenderer.h
parent0888b7534c4b3b1cb17ac428881334e1169c3d9f (diff)
Stateful PathRenderer implementation
Diffstat (limited to 'src/gpu/GrStencilAndCoverPathRenderer.h')
-rw-r--r--src/gpu/GrStencilAndCoverPathRenderer.h12
1 files changed, 4 insertions, 8 deletions
diff --git a/src/gpu/GrStencilAndCoverPathRenderer.h b/src/gpu/GrStencilAndCoverPathRenderer.h
index 9ebcec9858..4cd6581503 100644
--- a/src/gpu/GrStencilAndCoverPathRenderer.h
+++ b/src/gpu/GrStencilAndCoverPathRenderer.h
@@ -25,23 +25,19 @@ public:
virtual ~GrStencilAndCoverPathRenderer();
- virtual bool canDrawPath(const SkPath&,
- const SkStrokeRec&,
+ virtual bool canDrawPath(const SkStrokeRec&,
const GrDrawTarget*,
bool antiAlias) const SK_OVERRIDE;
protected:
- virtual StencilSupport onGetStencilSupport(const SkPath&,
- const SkStrokeRec&,
+ virtual StencilSupport onGetStencilSupport(const SkStrokeRec&,
const GrDrawTarget*) const SK_OVERRIDE;
- virtual bool onDrawPath(const SkPath&,
- const SkStrokeRec&,
+ virtual bool onDrawPath(const SkStrokeRec&,
GrDrawTarget*,
bool antiAlias) SK_OVERRIDE;
- virtual void onStencilPath(const SkPath&,
- const SkStrokeRec&,
+ virtual void onStencilPath(const SkStrokeRec&,
GrDrawTarget*) SK_OVERRIDE;
private: