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

Unified Diff: gm/fatpathfill.cpp

Issue 1164373003: Revert of change SkDraw and all Blitters to use pixmap instead of bitmap (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 6 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 | « bench/CoverageBench.cpp ('k') | include/core/SkDraw.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gm/fatpathfill.cpp
diff --git a/gm/fatpathfill.cpp b/gm/fatpathfill.cpp
index 43e10059c120458aeb64b570dfa5e9d9eea5b326..1d269a02899a7baa0a7c7bb0d618b259495b13e4 100644
--- a/gm/fatpathfill.cpp
+++ b/gm/fatpathfill.cpp
@@ -31,17 +31,22 @@
}
}
-static void draw_fatpath(SkCanvas* canvas, SkSurface* surface, const SkPath& path) {
+static void draw_fatpath(SkCanvas* canvas, SkSurface* surface,
+ const SkPath paths[], int count) {
SkPaint paint;
surface->getCanvas()->clear(SK_ColorTRANSPARENT);
- surface->getCanvas()->drawPath(path, paint);
+ for (int i = 0; i < count; ++i) {
+ surface->getCanvas()->drawPath(paths[i], paint);
+ }
surface->draw(canvas, 0, 0, NULL);
paint.setAntiAlias(true);
paint.setColor(SK_ColorRED);
paint.setStyle(SkPaint::kStroke_Style);
- canvas->drawPath(path, paint);
+ for (int j = 0; j < count; ++j) {
+ canvas->drawPath(paths[j], paint);
+ }
draw_pixel_centers(canvas);
}
@@ -52,15 +57,15 @@
protected:
- SkString onShortName() override {
+ virtual SkString onShortName() {
return SkString("fatpathfill");
}
- SkISize onISize() override {
+ virtual SkISize onISize() {
return SkISize::Make(SMALL_W * ZOOM, SMALL_H * ZOOM * REPEAT_LOOP);
}
- void onDraw(SkCanvas* canvas) override {
+ virtual void onDraw(SkCanvas* canvas) {
SkAutoTUnref<SkSurface> surface(new_surface(SMALL_W, SMALL_H));
canvas->scale(ZOOM, ZOOM);
@@ -71,10 +76,10 @@
for (int i = 0; i < REPEAT_LOOP; ++i) {
SkPath line, path;
- line.moveTo(1, 2);
- line.lineTo(SkIntToScalar(4 + i), 1);
+ line.moveTo(SkIntToScalar(1), SkIntToScalar(2));
+ line.lineTo(SkIntToScalar(4 + i), SkIntToScalar(1));
paint.getFillPath(line, &path);
- draw_fatpath(canvas, surface, path);
+ draw_fatpath(canvas, surface, &path, 1);
canvas->translate(0, SMALL_H);
}
« no previous file with comments | « bench/CoverageBench.cpp ('k') | include/core/SkDraw.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698