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

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

Issue 463883002: fix pathops skp-derived bugs; add more failing tests (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 | « no previous file | src/pathops/SkOpContour.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 SkOpAngle_DEFINED 7 #ifndef SkOpAngle_DEFINED
8 #define SkOpAngle_DEFINED 8 #define SkOpAngle_DEFINED
9 9
10 #include "SkChunkAlloc.h" 10 #include "SkChunkAlloc.h"
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 }; 153 };
154 154
155 class SkOpAngleSet { 155 class SkOpAngleSet {
156 public: 156 public:
157 SkOpAngleSet(); 157 SkOpAngleSet();
158 ~SkOpAngleSet(); 158 ~SkOpAngleSet();
159 SkOpAngle& push_back(); 159 SkOpAngle& push_back();
160 void reset(); 160 void reset();
161 private: 161 private:
162 void dump() const; // utility to be called by user from debugger 162 void dump() const; // utility to be called by user from debugger
163 SkChunkAlloc* fAngles;
163 #if DEBUG_ANGLE 164 #if DEBUG_ANGLE
164 int fCount; 165 int fCount;
165 #endif 166 #endif
166 SkChunkAlloc* fAngles;
167 }; 167 };
168 168
169 #endif 169 #endif
OLDNEW
« no previous file with comments | « no previous file | src/pathops/SkOpContour.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698