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

Unified Diff: src/gpu/GrSoftwarePathRenderer.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/GrSoftwarePathRenderer.h
===================================================================
--- src/gpu/GrSoftwarePathRenderer.h (revision 11314)
+++ src/gpu/GrSoftwarePathRenderer.h (working copy)
@@ -24,17 +24,14 @@
: fContext(context) {
}
- 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;

Powered by Google App Engine
This is Rietveld 408576698