| OLD | NEW |
| 1 | 1 |
| 2 /* | 2 /* |
| 3 * Copyright 2015 Google Inc. | 3 * Copyright 2015 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 GrDashLinePathRenderer_DEFINED | 9 #ifndef GrDashLinePathRenderer_DEFINED |
| 10 #define GrDashLinePathRenderer_DEFINED | 10 #define GrDashLinePathRenderer_DEFINED |
| 11 | 11 |
| 12 #include "GrPathRenderer.h" | 12 #include "GrPathRenderer.h" |
| 13 | 13 |
| 14 class GrDashLinePathRenderer : public GrPathRenderer { | 14 class GrDashLinePathRenderer : public GrPathRenderer { |
| 15 private: | 15 private: |
| 16 bool onCanDrawPath(const CanDrawPathArgs&) const override; | 16 bool onCanDrawPath(const CanDrawPathArgs&) const override; |
| 17 | 17 |
| 18 StencilSupport onGetStencilSupport(const GrDrawTarget*, | 18 StencilSupport onGetStencilSupport(const SkPath&, const GrStrokeInfo&) const
override { |
| 19 const GrPipelineBuilder*, | 19 return kNoSupport_StencilSupport; |
| 20 const SkPath&, | |
| 21 const GrStrokeInfo&) const override { | |
| 22 return kNoSupport_StencilSupport; | |
| 23 } | 20 } |
| 24 | 21 |
| 25 bool onDrawPath(const DrawPathArgs&) override; | 22 bool onDrawPath(const DrawPathArgs&) override; |
| 26 | 23 |
| 27 SkAutoTUnref<GrGpu> fGpu; | 24 SkAutoTUnref<GrGpu> fGpu; |
| 28 typedef GrPathRenderer INHERITED; | 25 typedef GrPathRenderer INHERITED; |
| 29 }; | 26 }; |
| 30 | 27 |
| 31 | 28 |
| 32 #endif | 29 #endif |
| OLD | NEW |