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

Side by Side Diff: src/core/SkRasterClip.h

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 | « src/core/SkRTree.h ('k') | src/core/SkRasterClip.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 2010 Google Inc. 2 * Copyright 2010 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 #ifndef SkRasterClip_DEFINED 8 #ifndef SkRasterClip_DEFINED
9 #define SkRasterClip_DEFINED 9 #define SkRasterClip_DEFINED
10 10
(...skipping 30 matching lines...) Expand all
41 const SkIRect& getBounds() const; 41 const SkIRect& getBounds() const;
42 42
43 bool setEmpty(); 43 bool setEmpty();
44 bool setRect(const SkIRect&); 44 bool setRect(const SkIRect&);
45 45
46 bool op(const SkIRect&, SkRegion::Op); 46 bool op(const SkIRect&, SkRegion::Op);
47 bool op(const SkRegion&, SkRegion::Op); 47 bool op(const SkRegion&, SkRegion::Op);
48 bool op(const SkRect&, const SkIRect&, SkRegion::Op, bool doAA); 48 bool op(const SkRect&, const SkIRect&, SkRegion::Op, bool doAA);
49 bool op(const SkRRect&, const SkIRect&, SkRegion::Op, bool doAA); 49 bool op(const SkRRect&, const SkIRect&, SkRegion::Op, bool doAA);
50 bool op(const SkPath&, const SkIRect&, SkRegion::Op, bool doAA); 50 bool op(const SkPath&, const SkIRect&, SkRegion::Op, bool doAA);
51 51
52 void translate(int dx, int dy, SkRasterClip* dst) const; 52 void translate(int dx, int dy, SkRasterClip* dst) const;
53 void translate(int dx, int dy) { 53 void translate(int dx, int dy) {
54 this->translate(dx, dy, this); 54 this->translate(dx, dy, this);
55 } 55 }
56 56
57 bool quickContains(const SkIRect& rect) const; 57 bool quickContains(const SkIRect& rect) const;
58 bool quickContains(int left, int top, int right, int bottom) const { 58 bool quickContains(int left, int top, int right, int bottom) const {
59 return quickContains(SkIRect::MakeLTRB(left, top, right, bottom)); 59 return quickContains(SkIRect::MakeLTRB(left, top, right, bottom));
60 } 60 }
61 61
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 169
170 private: 170 private:
171 SkRegion fBWRgn; 171 SkRegion fBWRgn;
172 SkAAClipBlitter fAABlitter; 172 SkAAClipBlitter fAABlitter;
173 // what we return 173 // what we return
174 const SkRegion* fClipRgn; 174 const SkRegion* fClipRgn;
175 SkBlitter* fBlitter; 175 SkBlitter* fBlitter;
176 }; 176 };
177 177
178 #endif 178 #endif
OLDNEW
« no previous file with comments | « src/core/SkRTree.h ('k') | src/core/SkRasterClip.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698