OLD | NEW |
1 | |
2 /* | 1 /* |
3 * Copyright 2011 Google Inc. | 2 * Copyright 2011 Google Inc. |
4 * | 3 * |
5 * 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 |
6 * found in the LICENSE file. | 5 * found in the LICENSE file. |
7 */ | 6 */ |
8 #include "SkEdgeBuilder.h" | 7 #include "SkEdgeBuilder.h" |
9 #include "SkPath.h" | 8 #include "SkPath.h" |
10 #include "SkEdge.h" | 9 #include "SkEdge.h" |
11 #include "SkEdgeClipper.h" | 10 #include "SkEdgeClipper.h" |
(...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
327 } | 326 } |
328 default: | 327 default: |
329 SkDEBUGFAIL("unexpected verb"); | 328 SkDEBUGFAIL("unexpected verb"); |
330 break; | 329 break; |
331 } | 330 } |
332 } | 331 } |
333 } | 332 } |
334 fEdgeList = fList.begin(); | 333 fEdgeList = fList.begin(); |
335 return fList.count(); | 334 return fList.count(); |
336 } | 335 } |
OLD | NEW |