Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Public Member Functions | Static Public Member Functions | List of all members
impeller::SolidColorContents Class Referencefinal

#include <solid_color_contents.h>

Inheritance diagram for impeller::SolidColorContents:
impeller::ColorSourceContents impeller::Contents

Public Member Functions

 SolidColorContents ()
 
 ~SolidColorContents () override
 
void SetColor (Color color)
 
Color GetColor () const
 
bool IsSolidColor () const override
 
bool IsOpaque () const override
 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.
 
std::optional< RectGetCoverage (const Entity &entity) const override
 Get the area of the render pass that will be affected when this contents is rendered.
 
bool Render (const ContentContext &renderer, const Entity &entity, RenderPass &pass) const override
 
std::optional< ColorAsBackgroundColor (const Entity &entity, ISize target_size) const override
 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.
 
bool ApplyColorFilter (const ColorFilterProc &color_filter_proc) override
 If possible, applies a color filter to this contents inputs on the CPU.
 
- Public Member Functions inherited from impeller::ColorSourceContents
 ColorSourceContents ()
 
 ~ColorSourceContents () override
 
void SetGeometry (std::shared_ptr< Geometry > geometry)
 Set the geometry that this contents will use to render.
 
const std::shared_ptr< Geometry > & GetGeometry () const
 Get the geometry that this contents will use to render.
 
void SetEffectTransform (Matrix matrix)
 Set the effect transform for this color source.
 
const MatrixGetInverseEffectTransform () const
 Set the inverted effect transform for this color source.
 
void SetOpacityFactor (Scalar opacity)
 Set the opacity factor for this color source.
 
Scalar GetOpacityFactor () const
 Get the opacity factor for this color source.
 
bool CanInheritOpacity (const Entity &entity) const override
 Whether or not this contents can accept the opacity peephole optimization.
 
void SetInheritedOpacity (Scalar opacity) override
 Inherit the provided opacity.
 
- Public Member Functions inherited from impeller::Contents
 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.
 
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 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 const FilterContentsAsFilter () const
 Cast to a filter. Returns nullptr if this Contents is not a filter.
 

Static Public Member Functions

static std::unique_ptr< SolidColorContentsMake (const Path &path, Color color)
 
- 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::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)>
 
- Protected Types inherited from impeller::ColorSourceContents
using BindFragmentCallback = std::function< bool(RenderPass &pass)>
 
using PipelineBuilderMethod = std::shared_ptr< Pipeline< PipelineDescriptor > >(impeller::ContentContext::*)(ContentContextOptions) const
 
using PipelineBuilderCallback = std::function< std::shared_ptr< Pipeline< PipelineDescriptor > >(ContentContextOptions)>
 
- Protected Member Functions inherited from impeller::ColorSourceContents
template<typename VertexShaderT >
bool DrawGeometry (const ContentContext &renderer, const Entity &entity, RenderPass &pass, const PipelineBuilderCallback &pipeline_callback, typename VertexShaderT::FrameInfo frame_info, const BindFragmentCallback &bind_fragment_callback) const
 

Detailed Description

Definition at line 21 of file solid_color_contents.h.

Constructor & Destructor Documentation

◆ SolidColorContents()

impeller::SolidColorContents::SolidColorContents ( )
default

◆ ~SolidColorContents()

impeller::SolidColorContents::~SolidColorContents ( )
overridedefault

Member Function Documentation

◆ ApplyColorFilter()

bool impeller::SolidColorContents::ApplyColorFilter ( const ColorFilterProc color_filter_proc)
overridevirtual

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 from impeller::Contents.

Definition at line 86 of file solid_color_contents.cc.

87 {
88 color_ = color_filter_proc(color_);
89 return true;
90}

◆ AsBackgroundColor()

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

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 from impeller::Contents.

Definition at line 77 of file solid_color_contents.cc.

79 {
80 Rect target_rect = Rect::MakeSize(target_size);
81 return GetGeometry()->CoversArea(entity.GetTransform(), target_rect)
82 ? GetColor()
83 : std::optional<Color>();
84}
const std::shared_ptr< Geometry > & GetGeometry() const
Get the geometry that this contents will use to render.
TRect< Scalar > Rect
Definition rect.h:746
Definition ref_ptr.h:256
static constexpr TRect MakeSize(const TSize< U > &size)
Definition rect.h:146

◆ GetColor()

Color impeller::SolidColorContents::GetColor ( ) const

Definition at line 23 of file solid_color_contents.cc.

23 {
24 return color_.WithAlpha(color_.alpha * GetOpacityFactor());
25}
Scalar GetOpacityFactor() const
Get the opacity factor for this color source.
Scalar alpha
Definition color.h:143
constexpr Color WithAlpha(Scalar new_alpha) const
Definition color.h:270

◆ GetCoverage()

std::optional< Rect > impeller::SolidColorContents::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.

Reimplemented from impeller::ColorSourceContents.

Definition at line 35 of file solid_color_contents.cc.

36 {
37 if (GetColor().IsTransparent()) {
38 return std::nullopt;
39 }
40
41 const std::shared_ptr<Geometry>& geometry = GetGeometry();
42 if (geometry == nullptr) {
43 return std::nullopt;
44 }
45 return geometry->GetCoverage(entity.GetTransform());
46};

◆ IsOpaque()

bool impeller::SolidColorContents::IsOpaque ( ) const
overridevirtual

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 from impeller::Contents.

Definition at line 31 of file solid_color_contents.cc.

31 {
32 return GetColor().IsOpaque();
33}
constexpr bool IsOpaque() const
Definition color.h:886

◆ IsSolidColor()

bool impeller::SolidColorContents::IsSolidColor ( ) const
overridevirtual

Reimplemented from impeller::ColorSourceContents.

Definition at line 27 of file solid_color_contents.cc.

27 {
28 return true;
29}

◆ Make()

std::unique_ptr< SolidColorContents > impeller::SolidColorContents::Make ( const Path path,
Color  color 
)
static

Definition at line 69 of file solid_color_contents.cc.

70 {
71 auto contents = std::make_unique<SolidColorContents>();
72 contents->SetGeometry(Geometry::MakeFillPath(path));
73 contents->SetColor(color);
74 return contents;
75}
SkColor4f color
static std::shared_ptr< Geometry > MakeFillPath(const Path &path, std::optional< Rect > inner_rect=std::nullopt)
Definition geometry.cc:60

◆ Render()

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

Implements impeller::Contents.

Definition at line 48 of file solid_color_contents.cc.

50 {
51 auto capture = entity.GetCapture().CreateChild("SolidColorContents");
53
54 VS::FrameInfo frame_info;
55 frame_info.color = capture.AddColor("Color", GetColor()).Premultiply();
56
57 PipelineBuilderCallback pipeline_callback =
58 [&renderer](ContentContextOptions options) {
59 return renderer.GetSolidFillPipeline(options);
60 };
61 return ColorSourceContents::DrawGeometry<VS>(
62 renderer, entity, pass, pipeline_callback, frame_info,
63 [](RenderPass& pass) {
64 pass.SetCommandLabel("Solid Fill");
65 return true;
66 });
67}
const char * options
std::function< std::shared_ptr< Pipeline< PipelineDescriptor > >(ContentContextOptions)> PipelineBuilderCallback
SolidFillVertexShader VS

◆ SetColor()

void impeller::SolidColorContents::SetColor ( Color  color)

Definition at line 19 of file solid_color_contents.cc.

19 {
20 color_ = color;
21}

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