aboutsummaryrefslogtreecommitdiffhomepage
path: root/gm
diff options
context:
space:
mode:
authorGravatar reed <reed@google.com>2015-06-08 10:47:12 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-06-08 10:47:13 -0700
commitc31af44336f5eb4a50e83e76e51962d46c3ed458 (patch)
tree244dcbfbeb638de8da65980dd59707ee323c5d24 /gm
parent77dcbdeb19d26e52428e392fca0ec9a72658b746 (diff)
change SkDraw and all Blitters to use pixmap instead of bitmap
Diffstat (limited to 'gm')
-rw-r--r--gm/fatpathfill.cpp23
1 files changed, 9 insertions, 14 deletions
diff --git a/gm/fatpathfill.cpp b/gm/fatpathfill.cpp
index 1d269a0289..43e10059c1 100644
--- a/gm/fatpathfill.cpp
+++ b/gm/fatpathfill.cpp
@@ -31,22 +31,17 @@ static void draw_pixel_centers(SkCanvas* canvas) {
}
}
-static void draw_fatpath(SkCanvas* canvas, SkSurface* surface,
- const SkPath paths[], int count) {
+static void draw_fatpath(SkCanvas* canvas, SkSurface* surface, const SkPath& path) {
SkPaint paint;
surface->getCanvas()->clear(SK_ColorTRANSPARENT);
- for (int i = 0; i < count; ++i) {
- surface->getCanvas()->drawPath(paths[i], paint);
- }
+ surface->getCanvas()->drawPath(path, paint);
surface->draw(canvas, 0, 0, NULL);
paint.setAntiAlias(true);
paint.setColor(SK_ColorRED);
paint.setStyle(SkPaint::kStroke_Style);
- for (int j = 0; j < count; ++j) {
- canvas->drawPath(paths[j], paint);
- }
+ canvas->drawPath(path, paint);
draw_pixel_centers(canvas);
}
@@ -57,15 +52,15 @@ public:
protected:
- virtual SkString onShortName() {
+ SkString onShortName() override {
return SkString("fatpathfill");
}
- virtual SkISize onISize() {
+ SkISize onISize() override {
return SkISize::Make(SMALL_W * ZOOM, SMALL_H * ZOOM * REPEAT_LOOP);
}
- virtual void onDraw(SkCanvas* canvas) {
+ void onDraw(SkCanvas* canvas) override {
SkAutoTUnref<SkSurface> surface(new_surface(SMALL_W, SMALL_H));
canvas->scale(ZOOM, ZOOM);
@@ -76,10 +71,10 @@ protected:
for (int i = 0; i < REPEAT_LOOP; ++i) {
SkPath line, path;
- line.moveTo(SkIntToScalar(1), SkIntToScalar(2));
- line.lineTo(SkIntToScalar(4 + i), SkIntToScalar(1));
+ line.moveTo(1, 2);
+ line.lineTo(SkIntToScalar(4 + i), 1);
paint.getFillPath(line, &path);
- draw_fatpath(canvas, surface, &path, 1);
+ draw_fatpath(canvas, surface, path);
canvas->translate(0, SMALL_H);
}