Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Classes | Public Types | Public Member Functions | Static Public Member Functions | List of all members
impeller::Contents Class Referenceabstract

#include <contents.h>

Inheritance diagram for impeller::Contents:
impeller::AnonymousContents impeller::AtlasContents impeller::CheckerboardContents impeller::ClipContents impeller::ClipRestoreContents impeller::ColorSourceContents impeller::FilterContents impeller::SolidRRectBlurContents impeller::TextContents impeller::TextureContents impeller::VerticesSimpleBlendContents

Classes

struct  ClipCoverage
 

Public Types

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

 Contents ()
 
virtual ~Contents ()
 
virtual void PopulateGlyphAtlas (const std::shared_ptr< LazyGlyphAtlas > &lazy_glyph_atlas, Scalar scale)
 Add any text data to the specified lazy atlas. The scale parameter must be used again later when drawing the text.
 
virtual bool Render (const ContentContext &renderer, const Entity &entity, RenderPass &pass) const =0
 
virtual std::optional< RectGetCoverage (const Entity &entity) const =0
 Get the area of the render pass that will be affected when this contents is rendered.
 
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().
 
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.
 
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.
 
virtual 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="Snapshot") const
 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).
 
virtual bool ShouldRender (const Entity &entity, const std::optional< Rect > clip_coverage) const
 
std::optional< SizeGetColorSourceSize () const
 Return the color source's intrinsic size, if available.
 
void SetColorSourceSize (Size size)
 
virtual bool CanInheritOpacity (const Entity &entity) const
 Whether or not this contents can accept the opacity peephole optimization.
 
virtual void SetInheritedOpacity (Scalar opacity)
 Inherit the provided opacity.
 
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.
 
virtual const FilterContentsAsFilter () const
 Cast to a filter. Returns nullptr if this Contents is not a filter.
 
virtual bool ApplyColorFilter (const ColorFilterProc &color_filter_proc)
 If possible, applies a color filter to this contents inputs on the CPU.
 

Static Public Member Functions

static std::shared_ptr< ContentsMakeAnonymous (RenderProc render_proc, CoverageProc coverage_proc)
 

Detailed Description

Definition at line 34 of file contents.h.

Member Typedef Documentation

◆ ColorFilterProc

A procedure that filters a given unpremultiplied color to produce a new unpremultiplied color.

Definition at line 38 of file contents.h.

◆ CoverageProc

using impeller::Contents::CoverageProc = std::function<std::optional<Rect>(const Entity& entity)>

Definition at line 50 of file contents.h.

◆ RenderProc

using impeller::Contents::RenderProc = std::function<bool(const ContentContext& renderer, const Entity& entity, RenderPass& pass)>

Definition at line 47 of file contents.h.

Constructor & Destructor Documentation

◆ Contents()

impeller::Contents::Contents ( )
default

◆ ~Contents()

impeller::Contents::~Contents ( )
virtualdefault

Member Function Documentation

◆ ApplyColorFilter()

bool impeller::Contents::ApplyColorFilter ( const ColorFilterProc color_filter_proc)
virtual

If possible, applies a color filter to this contents inputs on the CPU.

This method will either fully apply the color filter or perform no action. Partial/incorrect application of the color filter will never occur.

Parameters
[in]color_filter_procA function that filters a given unpremultiplied color to produce a new unpremultiplied color.
Returns
True if the color filter was able to be fully applied to all all relevant inputs. Otherwise, this operation is a no-op and false is returned.

Reimplemented in impeller::ConicalGradientContents, impeller::LinearGradientContents, impeller::RadialGradientContents, impeller::SolidColorContents, impeller::SolidRRectBlurContents, and impeller::SweepGradientContents.

Definition at line 150 of file contents.cc.

151 {
152 return false;
153}

◆ AsBackgroundColor()

std::optional< Color > impeller::Contents::AsBackgroundColor ( const Entity entity,
ISize  target_size 
) const
virtual

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.

This is useful for absorbing full screen solid color draws into subpass clear colors.

Reimplemented in impeller::SolidColorContents.

Definition at line 141 of file contents.cc.

142 {
143 return {};
144}

◆ AsFilter()

const FilterContents * impeller::Contents::AsFilter ( ) const
virtual

Cast to a filter. Returns nullptr if this Contents is not a filter.

Reimplemented in impeller::FilterContents.

Definition at line 146 of file contents.cc.

146 {
147 return nullptr;
148}

◆ CanInheritOpacity()

bool impeller::Contents::CanInheritOpacity ( const Entity entity) const
virtual

Whether or not this contents can accept the opacity peephole optimization.

By default all contents return false. Contents are responsible for determining whether or not their own geometries intersect in a way that makes accepting opacity impossible. It is always safe to return false, especially if computing overlap would be computationally expensive.

Reimplemented in impeller::ClipContents, impeller::ClipRestoreContents, impeller::ColorSourceContents, impeller::RuntimeEffectContents, impeller::TextContents, and impeller::TextureContents.

Definition at line 132 of file contents.cc.

132 {
133 return false;
134}

◆ GetClipCoverage()

Contents::ClipCoverage impeller::Contents::GetClipCoverage ( const Entity entity,
const std::optional< Rect > &  current_clip_coverage 
) const
virtual

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.

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

Reimplemented in impeller::ClipContents, and impeller::ClipRestoreContents.

Definition at line 57 of file contents.cc.

59 {
60 return {.type = ClipCoverage::Type::kNoChange,
61 .coverage = current_clip_coverage};
62}

◆ GetColorSourceSize()

std::optional< Size > impeller::Contents::GetColorSourceSize ( ) const

Return the color source's intrinsic size, if available.

    For example, a gradient has a size based on its end and beginning
    points, ignoring any tiling. Solid colors and runtime effects have
    no size.

Definition at line 178 of file contents.cc.

178 {
179 return color_source_size_;
180};

◆ GetCoverage()

virtual std::optional< Rect > impeller::Contents::GetCoverage ( const Entity entity) const
pure virtual

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.

Implemented in impeller::AnonymousContents, impeller::AtlasContents, impeller::CheckerboardContents, impeller::ClipContents, impeller::ClipRestoreContents, impeller::ColorSourceContents, impeller::FilterContents, impeller::FramebufferBlendContents, impeller::SolidColorContents, impeller::SolidRRectBlurContents, impeller::TextContents, impeller::TextureContents, and impeller::VerticesSimpleBlendContents.

◆ GetCoverageHint()

const std::optional< Rect > & impeller::Contents::GetCoverageHint ( ) const

Definition at line 174 of file contents.cc.

174 {
175 return coverage_hint_;
176}

◆ IsOpaque()

bool impeller::Contents::IsOpaque ( ) const
virtual

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.

Reimplemented in impeller::LinearGradientContents, impeller::RadialGradientContents, impeller::SolidColorContents, impeller::SweepGradientContents, and impeller::TiledTextureContents.

Definition at line 53 of file contents.cc.

53 {
54 return false;
55}

◆ MakeAnonymous()

std::shared_ptr< Contents > impeller::Contents::MakeAnonymous ( Contents::RenderProc  render_proc,
Contents::CoverageProc  coverage_proc 
)
static

Definition at line 42 of file contents.cc.

44 {
45 return AnonymousContents::Make(std::move(render_proc),
46 std::move(coverage_proc));
47}
static std::shared_ptr< Contents > Make(RenderProc render_proc, CoverageProc coverage_proc)

◆ PopulateGlyphAtlas()

virtual void impeller::Contents::PopulateGlyphAtlas ( const std::shared_ptr< LazyGlyphAtlas > &  lazy_glyph_atlas,
Scalar  scale 
)
inlinevirtual

Add any text data to the specified lazy atlas. The scale parameter must be used again later when drawing the text.

Reimplemented in impeller::FilterContents, and impeller::TextContents.

Definition at line 61 of file contents.h.

63 {}

◆ Render()

virtual bool impeller::Contents::Render ( const ContentContext renderer,
const Entity entity,
RenderPass pass 
) const
pure virtual

◆ RenderToSnapshot()

std::optional< Snapshot > impeller::Contents::RenderToSnapshot ( 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 = "Snapshot" 
) const
virtual

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 in impeller::FilterContents, impeller::TextureContents, and impeller::TiledTextureContents.

Definition at line 64 of file contents.cc.

71 {
72 auto coverage = GetCoverage(entity);
73 if (!coverage.has_value()) {
74 return std::nullopt;
75 }
76
77 std::shared_ptr<CommandBuffer> command_buffer =
78 renderer.GetContext()->CreateCommandBuffer();
79 if (!command_buffer) {
80 return std::nullopt;
81 }
82
83 // Pad Contents snapshots with 1 pixel borders to ensure correct sampling
84 // behavior. Not doing so results in a coverage leak for filters that support
85 // customizing the input sampling mode. Snapshots of contents should be
86 // theoretically treated as infinite size just like layers.
87 coverage = coverage->Expand(1);
88
89 if (coverage_limit.has_value()) {
90 coverage = coverage->Intersection(*coverage_limit);
91 if (!coverage.has_value()) {
92 return std::nullopt;
93 }
94 }
95
96 ISize subpass_size = ISize::Ceil(coverage->GetSize());
97 fml::StatusOr<RenderTarget> render_target = renderer.MakeSubpass(
98 label, subpass_size, command_buffer,
99 [&contents = *this, &entity, &coverage](const ContentContext& renderer,
100 RenderPass& pass) -> bool {
101 Entity sub_entity;
102 sub_entity.SetBlendMode(BlendMode::kSourceOver);
103 sub_entity.SetTransform(
104 Matrix::MakeTranslation(Vector3(-coverage->GetOrigin())) *
105 entity.GetTransform());
106 return contents.Render(renderer, sub_entity, pass);
107 },
108 msaa_enabled, /*depth_stencil_enabled=*/true,
109 std::min(mip_count, static_cast<int32_t>(subpass_size.MipCount())));
110
111 if (!render_target.ok()) {
112 return std::nullopt;
113 }
114 if (!renderer.GetContext()
115 ->GetCommandQueue()
116 ->Submit(/*buffers=*/{std::move(command_buffer)})
117 .ok()) {
118 return std::nullopt;
119 }
120
121 auto snapshot = Snapshot{
122 .texture = render_target.value().GetRenderTargetTexture(),
123 .transform = Matrix::MakeTranslation(coverage->GetOrigin()),
124 };
125 if (sampler_descriptor.has_value()) {
126 snapshot.sampler_descriptor = sampler_descriptor.value();
127 }
128
129 return snapshot;
130}
static bool ok(int result)
const T & value() const
Definition status_or.h:77
bool ok() const
Definition status_or.h:75
virtual std::optional< Rect > GetCoverage(const Entity &entity) const =0
Get the area of the render pass that will be affected when this contents is rendered.
TSize< int64_t > ISize
Definition size.h:138
static constexpr Matrix MakeTranslation(const Vector3 &t)
Definition matrix.h:95
constexpr TSize Ceil() const
Definition size.h:96

◆ SetColorSourceSize()

void impeller::Contents::SetColorSourceSize ( Size  size)

Definition at line 182 of file contents.cc.

182 {
183 color_source_size_ = size;
184}
it will be possible to load the file into Perfetto s trace viewer disable asset Prevents usage of any non test fonts unless they were explicitly Loaded via prefetched default font Indicates whether the embedding started a prefetch of the default font manager before creating the engine run In non interactive keep the shell running after the Dart script has completed enable serial On low power devices with low core running concurrent GC tasks on threads can cause them to contend with the UI thread which could potentially lead to jank This option turns off all concurrent GC activities domain network JSON encoded network policy per domain This overrides the DisallowInsecureConnections switch Embedder can specify whether to allow or disallow insecure connections at a domain level old gen heap size
Definition switches.h:259

◆ SetCoverageHint()

void impeller::Contents::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().

Definition at line 170 of file contents.cc.

170 {
171 coverage_hint_ = coverage_hint;
172}

◆ SetInheritedOpacity()

void impeller::Contents::SetInheritedOpacity ( Scalar  opacity)
virtual

Inherit the provided opacity.

   Use of this method is invalid if CanAcceptOpacity returns false.

Reimplemented in impeller::ClipContents, impeller::ClipRestoreContents, impeller::ColorSourceContents, impeller::TextContents, and impeller::TextureContents.

Definition at line 136 of file contents.cc.

136 {
137 VALIDATION_LOG << "Contents::SetInheritedOpacity should never be called when "
138 "Contents::CanAcceptOpacity returns false.";
139}
#define VALIDATION_LOG
Definition validation.h:73

◆ ShouldRender()

bool impeller::Contents::ShouldRender ( const Entity entity,
const std::optional< Rect clip_coverage 
) const
virtual

Reimplemented in impeller::ClipContents, and impeller::ClipRestoreContents.

Definition at line 155 of file contents.cc.

156 {
157 if (!clip_coverage.has_value()) {
158 return false;
159 }
160 auto coverage = GetCoverage(entity);
161 if (!coverage.has_value()) {
162 return false;
163 }
164 if (coverage == Rect::MakeMaximum()) {
165 return true;
166 }
167 return clip_coverage->IntersectsWithRect(coverage.value());
168}
static constexpr TRect MakeMaximum()
Definition rect.h:174

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