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

Side by Side Diff: gm/circularclips.cpp

Issue 1842753002: Style bikeshed - remove extraneous whitespace (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 8 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/circles.cpp ('k') | gm/color4f.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 2013 Google Inc. 2 * Copyright 2013 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 7
8 #include "gm.h" 8 #include "gm.h"
9 #include "SkCanvas.h" 9 #include "SkCanvas.h"
10 #include "SkPath.h" 10 #include "SkPath.h"
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 fillPaint.setColor(0x80808080); 53 fillPaint.setColor(0x80808080);
54 canvas->save(); 54 canvas->save();
55 canvas->scale(10, 10); 55 canvas->scale(10, 10);
56 canvas->translate(-((fX1 + fX2)/2 - fR), -(fY - 2*fR/3)); 56 canvas->translate(-((fX1 + fX2)/2 - fR), -(fY - 2*fR/3));
57 canvas->clipPath(fCircle1, SkRegion::kReplace_Op, true); 57 canvas->clipPath(fCircle1, SkRegion::kReplace_Op, true);
58 canvas->clipPath(fCircle2, SkRegion::kIntersect_Op, true); 58 canvas->clipPath(fCircle2, SkRegion::kIntersect_Op, true);
59 59
60 canvas->drawRect(rect, fillPaint); 60 canvas->drawRect(rect, fillPaint);
61 61
62 canvas->restore(); 62 canvas->restore();
63 63
64 fillPaint.setColor(0xFF000000); 64 fillPaint.setColor(0xFF000000);
65 65
66 for (size_t i = 0; i < 4; i++) { 66 for (size_t i = 0; i < 4; i++) {
67 fCircle1.toggleInverseFillType(); 67 fCircle1.toggleInverseFillType();
68 if (i % 2 == 0) { 68 if (i % 2 == 0) {
69 fCircle2.toggleInverseFillType(); 69 fCircle2.toggleInverseFillType();
70 } 70 }
71 71
72 canvas->save(); 72 canvas->save();
73 for (size_t op = 0; op < SK_ARRAY_COUNT(ops); op++) { 73 for (size_t op = 0; op < SK_ARRAY_COUNT(ops); op++) {
(...skipping 12 matching lines...) Expand all
86 } 86 }
87 } 87 }
88 88
89 private: 89 private:
90 typedef skiagm::GM INHERITED; 90 typedef skiagm::GM INHERITED;
91 }; 91 };
92 92
93 ////////////////////////////////////////////////////////////////////////////// 93 //////////////////////////////////////////////////////////////////////////////
94 94
95 DEF_GM( return new CircularClipsGM; ) 95 DEF_GM( return new CircularClipsGM; )
OLDNEW
« no previous file with comments | « gm/circles.cpp ('k') | gm/color4f.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698