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

Unified Diff: gm/quadpaths.cpp

Issue 326523002: Cleanup: Get rid of make_isize() function from gm.h. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: rebase Created 6 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 | « gm/points.cpp ('k') | gm/rects.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gm/quadpaths.cpp
diff --git a/gm/quadpaths.cpp b/gm/quadpaths.cpp
index decf50a96edaf54a8f5f5f6919d2a80413f281e3..f21fdd98e1496725943cb1da3022cbbcac628373 100644
--- a/gm/quadpaths.cpp
+++ b/gm/quadpaths.cpp
@@ -24,7 +24,7 @@ protected:
return SkString("quadpath");
}
- SkISize onISize() { return make_isize(1240, 390); }
+ SkISize onISize() { return SkISize::Make(1240, 390); }
void drawPath(SkPath& path,SkCanvas* canvas,SkColor color,
const SkRect& clip,SkPaint::Cap cap, SkPaint::Join join,
@@ -170,7 +170,7 @@ protected:
return SkString("quadclosepath");
}
- SkISize onISize() { return make_isize(1240, 390); }
+ SkISize onISize() { return SkISize::Make(1240, 390); }
void drawPath(SkPath& path,SkCanvas* canvas,SkColor color,
const SkRect& clip,SkPaint::Cap cap, SkPaint::Join join,
« no previous file with comments | « gm/points.cpp ('k') | gm/rects.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698