blob: 7309c17ffa5f081b26315d80e1eda76b37405a51 [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 "impeller/entity/contents/filters/inputs/filter_input.h"
namespace impeller {
class ContentsFilterInput final : public FilterInput {
public:
~ContentsFilterInput() override;
// |FilterInput|
Variant GetInput() const override;
// |FilterInput|
std::optional<Snapshot> GetSnapshot(const ContentContext& renderer,
const Entity& entity) const override;
// |FilterInput|
std::optional<Rect> GetCoverage(const Entity& entity) const override;
private:
ContentsFilterInput(std::shared_ptr<Contents> contents);
std::shared_ptr<Contents> contents_;
mutable std::optional<Snapshot> snapshot_;
friend FilterInput;
};
} // namespace impeller