blob: 0028039e11177de308c89c8f255efd7d7f9717d6 [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.
#pragma once
#include <memory>
#include <optional>
#include "impeller/entity/contents/filters/filter_contents.h"
#include "impeller/entity/contents/filters/inputs/filter_input.h"
namespace impeller {
class DirectionalMorphologyFilterContents final : public FilterContents {
public:
DirectionalMorphologyFilterContents();
~DirectionalMorphologyFilterContents() override;
void SetRadius(Radius radius);
void SetDirection(Vector2 direction);
void SetMorphType(MorphType morph_type);
// |FilterContents|
std::optional<Rect> GetFilterCoverage(
const FilterInput::Vector& inputs,
const Entity& entity,
const Matrix& effect_transform) const override;
private:
// |FilterContents|
std::optional<Snapshot> RenderFilter(
const FilterInput::Vector& input_textures,
const ContentContext& renderer,
const Entity& entity,
const Matrix& effect_transform,
const Rect& coverage) const override;
Radius radius_;
Vector2 direction_;
MorphType morph_type_;
FML_DISALLOW_COPY_AND_ASSIGN(DirectionalMorphologyFilterContents);
};
} // namespace impeller