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

Side by Side Diff: gm/quadpaths.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 unified diff | Download patch
« no previous file with comments | « gm/points.cpp ('k') | gm/rects.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2011 Google Inc. 2 * Copyright 2011 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 #include "gm.h" 7 #include "gm.h"
8 #include "SkCanvas.h" 8 #include "SkCanvas.h"
9 #include "SkPaint.h" 9 #include "SkPaint.h"
10 #include "SkRandom.h" 10 #include "SkRandom.h"
11 11
12 namespace skiagm { 12 namespace skiagm {
13 13
14 class QuadPathGM : public GM { 14 class QuadPathGM : public GM {
15 public: 15 public:
16 QuadPathGM() {} 16 QuadPathGM() {}
17 17
18 protected: 18 protected:
19 virtual uint32_t onGetFlags() const SK_OVERRIDE { 19 virtual uint32_t onGetFlags() const SK_OVERRIDE {
20 return kSkipTiled_Flag; 20 return kSkipTiled_Flag;
21 } 21 }
22 22
23 SkString onShortName() { 23 SkString onShortName() {
24 return SkString("quadpath"); 24 return SkString("quadpath");
25 } 25 }
26 26
27 SkISize onISize() { return make_isize(1240, 390); } 27 SkISize onISize() { return SkISize::Make(1240, 390); }
28 28
29 void drawPath(SkPath& path,SkCanvas* canvas,SkColor color, 29 void drawPath(SkPath& path,SkCanvas* canvas,SkColor color,
30 const SkRect& clip,SkPaint::Cap cap, SkPaint::Join join, 30 const SkRect& clip,SkPaint::Cap cap, SkPaint::Join join,
31 SkPaint::Style style, SkPath::FillType fill, 31 SkPaint::Style style, SkPath::FillType fill,
32 SkScalar strokeWidth) { 32 SkScalar strokeWidth) {
33 path.setFillType(fill); 33 path.setFillType(fill);
34 SkPaint paint; 34 SkPaint paint;
35 paint.setStrokeCap(cap); 35 paint.setStrokeCap(cap);
36 paint.setStrokeWidth(strokeWidth); 36 paint.setStrokeWidth(strokeWidth);
37 paint.setStrokeJoin(join); 37 paint.setStrokeJoin(join);
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 163
164 protected: 164 protected:
165 virtual uint32_t onGetFlags() const SK_OVERRIDE { 165 virtual uint32_t onGetFlags() const SK_OVERRIDE {
166 return kSkipTiled_Flag; 166 return kSkipTiled_Flag;
167 } 167 }
168 168
169 SkString onShortName() { 169 SkString onShortName() {
170 return SkString("quadclosepath"); 170 return SkString("quadclosepath");
171 } 171 }
172 172
173 SkISize onISize() { return make_isize(1240, 390); } 173 SkISize onISize() { return SkISize::Make(1240, 390); }
174 174
175 void drawPath(SkPath& path,SkCanvas* canvas,SkColor color, 175 void drawPath(SkPath& path,SkCanvas* canvas,SkColor color,
176 const SkRect& clip,SkPaint::Cap cap, SkPaint::Join join, 176 const SkRect& clip,SkPaint::Cap cap, SkPaint::Join join,
177 SkPaint::Style style, SkPath::FillType fill, 177 SkPaint::Style style, SkPath::FillType fill,
178 SkScalar strokeWidth) { 178 SkScalar strokeWidth) {
179 path.setFillType(fill); 179 path.setFillType(fill);
180 SkPaint paint; 180 SkPaint paint;
181 paint.setStrokeCap(cap); 181 paint.setStrokeCap(cap);
182 paint.setStrokeWidth(strokeWidth); 182 paint.setStrokeWidth(strokeWidth);
183 paint.setStrokeJoin(join); 183 paint.setStrokeJoin(join);
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
306 306
307 ////////////////////////////////////////////////////////////////////////////// 307 //////////////////////////////////////////////////////////////////////////////
308 308
309 static GM* QuadPathFactory(void*) { return new QuadPathGM; } 309 static GM* QuadPathFactory(void*) { return new QuadPathGM; }
310 static GMRegistry regQuadPath(QuadPathFactory); 310 static GMRegistry regQuadPath(QuadPathFactory);
311 311
312 static GM* QuadClosePathFactory(void*) { return new QuadClosePathGM; } 312 static GM* QuadClosePathFactory(void*) { return new QuadClosePathGM; }
313 static GMRegistry regQuadClosePath(QuadClosePathFactory); 313 static GMRegistry regQuadClosePath(QuadClosePathFactory);
314 314
315 } 315 }
OLDNEW
« 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