aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/GrSoftwarePathRenderer.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gpu/GrSoftwarePathRenderer.h')
-rw-r--r--src/gpu/GrSoftwarePathRenderer.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/gpu/GrSoftwarePathRenderer.h b/src/gpu/GrSoftwarePathRenderer.h
index 6e8cec4e13..f8c5620f49 100644
--- a/src/gpu/GrSoftwarePathRenderer.h
+++ b/src/gpu/GrSoftwarePathRenderer.h
@@ -24,14 +24,17 @@ public:
: fContext(context) {
}
- virtual bool canDrawPath(const SkStrokeRec&,
+ virtual bool canDrawPath(const SkPath&,
+ const SkStrokeRec&,
const GrDrawTarget*,
bool antiAlias) const SK_OVERRIDE;
protected:
- virtual StencilSupport onGetStencilSupport(const SkStrokeRec&,
+ virtual StencilSupport onGetStencilSupport(const SkPath&,
+ const SkStrokeRec&,
const GrDrawTarget*) const SK_OVERRIDE;
- virtual bool onDrawPath(const SkStrokeRec&,
+ virtual bool onDrawPath(const SkPath&,
+ const SkStrokeRec&,
GrDrawTarget*,
bool antiAlias) SK_OVERRIDE;