OLD | NEW |
1 | 1 |
2 /* | 2 /* |
3 * Copyright 2011 Google Inc. | 3 * Copyright 2011 Google Inc. |
4 * | 4 * |
5 * Use of this source code is governed by a BSD-style license that can be | 5 * Use of this source code is governed by a BSD-style license that can be |
6 * found in the LICENSE file. | 6 * found in the LICENSE file. |
7 */ | 7 */ |
8 | 8 |
9 #include "GrAAHairLinePathRenderer.h" | 9 #include "GrAAHairLinePathRenderer.h" |
10 | 10 |
(...skipping 1170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1181 kVertsPerQuad*n, // vCount | 1181 kVertsPerQuad*n, // vCount |
1182 kIdxsPerQuad*n, // iCount | 1182 kIdxsPerQuad*n, // iCount |
1183 &devBounds); | 1183 &devBounds); |
1184 conics += n; | 1184 conics += n; |
1185 } | 1185 } |
1186 } | 1186 } |
1187 target->resetIndexSource(); | 1187 target->resetIndexSource(); |
1188 | 1188 |
1189 return true; | 1189 return true; |
1190 } | 1190 } |
1191 | |
OLD | NEW |