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

Side by Side Diff: src/pathops/SkPathOpsBounds.h

Issue 461363003: add const to arrays of member functions (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 4 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/pathops/SkIntersections.cpp ('k') | src/pathops/SkPathOpsBounds.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 2012 Google Inc. 2 * Copyright 2012 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 #ifndef SkPathOpBounds_DEFINED 7 #ifndef SkPathOpBounds_DEFINED
8 #define SkPathOpBounds_DEFINED 8 #define SkPathOpBounds_DEFINED
9 9
10 #include "SkPathOpsRect.h" 10 #include "SkPathOpsRect.h"
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 void setQuadBounds(const SkPoint a[3]); 60 void setQuadBounds(const SkPoint a[3]);
61 61
62 void setPointBounds(const SkPoint& pt) { 62 void setPointBounds(const SkPoint& pt) {
63 fLeft = fRight = pt.fX; 63 fLeft = fRight = pt.fX;
64 fTop = fBottom = pt.fY; 64 fTop = fBottom = pt.fY;
65 } 65 }
66 66
67 typedef SkRect INHERITED; 67 typedef SkRect INHERITED;
68 }; 68 };
69 69
70 extern void (SkPathOpsBounds::*SetCurveBounds[])(const SkPoint[]); 70 extern void (SkPathOpsBounds::* const SetCurveBounds[])(const SkPoint[]);
71 71
72 #endif 72 #endif
OLDNEW
« no previous file with comments | « src/pathops/SkIntersections.cpp ('k') | src/pathops/SkPathOpsBounds.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698