Flutter Impeller
impeller::MatrixFilterContents Class Referencefinal

#include <matrix_filter_contents.h>

Inheritance diagram for impeller::MatrixFilterContents:
impeller::FilterContents impeller::Contents

Public Member Functions

 MatrixFilterContents ()
 
 ~MatrixFilterContents () override
 
void SetMatrix (Matrix matrix)
 
void SetRenderingMode (Entity::RenderingMode rendering_mode) override
 Marks this filter chain as applying in a subpass scenario. More...
 
bool IsTranslationOnly () const override
 Returns true if this filter graph doesn't perform any basis transformations to the filtered content. For example: Rotating, scaling, and skewing are all basis transformations, but translating is not. More...
 
void SetSamplerDescriptor (SamplerDescriptor desc)
 
std::optional< RectGetFilterCoverage (const FilterInput::Vector &inputs, const Entity &entity, const Matrix &effect_transform) const override
 
- Public Member Functions inherited from impeller::FilterContents
 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 screen space bounding rectangle that this contents affects. More...
 
void PopulateGlyphAtlas (const std::shared_ptr< LazyGlyphAtlas > &lazy_glyph_atlas, Scalar scale) override
 Add any text data to the specified lazy atlas. The scale parameter must be used again later when drawing the text. More...
 
std::optional< SnapshotRenderToSnapshot (const ContentContext &renderer, const Entity &entity, std::optional< Rect > coverage_limit=std::nullopt, const std::optional< SamplerDescriptor > &sampler_descriptor=std::nullopt, bool msaa_enabled=true, const std::string &label="Filter Snapshot") const override
 Render this contents to a snapshot, respecting the entity's transform, path, stencil depth, and blend mode. The result texture size is always the size of GetCoverage(entity). More...
 
const FilterContentsAsFilter () const override
 Cast to a filter. Returns nullptr if this Contents is not a filter. More...
 
virtual Matrix GetLocalTransform (const Matrix &parent_transform) const
 
Matrix GetTransform (const Matrix &parent_transform) const
 
bool IsLeaf () const
 Returns true if this filter does not have any FilterInput children. More...
 
void SetLeafInputs (const FilterInput::Vector &inputs)
 Replaces the set of all leaf FilterContents with a new set of FilterInputs. 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
 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...
 
virtual StencilCoverage GetStencilCoverage (const Entity &entity, const std::optional< Rect > &current_stencil_coverage) const
 Given the current screen space bounding rectangle of the stencil, return the expected stencil coverage after this draw call. This should only be implemented for contents that may write to the stencil buffer. More...
 
virtual bool ShouldRender (const Entity &entity, const std::optional< Rect > &stencil_coverage) const
 
std::optional< SizeGetColorSourceSize () const
 Return the color source's intrinsic size, if available. More...
 
void SetColorSourceSize (Size size)
 
virtual bool CanInheritOpacity (const Entity &entity) const
 Whether or not this contents can accept the opacity peephole optimization. More...
 
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...
 

Additional Inherited Members

- Public Types inherited from impeller::FilterContents
enum  BlurStyle {
  BlurStyle::kNormal,
  BlurStyle::kSolid,
  BlurStyle::kOuter,
  BlurStyle::kInner
}
 
enum  MorphType {
  MorphType::kDilate,
  MorphType::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)>
 
- Static Public Member Functions inherited from impeller::FilterContents
static std::shared_ptr< FilterContentsMakeDirectionalGaussianBlur (FilterInput::Ref input, Sigma sigma, Vector2 direction, BlurStyle blur_style=BlurStyle::kNormal, Entity::TileMode tile_mode=Entity::TileMode::kDecal, bool is_second_pass=false, Sigma secondary_sigma={})
 
static std::shared_ptr< FilterContentsMakeGaussianBlur (const FilterInput::Ref &input, Sigma sigma_x, Sigma sigma_y, BlurStyle blur_style=BlurStyle::kNormal, Entity::TileMode tile_mode=Entity::TileMode::kDecal)
 
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 Public Member Functions inherited from impeller::Contents
static std::shared_ptr< ContentsMakeAnonymous (RenderProc render_proc, CoverageProc coverage_proc)
 

Detailed Description

Definition at line 12 of file matrix_filter_contents.h.

Constructor & Destructor Documentation

◆ MatrixFilterContents()

impeller::MatrixFilterContents::MatrixFilterContents ( )
default

◆ ~MatrixFilterContents()

impeller::MatrixFilterContents::~MatrixFilterContents ( )
overridedefault

Member Function Documentation

◆ GetFilterCoverage()

std::optional< Rect > impeller::MatrixFilterContents::GetFilterCoverage ( const FilterInput::Vector inputs,
const Entity entity,
const Matrix effect_transform 
) const
overridevirtual

Reimplemented from impeller::FilterContents.

Definition at line 71 of file matrix_filter_contents.cc.

74  {
75  if (inputs.empty()) {
76  return std::nullopt;
77  }
78 
79  auto coverage = inputs[0]->GetCoverage(entity);
80  if (!coverage.has_value()) {
81  return std::nullopt;
82  }
83  auto& m = rendering_mode_ == Entity::RenderingMode::kSubpass
84  ? effect_transform
85  : inputs[0]->GetTransform(entity);
86  auto transform = m * //
87  matrix_ * //
88  m.Invert(); //
89  return coverage->TransformBounds(transform);
90 }

References impeller::Matrix::Invert(), impeller::Entity::kSubpass, and impeller::TRect< T >::TransformBounds().

◆ IsTranslationOnly()

bool impeller::MatrixFilterContents::IsTranslationOnly ( ) const
overridevirtual

Returns true if this filter graph doesn't perform any basis transformations to the filtered content. For example: Rotating, scaling, and skewing are all basis transformations, but translating is not.

This is useful for determining whether a filtered object's space is compatible enough with the parent pass space to perform certain subpass clipping optimizations.

Reimplemented from impeller::FilterContents.

Definition at line 23 of file matrix_filter_contents.cc.

23  {
24  return matrix_.Basis().IsIdentity() && FilterContents::IsTranslationOnly();
25 }

References impeller::Matrix::Basis(), impeller::Matrix::IsIdentity(), and impeller::FilterContents::IsTranslationOnly().

◆ SetMatrix()

void impeller::MatrixFilterContents::SetMatrix ( Matrix  matrix)

Definition at line 13 of file matrix_filter_contents.cc.

13  {
14  matrix_ = matrix;
15 }

◆ SetRenderingMode()

void impeller::MatrixFilterContents::SetRenderingMode ( Entity::RenderingMode  rendering_mode)
overridevirtual

Marks this filter chain as applying in a subpass scenario.

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

Reimplemented from impeller::FilterContents.

Definition at line 17 of file matrix_filter_contents.cc.

18  {
19  rendering_mode_ = rendering_mode;
20  FilterContents::SetRenderingMode(rendering_mode);
21 }

References impeller::FilterContents::SetRenderingMode().

◆ SetSamplerDescriptor()

void impeller::MatrixFilterContents::SetSamplerDescriptor ( SamplerDescriptor  desc)

Definition at line 27 of file matrix_filter_contents.cc.

27  {
28  sampler_descriptor_ = std::move(desc);
29 }

The documentation for this class was generated from the following files:
impeller::Matrix::Basis
constexpr Matrix Basis() const
Definition: matrix.h:222
impeller::FilterContents::IsTranslationOnly
virtual bool IsTranslationOnly() const
Returns true if this filter graph doesn't perform any basis transformations to the filtered content....
Definition: filter_contents.cc:273
impeller::Entity::RenderingMode::kSubpass
@ kSubpass
impeller::Matrix::Invert
Matrix Invert() const
Definition: matrix.cc:97
impeller::Matrix::IsIdentity
constexpr bool IsIdentity() const
Definition: matrix.h:345
impeller::FilterContents::SetRenderingMode
virtual void SetRenderingMode(Entity::RenderingMode rendering_mode)
Marks this filter chain as applying in a subpass scenario.
Definition: filter_contents.cc:301