Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(201)

Unified Diff: src/gpu/GrDefaultPathRenderer.h

Issue 23926019: Stateful PathRenderer implementation (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: clean up Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/gpu/GrDefaultPathRenderer.h
===================================================================
--- src/gpu/GrDefaultPathRenderer.h (revision 11314)
+++ src/gpu/GrDefaultPathRenderer.h (working copy)
@@ -19,28 +19,23 @@
public:
GrDefaultPathRenderer(bool separateStencilSupport, bool stencilWrapOpsSupport);
- virtual bool canDrawPath(const SkPath&,
- const SkStrokeRec&,
+ virtual bool canDrawPath(const SkStrokeRec&,
const GrDrawTarget*,
bool antiAlias) const SK_OVERRIDE;
private:
- 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;
- bool internalDrawPath(const SkPath&,
- const SkStrokeRec&,
+ bool internalDrawPath(const SkStrokeRec&,
GrDrawTarget*,
bool stencilOnly);

Powered by Google App Engine
This is Rietveld 408576698