Flutter Impeller
impeller::FilterContents Class Referenceabstract

#include <filter_contents.h>

Inheritance diagram for impeller::FilterContents:
impeller::Contents impeller::BorderMaskBlurFilterContents impeller::ColorFilterContents impeller::DirectionalMorphologyFilterContents impeller::GaussianBlurFilterContents impeller::LocalMatrixFilterContents impeller::MatrixFilterContents impeller::RuntimeEffectFilterContents impeller::YUVToRGBFilterContents

Public Types

enum class  BlurStyle {
  kNormal ,
  kSolid ,
  kOuter ,
  kInner
}
 
enum class  MorphType {
  kDilate ,
  kErode
}
 
- Public Types inherited from impeller::Contents
using ColorFilterProc = std::function< Color(Color)>
 
using RenderProc = std::function< bool(const ContentContext &renderer, const Entity &entity, RenderPass &pass)>
 
using CoverageProc = std::function< std::optional< Rect >(const Entity &entity)>
 

Public Member Functions

 FilterContents ()
 
 ~FilterContents () override
 
void SetInputs (FilterInput::Vector inputs)
 The input texture sources for this filter. Each input's emitted texture is expected to have premultiplied alpha colors. More...
 
void SetEffectTransform (const Matrix &effect_transform)
 Sets the transform which gets appended to the effect of this filter. Note that this is in addition to the entity's transform. More...
 
std::optional< EntityGetEntity (const ContentContext &renderer, const Entity &entity, const std::optional< Rect > &coverage_hint) const
 Create an Entity that renders this filter's output. More...
 
bool Render (const ContentContext &renderer, const Entity &entity, RenderPass &pass) const override
 
std::optional< RectGetCoverage (const Entity &entity) const override
 Get the area of the render pass that will be affected when this contents is rendered. More...
 
std::optional< SnapshotRenderToSnapshot (const ContentContext &renderer, const Entity &entity, const SnapshotOptions &options) const override
 Render this contents to a snapshot, respecting the entity's transform, path, clip depth, and blend mode. The result texture size is always the size of GetCoverage(entity). More...
 
std::optional< RectGetSourceCoverage (const Matrix &effect_transform, const Rect &output_limit) const
 Determines the coverage of source pixels that will be needed to produce results for the specified |output_limit| under the specified |effect_transform|. This is essentially a reverse of the |GetCoverage| method computing a source coverage from an intended |output_limit| coverage. More...
 
virtual Matrix GetLocalTransform (const Matrix &parent_transform) const
 
Matrix GetTransform (const Matrix &parent_transform) const
 
virtual void SetRenderingMode (Entity::RenderingMode rendering_mode)
 Marks this filter chain as applying in a subpass scenario. More...
 
- Public Member Functions inherited from impeller::Contents
 Contents ()
 
virtual ~Contents ()
 
void SetCoverageHint (std::optional< Rect > coverage_hint)
 Hint that specifies the coverage area of this Contents that will actually be used during rendering. This is for optimization purposes only and can not be relied on as a clip. May optionally affect the result of GetCoverage(). More...
 
const std::optional< Rect > & GetCoverageHint () const
 
virtual bool IsOpaque (const Matrix &transform) const
 Whether this Contents only emits opaque source colors from the fragment stage. This value does not account for any entity properties (e.g. the blend mode), clips/visibility culling, or inherited opacity. More...
 
std::optional< SizeGetColorSourceSize () const
 Return the color source's intrinsic size, if available. More...
 
void SetColorSourceSize (Size size)
 
virtual void SetInheritedOpacity (Scalar opacity)
 Inherit the provided opacity. More...
 
virtual std::optional< ColorAsBackgroundColor (const Entity &entity, ISize target_size) const
 Returns a color if this Contents will flood the given target_size with a color. This output color is the "Source" color that will be used for the Entity's blend operation. More...
 
virtual bool ApplyColorFilter (const ColorFilterProc &color_filter_proc)
 If possible, applies a color filter to this contents inputs on the CPU. More...
 

Static Public Member Functions

static std::shared_ptr< FilterContentsMakeGaussianBlur (const FilterInput::Ref &input, Sigma sigma_x, Sigma sigma_y, Entity::TileMode tile_mode=Entity::TileMode::kDecal, std::optional< Rect > bounds=std::nullopt, BlurStyle mask_blur_style=BlurStyle::kNormal, const Geometry *mask_geometry=nullptr)
 
static std::shared_ptr< FilterContentsMakeBorderMaskBlur (FilterInput::Ref input, Sigma sigma_x, Sigma sigma_y, BlurStyle blur_style=BlurStyle::kNormal)
 
static std::shared_ptr< FilterContentsMakeDirectionalMorphology (FilterInput::Ref input, Radius radius, Vector2 direction, MorphType morph_type)
 
static std::shared_ptr< FilterContentsMakeMorphology (FilterInput::Ref input, Radius radius_x, Radius radius_y, MorphType morph_type)
 
static std::shared_ptr< FilterContentsMakeMatrixFilter (FilterInput::Ref input, const Matrix &matrix, const SamplerDescriptor &desc)
 
static std::shared_ptr< FilterContentsMakeLocalMatrixFilter (FilterInput::Ref input, const Matrix &matrix)
 
static std::shared_ptr< FilterContentsMakeYUVToRGBFilter (std::shared_ptr< Texture > y_texture, std::shared_ptr< Texture > uv_texture, YUVColorSpace yuv_color_space)
 
static std::shared_ptr< FilterContentsMakeRuntimeEffect (FilterInput::Ref input, std::shared_ptr< RuntimeStage > runtime_stage, std::shared_ptr< std::vector< uint8_t >> uniforms, std::vector< RuntimeEffectContents::TextureInput > texture_inputs)
 
- Static Public Member Functions inherited from impeller::Contents
static std::shared_ptr< ContentsMakeAnonymous (RenderProc render_proc, CoverageProc coverage_proc)
 

Static Public Attributes

static const int32_t kBlurFilterRequiredMipCount
 

Detailed Description

Definition at line 24 of file filter_contents.h.

Member Enumeration Documentation

◆ BlurStyle

Enumerator
kNormal 

Blurred inside and outside.

kSolid 

Solid inside, blurred outside.

kOuter 

Nothing inside, blurred outside.

kInner 

Blurred inside, nothing outside.

Definition at line 28 of file filter_contents.h.

28  {
29  /// Blurred inside and outside.
30  kNormal,
31  /// Solid inside, blurred outside.
32  kSolid,
33  /// Nothing inside, blurred outside.
34  kOuter,
35  /// Blurred inside, nothing outside.
36  kInner,
37  };

◆ MorphType

Enumerator
kDilate 
kErode 

Definition at line 39 of file filter_contents.h.

39 { kDilate, kErode };

Constructor & Destructor Documentation

◆ FilterContents()

impeller::FilterContents::FilterContents ( )
default

◆ ~FilterContents()

impeller::FilterContents::~FilterContents ( )
overridedefault

Member Function Documentation

◆ GetCoverage()

std::optional< Rect > impeller::FilterContents::GetCoverage ( const Entity entity) const
overridevirtual

Get the area of the render pass that will be affected when this contents is rendered.

During rendering, coverage coordinates count pixels from the top left corner of the framebuffer.

Returns
The coverage rectangle. An std::nullopt result means that rendering this contents has no effect on the output color.

Implements impeller::Contents.

Definition at line 178 of file filter_contents.cc.

178  {
179  Entity entity_with_local_transform = entity.Clone();
180  entity_with_local_transform.SetTransform(GetTransform(entity.GetTransform()));
181 
182  return GetLocalCoverage(entity_with_local_transform);
183 }
Matrix GetTransform(const Matrix &parent_transform) const

References impeller::Entity::Clone(), impeller::Entity::GetTransform(), GetTransform(), and impeller::Entity::SetTransform().

Referenced by Render(), and impeller::testing::TEST_P().

◆ GetEntity()

std::optional< Entity > impeller::FilterContents::GetEntity ( const ContentContext renderer,
const Entity entity,
const std::optional< Rect > &  coverage_hint 
) const

Create an Entity that renders this filter's output.

Definition at line 234 of file filter_contents.cc.

237  {
238  Entity entity_with_local_transform = entity.Clone();
239  entity_with_local_transform.SetTransform(GetTransform(entity.GetTransform()));
240 
241  std::optional<Rect> coverage = GetLocalCoverage(entity_with_local_transform);
242  if (!coverage.has_value() || coverage->IsEmpty()) {
243  return std::nullopt;
244  }
245 
246  return RenderFilter(inputs_, //
247  renderer, //
248  entity_with_local_transform, //
249  effect_transform_, //
250  coverage.value(), //
251  coverage_hint //
252  );
253 }

References impeller::Entity::Clone(), impeller::Entity::GetTransform(), GetTransform(), and impeller::Entity::SetTransform().

Referenced by Render(), RenderToSnapshot(), and impeller::testing::TEST_P().

◆ GetLocalTransform()

Matrix impeller::FilterContents::GetLocalTransform ( const Matrix parent_transform) const
virtual

Reimplemented in impeller::LocalMatrixFilterContents.

Definition at line 276 of file filter_contents.cc.

276  {
277  return Matrix();
278 }

Referenced by GetTransform().

◆ GetSourceCoverage()

std::optional< Rect > impeller::FilterContents::GetSourceCoverage ( const Matrix effect_transform,
const Rect output_limit 
) const

Determines the coverage of source pixels that will be needed to produce results for the specified |output_limit| under the specified |effect_transform|. This is essentially a reverse of the |GetCoverage| method computing a source coverage from an intended |output_limit| coverage.

Both the |output_limit| and the return value are in the transformed coordinate space, and so do not need to be transformed or inverse transformed by the |effect_transform| but individual parameters on the filter might be in the untransformed space and should be transformed by the |effect_transform| before applying them to the coverages.

The method computes a result such that if the filter is applied to a set of pixels filling the computed source coverage, it should produce an output that covers the entire specified |output_limit|.

This is useful for subpass rendering scenarios where a filter will be applied to the output of the subpass and we need to determine how large of a render target to allocate in order to collect all pixels that might affect the supplied output coverage limit. While we might end up clipping the rendering of the subpass to its destination, we want to avoid clipping out any pixels that contribute to the output limit via the filtering operation.

Returns
The coverage bounds in the transformed space of any source pixel that may be needed to produce output for the indicated filter that covers the indicated |output_limit|.

Definition at line 212 of file filter_contents.cc.

214  {
215  auto filter_input_coverage =
216  GetFilterSourceCoverage(effect_transform_, output_limit);
217 
218  if (!filter_input_coverage.has_value()) {
219  return std::nullopt;
220  }
221 
222  std::optional<Rect> inputs_coverage;
223  for (const auto& input : inputs_) {
224  auto input_coverage = input->GetSourceCoverage(
225  effect_transform, filter_input_coverage.value());
226  if (!input_coverage.has_value()) {
227  return std::nullopt;
228  }
229  inputs_coverage = Rect::Union(inputs_coverage, input_coverage.value());
230  }
231  return inputs_coverage;
232 }
constexpr TRect Union(const TRect &o) const
Definition: rect.h:513

References impeller::TRect< Scalar >::Union().

◆ GetTransform()

Matrix impeller::FilterContents::GetTransform ( const Matrix parent_transform) const

Definition at line 280 of file filter_contents.cc.

280  {
281  return parent_transform * GetLocalTransform(parent_transform);
282 }
virtual Matrix GetLocalTransform(const Matrix &parent_transform) const

References GetLocalTransform().

Referenced by GetCoverage(), and GetEntity().

◆ MakeBorderMaskBlur()

std::shared_ptr< FilterContents > impeller::FilterContents::MakeBorderMaskBlur ( FilterInput::Ref  input,
Sigma  sigma_x,
Sigma  sigma_y,
BlurStyle  blur_style = BlurStyle::kNormal 
)
static

Definition at line 52 of file filter_contents.cc.

56  {
57  auto filter = std::make_shared<BorderMaskBlurFilterContents>();
58  filter->SetInputs({std::move(input)});
59  filter->SetSigma(sigma_x, sigma_y);
60  filter->SetBlurStyle(blur_style);
61  return filter;
62 }

Referenced by impeller::testing::TEST_P().

◆ MakeDirectionalMorphology()

std::shared_ptr< FilterContents > impeller::FilterContents::MakeDirectionalMorphology ( FilterInput::Ref  input,
Radius  radius,
Vector2  direction,
MorphType  morph_type 
)
static

Definition at line 64 of file filter_contents.cc.

68  {
69  auto filter = std::make_shared<DirectionalMorphologyFilterContents>();
70  filter->SetInputs({std::move(input)});
71  filter->SetRadius(radius);
72  filter->SetDirection(direction);
73  filter->SetMorphType(morph_type);
74  return filter;
75 }

Referenced by MakeMorphology().

◆ MakeGaussianBlur()

std::shared_ptr< FilterContents > impeller::FilterContents::MakeGaussianBlur ( const FilterInput::Ref input,
Sigma  sigma_x,
Sigma  sigma_y,
Entity::TileMode  tile_mode = Entity::TileMode::kDecal,
std::optional< Rect bounds = std::nullopt,
FilterContents::BlurStyle  mask_blur_style = BlurStyle::kNormal,
const Geometry mask_geometry = nullptr 
)
static

Creates a gaussian blur that operates in 2 dimensions.

For definition of parameters, see DlBlurImageFilter.

Definition at line 37 of file filter_contents.cc.

44  {
45  auto blur = std::make_shared<GaussianBlurFilterContents>(
46  sigma_x.sigma, sigma_y.sigma, tile_mode, bounds, mask_blur_style,
47  mask_geometry);
48  blur->SetInputs({input});
49  return blur;
50 }

References impeller::Sigma::sigma.

Referenced by impeller::testing::TEST_P(), and impeller::WrapInput().

◆ MakeLocalMatrixFilter()

std::shared_ptr< FilterContents > impeller::FilterContents::MakeLocalMatrixFilter ( FilterInput::Ref  input,
const Matrix matrix 
)
static

Definition at line 100 of file filter_contents.cc.

102  {
103  auto filter = std::make_shared<LocalMatrixFilterContents>();
104  filter->SetInputs({std::move(input)});
105  filter->SetMatrix(matrix);
106  return filter;
107 }

Referenced by impeller::WrapInput().

◆ MakeMatrixFilter()

std::shared_ptr< FilterContents > impeller::FilterContents::MakeMatrixFilter ( FilterInput::Ref  input,
const Matrix matrix,
const SamplerDescriptor desc 
)
static

Definition at line 89 of file filter_contents.cc.

92  {
93  auto filter = std::make_shared<MatrixFilterContents>();
94  filter->SetInputs({std::move(input)});
95  filter->SetMatrix(matrix);
96  filter->SetSamplerDescriptor(desc);
97  return filter;
98 }

Referenced by impeller::testing::TEST(), and impeller::WrapInput().

◆ MakeMorphology()

std::shared_ptr< FilterContents > impeller::FilterContents::MakeMorphology ( FilterInput::Ref  input,
Radius  radius_x,
Radius  radius_y,
MorphType  morph_type 
)
static

Definition at line 77 of file filter_contents.cc.

81  {
82  auto x_morphology = MakeDirectionalMorphology(std::move(input), radius_x,
83  Point(1, 0), morph_type);
84  auto y_morphology = MakeDirectionalMorphology(
85  FilterInput::Make(x_morphology), radius_y, Point(0, 1), morph_type);
86  return y_morphology;
87 }
static std::shared_ptr< FilterContents > MakeDirectionalMorphology(FilterInput::Ref input, Radius radius, Vector2 direction, MorphType morph_type)
static FilterInput::Ref Make(Variant input, bool msaa_enabled=true)
Definition: filter_input.cc:19
TPoint< Scalar > Point
Definition: point.h:425

References impeller::FilterInput::Make(), and MakeDirectionalMorphology().

Referenced by impeller::testing::TEST_P(), and impeller::WrapInput().

◆ MakeRuntimeEffect()

std::shared_ptr< FilterContents > impeller::FilterContents::MakeRuntimeEffect ( FilterInput::Ref  input,
std::shared_ptr< RuntimeStage runtime_stage,
std::shared_ptr< std::vector< uint8_t >>  uniforms,
std::vector< RuntimeEffectContents::TextureInput texture_inputs 
)
static

Definition at line 120 of file filter_contents.cc.

124  {
125  auto filter = std::make_shared<impeller::RuntimeEffectFilterContents>();
126  filter->SetInputs({std::move(input)});
127  filter->SetRuntimeStage(std::move(runtime_stage));
128  filter->SetUniforms(std::move(uniforms));
129  filter->SetTextureInputs(std::move(texture_inputs));
130  return filter;
131 }

Referenced by impeller::WrapInput().

◆ MakeYUVToRGBFilter()

std::shared_ptr< FilterContents > impeller::FilterContents::MakeYUVToRGBFilter ( std::shared_ptr< Texture y_texture,
std::shared_ptr< Texture uv_texture,
YUVColorSpace  yuv_color_space 
)
static

Definition at line 109 of file filter_contents.cc.

112  {
113  auto filter = std::make_shared<impeller::YUVToRGBFilterContents>();
114  filter->SetInputs({impeller::FilterInput::Make(y_texture),
115  impeller::FilterInput::Make(uv_texture)});
116  filter->SetYUVColorSpace(yuv_color_space);
117  return filter;
118 }

References impeller::FilterInput::Make().

Referenced by impeller::DlImageImpeller::MakeFromYUVTextures(), and impeller::testing::TEST_P().

◆ Render()

bool impeller::FilterContents::Render ( const ContentContext renderer,
const Entity entity,
RenderPass pass 
) const
overridevirtual

Implements impeller::Contents.

Definition at line 149 of file filter_contents.cc.

151  {
152  auto filter_coverage = GetCoverage(entity);
153  if (!filter_coverage.has_value()) {
154  return true;
155  }
156 
157  // Run the filter.
158 
159  auto maybe_entity = GetEntity(renderer, entity, GetCoverageHint());
160  if (!maybe_entity.has_value()) {
161  return true;
162  }
163  maybe_entity->SetClipDepth(entity.GetClipDepth());
164  return maybe_entity->Render(renderer, pass);
165 }
const std::optional< Rect > & GetCoverageHint() const
Definition: contents.cc:137
std::optional< Entity > GetEntity(const ContentContext &renderer, const Entity &entity, const std::optional< Rect > &coverage_hint) const
Create an Entity that renders this filter's output.
std::optional< Rect > GetCoverage(const Entity &entity) const override
Get the area of the render pass that will be affected when this contents is rendered.

References impeller::Entity::GetClipDepth(), GetCoverage(), impeller::Contents::GetCoverageHint(), and GetEntity().

◆ RenderToSnapshot()

std::optional< Snapshot > impeller::FilterContents::RenderToSnapshot ( const ContentContext renderer,
const Entity entity,
const SnapshotOptions options 
) const
overridevirtual

Render this contents to a snapshot, respecting the entity's transform, path, clip depth, and blend mode. The result texture size is always the size of GetCoverage(entity).

Reimplemented from impeller::Contents.

Definition at line 255 of file filter_contents.cc.

258  {
259  // Resolve the render instruction (entity) from the filter and render it to a
260  // snapshot.
261  if (std::optional<Entity> result =
262  GetEntity(renderer, entity, options.coverage_limit);
263  result.has_value()) {
264  return result->GetContents()->RenderToSnapshot(
265  renderer, result.value(),
266  {.coverage_limit = options.coverage_limit,
267  .sampler_descriptor = std::nullopt,
268  .msaa_enabled = true,
269  .mip_count = options.mip_count,
270  .label = options.label});
271  }
272 
273  return std::nullopt;
274 }

References impeller::Contents::SnapshotOptions::coverage_limit, and GetEntity().

◆ SetEffectTransform()

void impeller::FilterContents::SetEffectTransform ( const Matrix effect_transform)

Sets the transform which gets appended to the effect of this filter. Note that this is in addition to the entity's transform.

This is useful for subpass rendering scenarios where it's difficult to encode the current transform of the layer into the Entity being rendered.

Definition at line 141 of file filter_contents.cc.

141  {
142  effect_transform_ = effect_transform;
143 
144  for (auto& input : inputs_) {
145  input->SetEffectTransform(effect_transform);
146  }
147 }

Referenced by impeller::testing::TEST_P().

◆ SetInputs()

void impeller::FilterContents::SetInputs ( FilterInput::Vector  inputs)

The input texture sources for this filter. Each input's emitted texture is expected to have premultiplied alpha colors.

The number of required or optional textures depends on the particular filter's implementation.

Definition at line 137 of file filter_contents.cc.

137  {
138  inputs_ = std::move(inputs);
139 }

Referenced by impeller::testing::TEST_P().

◆ SetRenderingMode()

void impeller::FilterContents::SetRenderingMode ( Entity::RenderingMode  rendering_mode)
virtual

Marks this filter chain as applying in a subpass scenario.

    Subpasses render in screenspace, and this setting informs filters
    that the current transform matrix of the entity is not stored
    in the Entity transform matrix. Instead, the effect transform
    is used in this case. 

Reimplemented in impeller::MatrixFilterContents.

Definition at line 284 of file filter_contents.cc.

284  {
285  for (auto& input : inputs_) {
286  input->SetRenderingMode(rendering_mode);
287  }
288 }

Referenced by impeller::MatrixFilterContents::SetRenderingMode().

Member Data Documentation

◆ kBlurFilterRequiredMipCount

const int32_t impeller::FilterContents::kBlurFilterRequiredMipCount
static
Initial value:

Definition at line 26 of file filter_contents.h.


The documentation for this class was generated from the following files: