Flutter Impeller
impeller::ClipContents Class Referencefinal

#include <clip_contents.h>

Inheritance diagram for impeller::ClipContents:
impeller::Contents

Public Member Functions

 ClipContents ()
 
 ~ClipContents ()
 
void SetGeometry (std::unique_ptr< Geometry > geometry)
 
void SetClipOperation (Entity::ClipOperation clip_op)
 
std::optional< RectGetCoverage (const Entity &entity) const override
 Get the screen space bounding rectangle that this contents affects. More...
 
StencilCoverage GetStencilCoverage (const Entity &entity, const std::optional< Rect > &current_stencil_coverage) const override
 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...
 
bool ShouldRender (const Entity &entity, const std::optional< Rect > &stencil_coverage) const override
 
bool Render (const ContentContext &renderer, const Entity &entity, RenderPass &pass) const override
 
bool CanInheritOpacity (const Entity &entity) const override
 Whether or not this contents can accept the opacity peephole optimization. More...
 
void SetInheritedOpacity (Scalar opacity) override
 Inherit the provided opacity. More...
 
- 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. More...
 
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 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="Snapshot") const
 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...
 
std::optional< SizeGetColorSourceSize () const
 Return the color source's intrinsic size, if available. More...
 
void SetColorSourceSize (Size size)
 
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 const FilterContentsAsFilter () const
 Cast to a filter. Returns nullptr if this Contents is not a filter. 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::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::Contents
static std::shared_ptr< ContentsMakeAnonymous (RenderProc render_proc, CoverageProc coverage_proc)
 

Detailed Description

Definition at line 18 of file clip_contents.h.

Constructor & Destructor Documentation

◆ ClipContents()

impeller::ClipContents::ClipContents ( )
default

◆ ~ClipContents()

impeller::ClipContents::~ClipContents ( )
default

Member Function Documentation

◆ CanInheritOpacity()

bool impeller::ClipContents::CanInheritOpacity ( const Entity entity) const
overridevirtual

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

Definition at line 73 of file clip_contents.cc.

73  {
74  return true;
75 }

◆ GetCoverage()

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

Get the screen space bounding rectangle that this contents affects.

Implements impeller::Contents.

Definition at line 33 of file clip_contents.cc.

33  {
34  return std::nullopt;
35 };

◆ GetStencilCoverage()

Contents::StencilCoverage impeller::ClipContents::GetStencilCoverage ( const Entity entity,
const std::optional< Rect > &  current_stencil_coverage 
) const
overridevirtual

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.

Reimplemented from impeller::Contents.

Definition at line 37 of file clip_contents.cc.

39  {
40  if (!current_stencil_coverage.has_value()) {
41  return {.type = StencilCoverage::Type::kAppend, .coverage = std::nullopt};
42  }
43  switch (clip_op_) {
45  // This can be optimized further by considering cases when the bounds of
46  // the current stencil will shrink.
47  return {.type = StencilCoverage::Type::kAppend,
48  .coverage = current_stencil_coverage};
50  if (!geometry_) {
51  return {.type = StencilCoverage::Type::kAppend,
52  .coverage = std::nullopt};
53  }
54  auto coverage = geometry_->GetCoverage(entity.GetTransformation());
55  if (!coverage.has_value() || !current_stencil_coverage.has_value()) {
56  return {.type = StencilCoverage::Type::kAppend,
57  .coverage = std::nullopt};
58  }
59  return {
60  .type = StencilCoverage::Type::kAppend,
61  .coverage = current_stencil_coverage->Intersection(coverage.value()),
62  };
63  }
64  FML_UNREACHABLE();
65 }

References impeller::Entity::GetTransformation(), impeller::Entity::kDifference, impeller::Entity::kIntersect, and impeller::Contents::StencilCoverage::type.

◆ Render()

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

Implements impeller::Contents.

Definition at line 79 of file clip_contents.cc.

81  {
82  using VS = ClipPipeline::VertexShader;
83 
84  VS::FrameInfo info;
85 
86  Command cmd;
87 
88  auto options = OptionsFromPass(pass);
89  options.blend_mode = BlendMode::kDestination;
90  cmd.stencil_reference = entity.GetStencilDepth();
91  options.stencil_compare = CompareFunction::kEqual;
92  options.stencil_operation = StencilOperation::kIncrementClamp;
93 
94  if (clip_op_ == Entity::ClipOperation::kDifference) {
95  {
96  DEBUG_COMMAND_INFO(cmd, "Difference Clip (Increment)");
97 
98  auto points = Rect(Size(pass.GetRenderTargetSize())).GetPoints();
99  auto vertices =
100  VertexBufferBuilder<VS::PerVertexData>{}
101  .AddVertices({{points[0]}, {points[1]}, {points[2]}, {points[3]}})
102  .CreateVertexBuffer(pass.GetTransientsBuffer());
103  cmd.BindVertices(vertices);
104 
105  info.mvp = Matrix::MakeOrthographic(pass.GetRenderTargetSize());
106  VS::BindFrameInfo(cmd, pass.GetTransientsBuffer().EmplaceUniform(info));
107 
108  options.primitive_type = PrimitiveType::kTriangleStrip;
109  cmd.pipeline = renderer.GetClipPipeline(options);
110  pass.AddCommand(Command(cmd));
111  }
112 
113  {
114  DEBUG_COMMAND_INFO(cmd, "Difference Clip (Punch)");
115 
116  cmd.stencil_reference = entity.GetStencilDepth() + 1;
117  options.stencil_compare = CompareFunction::kEqual;
118  options.stencil_operation = StencilOperation::kDecrementClamp;
119  }
120  } else {
121  DEBUG_COMMAND_INFO(cmd, "Intersect Clip");
122  options.stencil_compare = CompareFunction::kEqual;
123  options.stencil_operation = StencilOperation::kIncrementClamp;
124  }
125 
126  auto geometry_result = geometry_->GetPositionBuffer(renderer, entity, pass);
127  options.primitive_type = geometry_result.type;
128  cmd.pipeline = renderer.GetClipPipeline(options);
129 
130  auto allocator = renderer.GetContext()->GetResourceAllocator();
131  cmd.BindVertices(geometry_result.vertex_buffer);
132 
133  info.mvp = geometry_result.transform;
134  VS::BindFrameInfo(cmd, pass.GetTransientsBuffer().EmplaceUniform(info));
135 
136  pass.AddCommand(std::move(cmd));
137  return true;
138 }

References impeller::RenderPass::AddCommand(), impeller::VertexBufferBuilder< VertexType_, IndexType_ >::AddVertices(), impeller::Command::BindVertices(), DEBUG_COMMAND_INFO, impeller::HostBuffer::EmplaceUniform(), impeller::ContentContext::GetClipPipeline(), impeller::ContentContext::GetContext(), impeller::TRect< T >::GetPoints(), impeller::RenderPass::GetRenderTargetSize(), impeller::Entity::GetStencilDepth(), impeller::RenderPass::GetTransientsBuffer(), impeller::kDecrementClamp, impeller::kDestination, impeller::Entity::kDifference, impeller::kEqual, impeller::kIncrementClamp, impeller::kTriangleStrip, impeller::Matrix::MakeOrthographic(), impeller::OptionsFromPass(), impeller::Command::pipeline, and impeller::Command::stencil_reference.

◆ SetClipOperation()

void impeller::ClipContents::SetClipOperation ( Entity::ClipOperation  clip_op)

Definition at line 29 of file clip_contents.cc.

29  {
30  clip_op_ = clip_op;
31 }

◆ SetGeometry()

void impeller::ClipContents::SetGeometry ( std::unique_ptr< Geometry geometry)

Definition at line 25 of file clip_contents.cc.

25  {
26  geometry_ = std::move(geometry);
27 }

◆ SetInheritedOpacity()

void impeller::ClipContents::SetInheritedOpacity ( Scalar  opacity)
overridevirtual

Inherit the provided opacity.

   Use of this method is invalid if CanAcceptOpacity returns false.

Reimplemented from impeller::Contents.

Definition at line 77 of file clip_contents.cc.

77 {}

◆ ShouldRender()

bool impeller::ClipContents::ShouldRender ( const Entity entity,
const std::optional< Rect > &  stencil_coverage 
) const
overridevirtual

Reimplemented from impeller::Contents.

Definition at line 67 of file clip_contents.cc.

69  {
70  return true;
71 }

The documentation for this class was generated from the following files:
impeller::Entity::ClipOperation::kIntersect
@ kIntersect
impeller::OptionsFromPass
ContentContextOptions OptionsFromPass(const RenderPass &pass)
Definition: contents.cc:20
DEBUG_COMMAND_INFO
#define DEBUG_COMMAND_INFO(obj, arg)
Definition: command.h:31
impeller::Entity::ClipOperation::kDifference
@ kDifference
impeller::Size
TSize< Scalar > Size
Definition: size.h:135
impeller::PrimitiveType::kTriangleStrip
@ kTriangleStrip
impeller::TRect::GetPoints
constexpr std::array< TPoint< T >, 4 > GetPoints() const
Get the points that represent the 4 corners of this rectangle. The order is: Top left,...
Definition: rect.h:187
impeller::BlendMode::kDestination
@ kDestination
impeller::Rect
TRect< Scalar > Rect
Definition: rect.h:306
impeller::StencilOperation::kIncrementClamp
@ kIncrementClamp
Increment the current stencil value by 1. Clamp it to the maximum.
impeller::StencilOperation::kDecrementClamp
@ kDecrementClamp
Decrement the current stencil value by 1. Clamp it to zero.
impeller::Matrix::MakeOrthographic
static constexpr Matrix MakeOrthographic(TSize< T > size)
Definition: matrix.h:448
impeller::CompareFunction::kEqual
@ kEqual
Comparison test passes if new_value == current_value.
impeller::RenderPipelineT::VertexShader
VertexShader_ VertexShader
Definition: pipeline.h:90