blob: b4a90785f6585a1636f0a03f8e57be0df4ea925c [file] [log] [blame]
// Copyright 2013 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef FLUTTER_FLOW_LAYERS_PHYSICAL_SHAPE_LAYER_H_
#define FLUTTER_FLOW_LAYERS_PHYSICAL_SHAPE_LAYER_H_
#include "flutter/flow/layers/container_layer.h"
namespace flutter {
class PhysicalShapeLayer : public ContainerLayer {
public:
PhysicalShapeLayer(SkColor color,
SkColor shadow_color,
float elevation,
const SkPath& path,
Clip clip_behavior);
void Diff(DiffContext* context, const Layer* old_layer) override;
void Preroll(PrerollContext* context) override;
void Paint(PaintContext& context) const override;
bool UsesSaveLayer() const {
return clip_behavior_ == Clip::antiAliasWithSaveLayer;
}
float elevation() const { return elevation_; }
private:
SkColor color_;
SkColor shadow_color_;
float elevation_ = 0.0f;
SkPath path_;
Clip clip_behavior_;
};
} // namespace flutter
#endif // FLUTTER_FLOW_LAYERS_PHYSICAL_SHAPE_LAYER_H_