| 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 #ifndef GrAAHairLinePathRenderer_DEFINED | 9 #ifndef GrAAHairLinePathRenderer_DEFINED |
| 10 #define GrAAHairLinePathRenderer_DEFINED | 10 #define GrAAHairLinePathRenderer_DEFINED |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 bool createBezierGeom(GrDrawTarget* target, | 50 bool createBezierGeom(GrDrawTarget* target, |
| 51 GrDrawState*, | 51 GrDrawState*, |
| 52 GrDrawTarget::AutoReleaseGeometry* arg, | 52 GrDrawTarget::AutoReleaseGeometry* arg, |
| 53 SkRect* devBounds, | 53 SkRect* devBounds, |
| 54 const SkPath& path, | 54 const SkPath& path, |
| 55 const PtArray& quads, | 55 const PtArray& quads, |
| 56 int quadCnt, | 56 int quadCnt, |
| 57 const PtArray& conics, | 57 const PtArray& conics, |
| 58 int conicCnt, | 58 int conicCnt, |
| 59 const IntArray& qSubdivs, | 59 const IntArray& qSubdivs, |
| 60 const FloatArray& cWeights); | 60 const FloatArray& cWeights, |
| 61 size_t vertexStride); |
| 61 | 62 |
| 62 const GrIndexBuffer* fLinesIndexBuffer; | 63 const GrIndexBuffer* fLinesIndexBuffer; |
| 63 const GrIndexBuffer* fQuadsIndexBuffer; | 64 const GrIndexBuffer* fQuadsIndexBuffer; |
| 64 | 65 |
| 65 typedef GrPathRenderer INHERITED; | 66 typedef GrPathRenderer INHERITED; |
| 66 }; | 67 }; |
| 67 | 68 |
| 68 | 69 |
| 69 #endif | 70 #endif |
| OLD | NEW |