| 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 |
| 11 | 11 |
| 12 #include "GrPathRenderer.h" | 12 #include "GrPathRenderer.h" |
| 13 | 13 |
| 14 class GrAAHairLinePathRenderer : public GrPathRenderer { | 14 class GrAAHairLinePathRenderer : public GrPathRenderer { |
| 15 public: | 15 public: |
| 16 virtual ~GrAAHairLinePathRenderer(); | 16 virtual ~GrAAHairLinePathRenderer(); |
| 17 | 17 |
| 18 static GrPathRenderer* Create(GrContext* context); | 18 static GrPathRenderer* Create(GrContext* context); |
| 19 | 19 |
| 20 virtual bool canDrawPath(const GrDrawTarget*, | 20 virtual bool canDrawPath(const GrDrawTarget*, |
| 21 const GrPipelineBuilder*, | 21 const GrPipelineBuilder*, |
| 22 const SkMatrix& viewMatrix, | 22 const SkMatrix& viewMatrix, |
| 23 const SkPath&, | 23 const SkPath&, |
| 24 const SkStrokeRec&, | 24 const SkStrokeRec&, |
| 25 bool antiAlias) const SK_OVERRIDE; | 25 bool antiAlias) const override; |
| 26 | 26 |
| 27 typedef SkTArray<SkPoint, true> PtArray; | 27 typedef SkTArray<SkPoint, true> PtArray; |
| 28 typedef SkTArray<int, true> IntArray; | 28 typedef SkTArray<int, true> IntArray; |
| 29 typedef SkTArray<float, true> FloatArray; | 29 typedef SkTArray<float, true> FloatArray; |
| 30 | 30 |
| 31 protected: | 31 protected: |
| 32 virtual bool onDrawPath(GrDrawTarget*, | 32 virtual bool onDrawPath(GrDrawTarget*, |
| 33 GrPipelineBuilder*, | 33 GrPipelineBuilder*, |
| 34 GrColor, | 34 GrColor, |
| 35 const SkMatrix& viewMatrix, | 35 const SkMatrix& viewMatrix, |
| 36 const SkPath&, | 36 const SkPath&, |
| 37 const SkStrokeRec&, | 37 const SkStrokeRec&, |
| 38 bool antiAlias) SK_OVERRIDE; | 38 bool antiAlias) override; |
| 39 | 39 |
| 40 private: | 40 private: |
| 41 GrAAHairLinePathRenderer(const GrContext* context, | 41 GrAAHairLinePathRenderer(const GrContext* context, |
| 42 const GrIndexBuffer* fLinesIndexBuffer, | 42 const GrIndexBuffer* fLinesIndexBuffer, |
| 43 const GrIndexBuffer* fQuadsIndexBuffer); | 43 const GrIndexBuffer* fQuadsIndexBuffer); |
| 44 | 44 |
| 45 const GrIndexBuffer* fLinesIndexBuffer; | 45 const GrIndexBuffer* fLinesIndexBuffer; |
| 46 const GrIndexBuffer* fQuadsIndexBuffer; | 46 const GrIndexBuffer* fQuadsIndexBuffer; |
| 47 | 47 |
| 48 typedef GrPathRenderer INHERITED; | 48 typedef GrPathRenderer INHERITED; |
| 49 }; | 49 }; |
| 50 | 50 |
| 51 | 51 |
| 52 #endif | 52 #endif |
| OLD | NEW |