Flutter Impeller
placeholder_filter_input.cc
Go to the documentation of this file.
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 
6 
7 #include <optional>
8 #include <utility>
9 
10 #include "impeller/base/strings.h"
11 
12 namespace impeller {
13 
15  : coverage_rect_(coverage_rect) {}
16 
18 
20  return coverage_rect_;
21 }
22 
23 std::optional<Snapshot> PlaceholderFilterInput::GetSnapshot(
24  const std::string& label,
25  const ContentContext& renderer,
26  const Entity& entity,
27  std::optional<Rect> coverage_limit) const {
28  return std::nullopt;
29 }
30 
32  const Entity& entity) const {
33  return coverage_rect_;
34 }
35 
37  const std::shared_ptr<LazyGlyphAtlas>& lazy_glyph_atlas,
38  Scalar scale) {}
39 
40 } // namespace impeller
impeller::PlaceholderFilterInput::PopulateGlyphAtlas
void PopulateGlyphAtlas(const std::shared_ptr< LazyGlyphAtlas > &lazy_glyph_atlas, Scalar scale) override
Definition: placeholder_filter_input.cc:36
impeller::PlaceholderFilterInput::GetSnapshot
std::optional< Snapshot > GetSnapshot(const std::string &label, const ContentContext &renderer, const Entity &entity, std::optional< Rect > coverage_limit) const override
Definition: placeholder_filter_input.cc:23
impeller::Scalar
float Scalar
Definition: scalar.h:15
impeller::PlaceholderFilterInput::GetInput
Variant GetInput() const override
Definition: placeholder_filter_input.cc:19
placeholder_filter_input.h
impeller::PlaceholderFilterInput::PlaceholderFilterInput
PlaceholderFilterInput(Rect coverage)
Definition: placeholder_filter_input.cc:14
impeller::Entity
Definition: entity.h:21
impeller::PlaceholderFilterInput::GetCoverage
std::optional< Rect > GetCoverage(const Entity &entity) const override
Definition: placeholder_filter_input.cc:31
impeller::PlaceholderFilterInput::~PlaceholderFilterInput
~PlaceholderFilterInput() override
impeller::FilterInput::Variant
std::variant< std::shared_ptr< FilterContents >, std::shared_ptr< Contents >, std::shared_ptr< Texture >, Rect > Variant
Definition: filter_input.h:36
strings.h
impeller
Definition: aiks_context.cc:10
impeller::ContentContext
Definition: content_context.h:344
impeller::TRect< Scalar >