| OLD | NEW |
| 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 SkPathWriter_DEFINED | 7 #ifndef SkPathWriter_DEFINED |
| 8 #define SkPathWriter_DEFINED | 8 #define SkPathWriter_DEFINED |
| 9 | 9 |
| 10 #include "SkPath.h" | 10 #include "SkPath.h" |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 SkPath* fPathPtr; | 34 SkPath* fPathPtr; |
| 35 SkPoint fDefer[2]; | 35 SkPoint fDefer[2]; |
| 36 SkPoint fFirstPt; | 36 SkPoint fFirstPt; |
| 37 int fCloses; | 37 int fCloses; |
| 38 int fMoves; | 38 int fMoves; |
| 39 bool fEmpty; | 39 bool fEmpty; |
| 40 bool fHasMove; | 40 bool fHasMove; |
| 41 bool fMoved; | 41 bool fMoved; |
| 42 }; | 42 }; |
| 43 | 43 |
| 44 | |
| 45 #endif /* defined(__PathOps__SkPathWriter__) */ | 44 #endif /* defined(__PathOps__SkPathWriter__) */ |
| OLD | NEW |