aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/SkLiteDL.h
diff options
context:
space:
mode:
authorGravatar mtklein <mtklein@chromium.org>2016-08-06 15:28:11 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-08-06 15:28:11 -0700
commit6f8411dfa4506564d9886c08cceb154713feb3f8 (patch)
treef4083007cbf9fd788bce6c45f65849e44c5dbb98 /src/core/SkLiteDL.h
parent9c5052f16b249d2b7674ea86bd24ed0038ccc61f (diff)
flesh out more of SkLiteDL:
save layer, clips, simple draws BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2226513002 Review-Url: https://codereview.chromium.org/2226513002
Diffstat (limited to 'src/core/SkLiteDL.h')
-rw-r--r--src/core/SkLiteDL.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/core/SkLiteDL.h b/src/core/SkLiteDL.h
index 88c959f88d..3dc8779083 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*/}