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

Unified Diff: gm/linepaths.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/lcdtext.cpp ('k') | gm/matrixconvolution.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gm/linepaths.cpp
diff --git a/gm/linepaths.cpp b/gm/linepaths.cpp
index 3b0ae75461e9baa7ad05f4693ece6ab63a882b5e..ea4fdc887faef5f912f95bdd79b4c7b3741f55f9 100644
--- a/gm/linepaths.cpp
+++ b/gm/linepaths.cpp
@@ -24,7 +24,7 @@ protected:
return SkString("linepath");
}
- 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,
@@ -165,7 +165,7 @@ protected:
return SkString("lineclosepath");
}
- 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/lcdtext.cpp ('k') | gm/matrixconvolution.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698