1 /* 2 * Copyright 2015 Google Inc. 3 * 4 * Use of this source code is governed by a BSD-style license that can be 5 * found in the LICENSE file. 6 */ 7 8 #ifndef skgpu_ganesh_DashLinePathRenderer_DEFINED 9 #define skgpu_ganesh_DashLinePathRenderer_DEFINED 10 11 #include "src/gpu/ganesh/PathRenderer.h" 12 13 namespace skgpu::ganesh { 14 15 class DashLinePathRenderer final : public skgpu::ganesh::PathRenderer { 16 public: 17 DashLinePathRenderer() = default; 18 name()19 const char* name() const override { return "DashLine"; } 20 21 private: 22 CanDrawPath onCanDrawPath(const CanDrawPathArgs&) const override; 23 onGetStencilSupport(const GrStyledShape &)24 StencilSupport onGetStencilSupport(const GrStyledShape&) const override { 25 return kNoSupport_StencilSupport; 26 } 27 28 bool onDrawPath(const DrawPathArgs&) override; 29 }; 30 31 } // namespace skgpu::ganesh 32 33 #endif // skgpu_ganesh_DashLinePathRenderer_DEFINED 34