| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2014 Google Inc. | 2 * Copyright 2014 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 SkVertState_DEFINED | 8 #ifndef SkVertState_DEFINED |
| 9 #define SkVertState_DEFINED | 9 #define SkVertState_DEFINED |
| 10 | 10 |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 | 49 |
| 50 static bool Triangles(VertState*); | 50 static bool Triangles(VertState*); |
| 51 static bool TrianglesX(VertState*); | 51 static bool TrianglesX(VertState*); |
| 52 static bool TriangleStrip(VertState*); | 52 static bool TriangleStrip(VertState*); |
| 53 static bool TriangleStripX(VertState*); | 53 static bool TriangleStripX(VertState*); |
| 54 static bool TriangleFan(VertState*); | 54 static bool TriangleFan(VertState*); |
| 55 static bool TriangleFanX(VertState*); | 55 static bool TriangleFanX(VertState*); |
| 56 }; | 56 }; |
| 57 | 57 |
| 58 #endif | 58 #endif |
| OLD | NEW |