Flutter Impeller
impeller::GaussianBlurFilterContents Class Referencefinal

#include <gaussian_blur_filter_contents.h>

Inheritance diagram for impeller::GaussianBlurFilterContents:
impeller::FilterContents impeller::Contents

Public Member Functions

 GaussianBlurFilterContents (Scalar sigma_x, Scalar sigma_y, Entity::TileMode tile_mode, BlurStyle mask_blur_style, const Geometry *mask_geometry=nullptr)
 
Scalar GetSigmaX () const
 
Scalar GetSigmaY () const
 
std::optional< RectGetFilterSourceCoverage (const Matrix &effect_transform, const Rect &output_limit) const override
 Internal utility method for |GetSourceCoverage| that computes the inverse effect of this transform on the specified output coverage, ignoring the inputs which will be accommodated by the caller. More...
 
std::optional< RectGetFilterCoverage (const FilterInput::Vector &inputs, const Entity &entity, const Matrix &effect_transform) const override
 Internal utility method for |GetLocalCoverage| that computes the output coverage of this filter across the specified inputs, ignoring the coverage hint. More...
 
- 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 area of the render pass that will be affected when this contents is rendered. 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, int32_t mip_count=1, const std::string &label="Filter Snapshot") 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...
 
const FilterContentsAsFilter () const override
 Cast to a filter. Returns nullptr if this Contents is not a filter. 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 bool IsTranslationOnly () const
 Returns true if this filter graph doesn't perform any basis transforms to the filtered content. For example: Rotating, scaling, and skewing are all basis transforms, but translating is not. More...
 
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...
 
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...
 
virtual ClipCoverage GetClipCoverage (const Entity &entity, const std::optional< Rect > &current_clip_coverage) const
 Given the current pass space bounding rectangle of the clip buffer, return the expected clip coverage after this draw call. This should only be implemented for contents that may write to the clip buffer. 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 Scalar CalculateBlurRadius (Scalar sigma)
 
static Quad CalculateUVs (const std::shared_ptr< FilterInput > &filter_input, const Entity &entity, const Rect &source_rect, const ISize &texture_size)
 
static Scalar CalculateScale (Scalar sigma)
 
static Scalar ScaleSigma (Scalar sigma)
 
- Static Public Member Functions inherited from impeller::FilterContents
static std::shared_ptr< FilterContentsMakeGaussianBlur (const FilterInput::Ref &input, Sigma sigma_x, Sigma sigma_y, Entity::TileMode tile_mode=Entity::TileMode::kDecal, 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 Public Member Functions inherited from impeller::Contents
static std::shared_ptr< ContentsMakeAnonymous (RenderProc render_proc, CoverageProc coverage_proc)
 

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 Attributes inherited from impeller::FilterContents
static const int32_t kBlurFilterRequiredMipCount
 

Detailed Description

Performs a bidirectional Gaussian blur.

This is accomplished by rendering multiple passes in multiple directions. Note: This will replace DirectionalGaussianBlurFilterContents.

Definition at line 56 of file gaussian_blur_filter_contents.h.

Constructor & Destructor Documentation

◆ GaussianBlurFilterContents()

impeller::GaussianBlurFilterContents::GaussianBlurFilterContents ( Scalar  sigma_x,
Scalar  sigma_y,
Entity::TileMode  tile_mode,
BlurStyle  mask_blur_style,
const Geometry mask_geometry = nullptr 
)
explicit

Definition at line 606 of file gaussian_blur_filter_contents.cc.

612  : sigma_(sigma_x, sigma_y),
613  tile_mode_(tile_mode),
614  mask_blur_style_(mask_blur_style),
615  mask_geometry_(mask_geometry) {
616  // This is supposed to be enforced at a higher level.
617  FML_DCHECK(mask_blur_style == BlurStyle::kNormal || mask_geometry);
618 }

References impeller::FilterContents::kNormal.

Member Function Documentation

◆ CalculateBlurRadius()

Scalar impeller::GaussianBlurFilterContents::CalculateBlurRadius ( Scalar  sigma)
static

Given a sigma (standard deviation) calculate the blur radius (1/2 the kernel size).

Definition at line 856 of file gaussian_blur_filter_contents.cc.

856  {
857  return static_cast<Radius>(Sigma(sigma)).radius;
858 }

Referenced by CalculateScale(), GetFilterSourceCoverage(), and impeller::testing::TEST().

◆ CalculateScale()

Scalar impeller::GaussianBlurFilterContents::CalculateScale ( Scalar  sigma)
static

Calculate the scale factor for the downsample pass given a sigma value.

Visible for testing.

Definition at line 623 of file gaussian_blur_filter_contents.cc.

623  {
624  if (sigma <= 4) {
625  return 1.0;
626  }
627  Scalar raw_result = 4.0 / sigma;
628  // Round to the nearest 1/(2^n) to get the best quality down scaling.
629  Scalar exponent = round(log2f(raw_result));
630  // Don't scale down below 1/16th to preserve signal.
631  exponent = std::max(-4.0f, exponent);
632  Scalar rounded = powf(2.0f, exponent);
633  Scalar result = rounded;
634  // Extend the range of the 1/8th downsample based on the effective kernel size
635  // for the blur.
636  if (rounded < 0.125f) {
637  Scalar rounded_plus = powf(2.0f, exponent + 1);
639  int kernel_size_plus = (ScaleBlurRadius(blur_radius, rounded_plus) * 2) + 1;
640  // This constant was picked by looking at the results to make sure no
641  // shimmering was introduced at the highest sigma values that downscale to
642  // 1/16th.
643  static constexpr int32_t kEighthDownsampleKernalWidthMax = 41;
644  result = kernel_size_plus <= kEighthDownsampleKernalWidthMax ? rounded_plus
645  : rounded;
646  }
647  return result;
648 };

References blur_radius, and CalculateBlurRadius().

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

◆ CalculateUVs()

Quad impeller::GaussianBlurFilterContents::CalculateUVs ( const std::shared_ptr< FilterInput > &  filter_input,
const Entity entity,
const Rect source_rect,
const ISize texture_size 
)
static

Calculate the UV coordinates for rendering the filter_input.

Parameters
filter_inputThe FilterInput that should be rendered.
entityThe associated entity for the filter_input.
source_rectThe rect in source coordinates to convert to uvs.
texture_sizeThe rect to convert in source coordinates.

Definition at line 860 of file gaussian_blur_filter_contents.cc.

864  {
865  Matrix input_transform = filter_input->GetLocalTransform(entity);
866  Quad coverage_quad = source_rect.GetTransformedPoints(input_transform);
867 
868  Matrix uv_transform = Matrix::MakeScale(
869  {1.0f / texture_size.width, 1.0f / texture_size.height, 1.0f});
870  return uv_transform.Transform(coverage_quad);
871 }

References impeller::TRect< T >::GetTransformedPoints(), impeller::TSize< T >::height, impeller::Matrix::MakeScale(), impeller::Matrix::Transform(), and impeller::TSize< T >::width.

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

◆ GetFilterCoverage()

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

Internal utility method for |GetLocalCoverage| that computes the output coverage of this filter across the specified inputs, ignoring the coverage hint.

Reimplemented from impeller::FilterContents.

Definition at line 661 of file gaussian_blur_filter_contents.cc.

664  {
665  if (inputs.empty()) {
666  return {};
667  }
668  std::optional<Rect> input_coverage = inputs[0]->GetCoverage(entity);
669  if (!input_coverage.has_value()) {
670  return {};
671  }
672 
673  BlurInfo blur_info = CalculateBlurInfo(entity, effect_transform, sigma_);
674  return input_coverage.value().Expand(
675  Point(blur_info.local_padding.x, blur_info.local_padding.y));
676 }

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

◆ GetFilterSourceCoverage()

std::optional< Rect > impeller::GaussianBlurFilterContents::GetFilterSourceCoverage ( const Matrix effect_transform,
const Rect output_limit 
) const
overridevirtual

Internal utility method for |GetSourceCoverage| that computes the inverse effect of this transform on the specified output coverage, ignoring the inputs which will be accommodated by the caller.

Implements impeller::FilterContents.

Definition at line 650 of file gaussian_blur_filter_contents.cc.

652  {
653  Vector2 scaled_sigma = {ScaleSigma(sigma_.x), ScaleSigma(sigma_.y)};
656  Vector3 blur_radii =
657  effect_transform.Basis() * Vector3{blur_radius.x, blur_radius.y, 0.0};
658  return output_limit.Expand(Point(blur_radii.x, blur_radii.y));
659 }

References impeller::Matrix::Basis(), blur_radius, CalculateBlurRadius(), impeller::TRect< T >::Expand(), scaled_sigma, ScaleSigma(), impeller::Vector3::x, impeller::TPoint< T >::x, impeller::Vector3::y, and impeller::TPoint< T >::y.

◆ GetSigmaX()

Scalar impeller::GaussianBlurFilterContents::GetSigmaX ( ) const
inline

Definition at line 64 of file gaussian_blur_filter_contents.h.

64 { return sigma_.x; }

References impeller::TPoint< T >::x.

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

◆ GetSigmaY()

Scalar impeller::GaussianBlurFilterContents::GetSigmaY ( ) const
inline

Definition at line 65 of file gaussian_blur_filter_contents.h.

65 { return sigma_.y; }

References impeller::TPoint< T >::y.

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

◆ ScaleSigma()

Scalar impeller::GaussianBlurFilterContents::ScaleSigma ( Scalar  sigma)
static

Scales down the sigma value to match Skia's behavior.

effective_blur_radius = CalculateBlurRadius(ScaleSigma(sigma_));

This function was calculated by observing Skia's behavior. Its blur at 500 seemed to be 0.15. Since we clamp at 500 I solved the quadratic equation that puts the minima there and a f(0)=1.

Definition at line 876 of file gaussian_blur_filter_contents.cc.

876  {
877  // Limit the kernel size to 1000x1000 pixels, like Skia does.
878  Scalar clamped = std::min(sigma, kMaxSigma);
879  constexpr Scalar a = 3.4e-06;
880  constexpr Scalar b = -3.4e-3;
881  constexpr Scalar c = 1.f;
882  Scalar scalar = c + b * clamped + a * clamped * clamped;
883  return clamped * scalar;
884 }

References impeller::saturated::b.

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


The documentation for this class was generated from the following files:
impeller::TPoint::y
Type y
Definition: point.h:31
impeller::Scalar
float Scalar
Definition: scalar.h:18
impeller::Vector2
Point Vector2
Definition: point.h:331
impeller::FilterContents::BlurStyle::kNormal
@ kNormal
Blurred inside and outside.
impeller::GaussianBlurFilterContents::CalculateBlurRadius
static Scalar CalculateBlurRadius(Scalar sigma)
Definition: gaussian_blur_filter_contents.cc:856
impeller::Point
TPoint< Scalar > Point
Definition: point.h:327
impeller::Quad
std::array< Point, 4 > Quad
Definition: point.h:332
impeller::Matrix::Transform
constexpr Quad Transform(const Quad &quad) const
Definition: matrix.h:513
impeller::TPoint::x
Type x
Definition: point.h:30
scaled_sigma
Vector2 scaled_sigma
Sigma when considering an entity's scale and the effect transform.
Definition: gaussian_blur_filter_contents.cc:81
impeller::saturated::b
SI b
Definition: saturated_math.h:87
blur_radius
Vector2 blur_radius
Blur radius in source pixels based on scaled_sigma.
Definition: gaussian_blur_filter_contents.cc:83
impeller::Matrix::MakeScale
static constexpr Matrix MakeScale(const Vector3 &s)
Definition: matrix.h:104
impeller::GaussianBlurFilterContents::ScaleSigma
static Scalar ScaleSigma(Scalar sigma)
Definition: gaussian_blur_filter_contents.cc:876