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

Side by Side Diff: gm/circularclips.cpp

Issue 2357333002: allow clip calls w/o op param, remove unnecessary kReplace ops (Closed)
Patch Set: Created 4 years, 3 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/bigblurs.cpp ('k') | gm/clip_strokerect.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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 47
48 SkRect rect = SkRect::MakeLTRB(fX1 - fR, fY - fR, fX2 + fR, fY + fR); 48 SkRect rect = SkRect::MakeLTRB(fX1 - fR, fY - fR, fX2 + fR, fY + fR);
49 49
50 SkPaint fillPaint; 50 SkPaint fillPaint;
51 51
52 // Giant background circular clips (AA, non-inverted, replace/isect) 52 // Giant background circular clips (AA, non-inverted, replace/isect)
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, SkCanvas::kReplace_Op, true); 57 canvas->clipPath(fCircle1, true);
58 canvas->clipPath(fCircle2, SkCanvas::kIntersect_Op, true); 58 canvas->clipPath(fCircle2, 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++) {
74 canvas->save(); 74 canvas->save();
75 75
76 canvas->clipPath(fCircle1, SkCanvas::kReplace_Op); 76 canvas->clipPath(fCircle1);
77 canvas->clipPath(fCircle2, ops[op]); 77 canvas->clipPath(fCircle2, ops[op]);
78 78
79 canvas->drawRect(rect, fillPaint); 79 canvas->drawRect(rect, fillPaint);
80 80
81 canvas->restore(); 81 canvas->restore();
82 canvas->translate(0, 2 * fY); 82 canvas->translate(0, 2 * fY);
83 } 83 }
84 canvas->restore(); 84 canvas->restore();
85 canvas->translate(fX1 + fX2, 0); 85 canvas->translate(fX1 + fX2, 0);
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/bigblurs.cpp ('k') | gm/clip_strokerect.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698