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

Unified Diff: gm/rrects.cpp

Issue 281383013: skiagm::make_isize -> SkISize::Make (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 7 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/roundrects.cpp ('k') | gm/samplerstress.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gm/rrects.cpp
diff --git a/gm/rrects.cpp b/gm/rrects.cpp
index 8e4b199c72a3e70d8af617e6a8f06bac09422e96..795a61575b19d2160a732896a940b8a90ae1c488 100644
--- a/gm/rrects.cpp
+++ b/gm/rrects.cpp
@@ -54,7 +54,9 @@ protected:
return name;
}
- virtual SkISize onISize() SK_OVERRIDE { return make_isize(kImageWidth, kImageHeight); }
+ virtual SkISize onISize() SK_OVERRIDE {
+ return SkISize::Make(kImageWidth, kImageHeight);
+ }
virtual uint32_t onGetFlags() const SK_OVERRIDE {
if (kEffect_Type == fType) {
« no previous file with comments | « gm/roundrects.cpp ('k') | gm/samplerstress.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698