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

Unified Diff: src/core/SkLiteDL.h

Issue 2226513002: flesh out more of SkLiteDL: (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: better, simpler Created 4 years, 4 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
« no previous file with comments | « no previous file | src/core/SkLiteDL.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/core/SkLiteDL.h
diff --git a/src/core/SkLiteDL.h b/src/core/SkLiteDL.h
index 88c959f88d6499c96cf1f3edd34601220dc65c63..3dc87790833763a878a2ea59171b260e34591e88 100644
--- a/src/core/SkLiteDL.h
+++ b/src/core/SkLiteDL.h
@@ -20,25 +20,25 @@ public:
static sk_sp<SkLiteDL> New(SkRect);
void save();
- void saveLayer(const SkRect*, const SkPaint*, const SkImageFilter*, uint32_t) {/*TODO*/}
+ void saveLayer(const SkRect*, const SkPaint*, const SkImageFilter*, uint32_t);
void restore();
void concat (const SkMatrix&);
void setMatrix (const SkMatrix&);
void translateZ(SkScalar) {/*TODO*/}
- void clipPath (const SkPath&, SkRegion::Op, bool aa) {/*TODO*/}
- void clipRRect (const SkRRect&, SkRegion::Op, bool aa) {/*TODO*/}
+ void clipPath (const SkPath&, SkRegion::Op, bool aa);
void clipRect (const SkRect&, SkRegion::Op, bool aa);
- void clipRegion(const SkRegion&, SkRegion::Op) {/*TODO*/}
+ void clipRRect (const SkRRect&, SkRegion::Op, bool aa);
+ void clipRegion(const SkRegion&, SkRegion::Op);
- void drawPaint (const SkPaint&) {/*TODO*/}
+ void drawPaint (const SkPaint&);
void drawPath (const SkPath&, const SkPaint&);
void drawRect (const SkRect&, const SkPaint&);
- void drawOval (const SkRect&, const SkPaint&) {/*TODO*/}
- void drawRRect (const SkRRect&, const SkPaint&) {/*TODO*/}
- void drawDRRect(const SkRRect&, const SkRRect&, const SkPaint&) {/*TODO*/}
+ void drawOval (const SkRect&, const SkPaint&);
+ void drawRRect (const SkRRect&, const SkPaint&);
+ void drawDRRect(const SkRRect&, const SkRRect&, const SkPaint&);
void drawAnnotation (const SkRect&, const char*, SkData*) {/*TODO*/}
void drawDrawable (SkDrawable*, const SkMatrix*) {/*TODO*/}
« no previous file with comments | « no previous file | src/core/SkLiteDL.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698