Flutter Impeller
texture_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 <utility>
8 
10 
11 namespace impeller {
12 
13 TextureFilterInput::TextureFilterInput(std::shared_ptr<Texture> texture,
14  Matrix local_transform)
15  : texture_(std::move(texture)), local_transform_(local_transform) {}
16 
18 
20  return texture_;
21 }
22 
23 std::optional<Snapshot> TextureFilterInput::GetSnapshot(
24  const std::string& label,
25  const ContentContext& renderer,
26  const Entity& entity,
27  std::optional<Rect> coverage_limit) const {
28  auto snapshot =
29  Snapshot{.texture = texture_, .transform = GetTransform(entity)};
30  if (texture_->GetMipCount() > 1) {
31  snapshot.sampler_descriptor.label = "TextureFilterInput Trilinear Sampler";
32  snapshot.sampler_descriptor.mip_filter = MipFilter::kLinear;
33  }
34  return snapshot;
35 }
36 
37 std::optional<Rect> TextureFilterInput::GetCoverage(
38  const Entity& entity) const {
39  return Rect::MakeSize(texture_->GetSize())
40  .TransformBounds(GetTransform(entity));
41 }
42 
44  return local_transform_;
45 }
46 
47 } // namespace impeller
texture_filter_input.h
impeller::TextureFilterInput::GetLocalTransform
Matrix GetLocalTransform(const Entity &entity) const override
Get the local transform of this filter input. This transform is relative to the Entity transform spac...
Definition: texture_filter_input.cc:43
impeller::TRect::TransformBounds
constexpr TRect TransformBounds(const Matrix &transform) const
Creates a new bounding box that contains this transformed rectangle.
Definition: rect.h:204
formats.h
impeller::TextureFilterInput::GetSnapshot
std::optional< Snapshot > GetSnapshot(const std::string &label, const ContentContext &renderer, const Entity &entity, std::optional< Rect > coverage_limit) const override
Definition: texture_filter_input.cc:23
impeller::TextureFilterInput::GetInput
Variant GetInput() const override
Definition: texture_filter_input.cc:19
impeller::FilterInput::GetTransform
virtual Matrix GetTransform(const Entity &entity) const
Get the transform of this FilterInput. This is equivalent to calling entity.GetTransformation() * Get...
Definition: filter_input.cc:69
impeller::Entity
Definition: entity.h:21
impeller::Snapshot
Represents a texture and its intended draw transform/sampler configuration.
Definition: snapshot.h:24
impeller::TextureFilterInput::~TextureFilterInput
~TextureFilterInput() 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
impeller::TRect< Scalar >::MakeSize
constexpr static TRect MakeSize(const TSize< U > &size)
Definition: rect.h:52
std
Definition: comparable.h:98
impeller::MipFilter::kLinear
@ kLinear
impeller::TextureFilterInput::GetCoverage
std::optional< Rect > GetCoverage(const Entity &entity) const override
Definition: texture_filter_input.cc:37
impeller::Snapshot::texture
std::shared_ptr< Texture > texture
Definition: snapshot.h:25
impeller
Definition: aiks_context.cc:10
impeller::ContentContext
Definition: content_context.h:344
impeller::Matrix
A 4x4 matrix using column-major storage.
Definition: matrix.h:36