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

Unified Diff: gm/selftest.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/samplerstress.cpp ('k') | gm/shaderbounds.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gm/selftest.cpp
diff --git a/gm/selftest.cpp b/gm/selftest.cpp
index dd6e67b50b491954b4ce6d3a5ca78a816337ef0a..a332c5d15d5c853e48530c4bd7e3c325cba44224 100644
--- a/gm/selftest.cpp
+++ b/gm/selftest.cpp
@@ -26,7 +26,7 @@ protected:
return fName;
}
- SkISize onISize() { return skiagm::make_isize(kWidth, kHeight); }
+ SkISize onISize() { return SkISize::Make(kWidth, kHeight); }
virtual void onDraw(SkCanvas* canvas) {
SkPaint paint;
« no previous file with comments | « gm/samplerstress.cpp ('k') | gm/shaderbounds.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698