| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2015 Google Inc. | 2 * Copyright 2015 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 GrStrokeRectBatch_DEFINED | 8 #ifndef GrStrokeRectBatch_DEFINED |
| 9 #define GrStrokeRectBatch_DEFINED | 9 #define GrStrokeRectBatch_DEFINED |
| 10 | 10 |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 }; | 70 }; |
| 71 | 71 |
| 72 const static int kVertsPerHairlineRect = 5; | 72 const static int kVertsPerHairlineRect = 5; |
| 73 const static int kVertsPerStrokeRect = 10; | 73 const static int kVertsPerStrokeRect = 10; |
| 74 | 74 |
| 75 BatchTracker fBatch; | 75 BatchTracker fBatch; |
| 76 SkSTArray<1, Geometry, true> fGeoData; | 76 SkSTArray<1, Geometry, true> fGeoData; |
| 77 }; | 77 }; |
| 78 | 78 |
| 79 #endif | 79 #endif |
| OLD | NEW |