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

Side by Side Diff: gm/filltypes.cpp

Issue 831113002: Cleanup: More override fixes - another round. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 11 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/coloremoji.cpp ('k') | gm/filltypespersp.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 /* 2 /*
3 * Copyright 2011 Google Inc. 3 * Copyright 2011 Google Inc.
4 * 4 *
5 * Use of this source code is governed by a BSD-style license that can be 5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 6 * found in the LICENSE file.
7 */ 7 */
8 #include "gm.h" 8 #include "gm.h"
9 9
10 namespace skiagm { 10 namespace skiagm {
(...skipping 11 matching lines...) Expand all
22 fPath.addCircle(SkIntToScalar(50), SkIntToScalar(50), radius); 22 fPath.addCircle(SkIntToScalar(50), SkIntToScalar(50), radius);
23 fPath.addCircle(SkIntToScalar(100), SkIntToScalar(100), radius); 23 fPath.addCircle(SkIntToScalar(100), SkIntToScalar(100), radius);
24 } 24 }
25 } 25 }
26 26
27 protected: 27 protected:
28 virtual uint32_t onGetFlags() const SK_OVERRIDE { 28 virtual uint32_t onGetFlags() const SK_OVERRIDE {
29 return kSkipTiled_Flag; 29 return kSkipTiled_Flag;
30 } 30 }
31 31
32 virtual SkString onShortName() { 32 virtual SkString onShortName() SK_OVERRIDE {
33 return SkString("filltypes"); 33 return SkString("filltypes");
34 } 34 }
35 35
36 virtual SkISize onISize() { 36 virtual SkISize onISize() SK_OVERRIDE {
37 return SkISize::Make(835, 840); 37 return SkISize::Make(835, 840);
38 } 38 }
39 39
40 void showPath(SkCanvas* canvas, int x, int y, SkPath::FillType ft, 40 void showPath(SkCanvas* canvas, int x, int y, SkPath::FillType ft,
41 SkScalar scale, const SkPaint& paint) { 41 SkScalar scale, const SkPaint& paint) {
42
43 const SkRect r = { 0, 0, SkIntToScalar(150), SkIntToScalar(150) }; 42 const SkRect r = { 0, 0, SkIntToScalar(150), SkIntToScalar(150) };
44 43
45 canvas->save(); 44 canvas->save();
46 canvas->translate(SkIntToScalar(x), SkIntToScalar(y)); 45 canvas->translate(SkIntToScalar(x), SkIntToScalar(y));
47 canvas->clipRect(r); 46 canvas->clipRect(r);
48 canvas->drawColor(SK_ColorWHITE); 47 canvas->drawColor(SK_ColorWHITE);
49 fPath.setFillType(ft); 48 fPath.setFillType(ft);
50 canvas->translate(r.centerX(), r.centerY()); 49 canvas->translate(r.centerX(), r.centerY());
51 canvas->scale(scale, scale); 50 canvas->scale(scale, scale);
52 canvas->translate(-r.centerX(), -r.centerY()); 51 canvas->translate(-r.centerX(), -r.centerY());
53 canvas->drawPath(fPath, paint); 52 canvas->drawPath(fPath, paint);
54 canvas->restore(); 53 canvas->restore();
55 } 54 }
56 55
57 void showFour(SkCanvas* canvas, SkScalar scale, const SkPaint& paint) { 56 void showFour(SkCanvas* canvas, SkScalar scale, const SkPaint& paint) {
58 showPath(canvas, 0, 0, SkPath::kWinding_FillType, 57 showPath(canvas, 0, 0, SkPath::kWinding_FillType,
59 scale, paint); 58 scale, paint);
60 showPath(canvas, 200, 0, SkPath::kEvenOdd_FillType, 59 showPath(canvas, 200, 0, SkPath::kEvenOdd_FillType,
61 scale, paint); 60 scale, paint);
62 showPath(canvas, 00, 200, SkPath::kInverseWinding_FillType, 61 showPath(canvas, 00, 200, SkPath::kInverseWinding_FillType,
63 scale, paint); 62 scale, paint);
64 showPath(canvas, 200, 200, SkPath::kInverseEvenOdd_FillType, 63 showPath(canvas, 200, 200, SkPath::kInverseEvenOdd_FillType,
65 scale, paint); 64 scale, paint);
66 } 65 }
67 66
68 virtual void onDraw(SkCanvas* canvas) { 67 virtual void onDraw(SkCanvas* canvas) SK_OVERRIDE {
69 this->makePath(); 68 this->makePath();
70 69
71 canvas->translate(SkIntToScalar(20), SkIntToScalar(20)); 70 canvas->translate(SkIntToScalar(20), SkIntToScalar(20));
72 71
73 SkPaint paint; 72 SkPaint paint;
74 const SkScalar scale = SkIntToScalar(5)/4; 73 const SkScalar scale = SkIntToScalar(5)/4;
75 74
76 paint.setAntiAlias(false); 75 paint.setAntiAlias(false);
77 76
78 showFour(canvas, SK_Scalar1, paint); 77 showFour(canvas, SK_Scalar1, paint);
(...skipping 11 matching lines...) Expand all
90 private: 89 private:
91 typedef GM INHERITED; 90 typedef GM INHERITED;
92 }; 91 };
93 92
94 ////////////////////////////////////////////////////////////////////////////// 93 //////////////////////////////////////////////////////////////////////////////
95 94
96 static GM* MyFactory(void*) { return new FillTypeGM; } 95 static GM* MyFactory(void*) { return new FillTypeGM; }
97 static GMRegistry reg(MyFactory); 96 static GMRegistry reg(MyFactory);
98 97
99 } 98 }
OLDNEW
« no previous file with comments | « gm/coloremoji.cpp ('k') | gm/filltypespersp.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698