1 // Copyright 2013 The Flutter Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #ifndef FLUTTER_FLOW_LAYERS_CLIP_PATH_LAYER_H_ 6 #define FLUTTER_FLOW_LAYERS_CLIP_PATH_LAYER_H_ 7 8 #include "flutter/flow/layers/container_layer.h" 9 10 namespace flutter { 11 12 class ClipPathLayer : public ContainerLayer { 13 public: 14 ClipPathLayer(const SkPath& clip_path, Clip clip_behavior = Clip::antiAlias); 15 ~ClipPathLayer() override; 16 17 void Preroll(PrerollContext* context, const SkMatrix& matrix) override; 18 19 void Paint(PaintContext& context) const override; 20 21 #if defined(OS_FUCHSIA) 22 void UpdateScene(SceneUpdateContext& context) override; 23 #endif // defined(OS_FUCHSIA) 24 25 private: 26 SkPath clip_path_; 27 Clip clip_behavior_; 28 29 FML_DISALLOW_COPY_AND_ASSIGN(ClipPathLayer); 30 }; 31 32 } // namespace flutter 33 34 #endif // FLUTTER_FLOW_LAYERS_CLIP_PATH_LAYER_H_ 35