Flutter Impeller
contents.cc
Go to the documentation of this file.
1 // Copyright 2013 The Flutter Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
6 #include <optional>
7 
8 #include "fml/logging.h"
10 #include "impeller/core/formats.h"
13 #include "impeller/entity/entity.h"
16 
17 namespace impeller {
18 
21  opts.sample_count = pass.GetSampleCount();
23 
24  bool has_depth_stencil_attachments =
26  FML_DCHECK(pass.HasDepthAttachment() == pass.HasStencilAttachment());
27 
28  opts.has_depth_stencil_attachments = has_depth_stencil_attachments;
31  return opts;
32 }
33 
35  const Entity& entity) {
37  opts.blend_mode = entity.GetBlendMode();
38  return opts;
39 }
40 
41 std::shared_ptr<Contents> Contents::MakeAnonymous(
42  Contents::RenderProc render_proc,
43  Contents::CoverageProc coverage_proc) {
44  return AnonymousContents::Make(std::move(render_proc),
45  std::move(coverage_proc));
46 }
47 
48 Contents::Contents() = default;
49 
50 Contents::~Contents() = default;
51 
52 bool Contents::IsOpaque(const Matrix& transform) const {
53  return false;
54 }
55 
57  const Entity& entity,
58  const std::optional<Rect>& current_clip_coverage) const {
60  .coverage = current_clip_coverage};
61 }
62 
63 std::optional<Snapshot> Contents::RenderToSnapshot(
64  const ContentContext& renderer,
65  const Entity& entity,
66  std::optional<Rect> coverage_limit,
67  const std::optional<SamplerDescriptor>& sampler_descriptor,
68  bool msaa_enabled,
69  int32_t mip_count,
70  const std::string& label) const {
71  auto coverage = GetCoverage(entity);
72  if (!coverage.has_value()) {
73  return std::nullopt;
74  }
75 
76  std::shared_ptr<CommandBuffer> command_buffer =
77  renderer.GetContext()->CreateCommandBuffer();
78  if (!command_buffer) {
79  return std::nullopt;
80  }
81 
82  // Pad Contents snapshots with 1 pixel borders to ensure correct sampling
83  // behavior. Not doing so results in a coverage leak for filters that support
84  // customizing the input sampling mode. Snapshots of contents should be
85  // theoretically treated as infinite size just like layers.
86  coverage = coverage->Expand(1);
87 
88  if (coverage_limit.has_value()) {
89  coverage = coverage->Intersection(*coverage_limit);
90  if (!coverage.has_value()) {
91  return std::nullopt;
92  }
93  }
94 
95  ISize subpass_size = ISize::Ceil(coverage->GetSize());
96  fml::StatusOr<RenderTarget> render_target = renderer.MakeSubpass(
97  label, subpass_size, command_buffer,
98  [&contents = *this, &entity, &coverage](const ContentContext& renderer,
99  RenderPass& pass) -> bool {
100  Entity sub_entity;
102  sub_entity.SetTransform(
103  Matrix::MakeTranslation(Vector3(-coverage->GetOrigin())) *
104  entity.GetTransform());
105  return contents.Render(renderer, sub_entity, pass);
106  },
107  msaa_enabled, /*depth_stencil_enabled=*/true,
108  std::min(mip_count, static_cast<int32_t>(subpass_size.MipCount())));
109 
110  if (!render_target.ok()) {
111  return std::nullopt;
112  }
113  if (!renderer.GetContext()
114  ->GetCommandQueue()
115  ->Submit(/*buffers=*/{std::move(command_buffer)})
116  .ok()) {
117  return std::nullopt;
118  }
119 
120  auto snapshot = Snapshot{
121  .texture = render_target.value().GetRenderTargetTexture(),
122  .transform = Matrix::MakeTranslation(coverage->GetOrigin()),
123  };
124  if (sampler_descriptor.has_value()) {
125  snapshot.sampler_descriptor = sampler_descriptor.value();
126  }
127 
128  return snapshot;
129 }
130 
132  VALIDATION_LOG << "Contents::SetInheritedOpacity should never be called when "
133  "Contents::CanAcceptOpacity returns false.";
134 }
135 
136 std::optional<Color> Contents::AsBackgroundColor(const Entity& entity,
137  ISize target_size) const {
138  return {};
139 }
140 
142  return nullptr;
143 }
144 
146  const Contents::ColorFilterProc& color_filter_proc) {
147  return false;
148 }
149 
150 void Contents::SetCoverageHint(std::optional<Rect> coverage_hint) {
151  coverage_hint_ = coverage_hint;
152 }
153 
154 const std::optional<Rect>& Contents::GetCoverageHint() const {
155  return coverage_hint_;
156 }
157 
158 std::optional<Size> Contents::GetColorSourceSize() const {
159  return color_source_size_;
160 };
161 
163  color_source_size_ = size;
164 }
165 
166 } // namespace impeller
impeller::ContentContextOptions::StencilMode::kIgnore
@ kIgnore
impeller::Contents::GetColorSourceSize
std::optional< Size > GetColorSourceSize() const
Return the color source's intrinsic size, if available.
Definition: contents.cc:158
impeller::OptionsFromPass
ContentContextOptions OptionsFromPass(const RenderPass &pass)
Definition: contents.cc:19
impeller::CompareFunction::kGreater
@ kGreater
Comparison test passes if new_value > current_value.
contents.h
impeller::Scalar
float Scalar
Definition: scalar.h:18
impeller::Entity::SetBlendMode
void SetBlendMode(BlendMode blend_mode)
Definition: entity.cc:108
impeller::Contents::SetCoverageHint
void SetCoverageHint(std::optional< Rect > coverage_hint)
Hint that specifies the coverage area of this Contents that will actually be used during rendering....
Definition: contents.cc:150
impeller::Contents::AsBackgroundColor
virtual std::optional< Color > AsBackgroundColor(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 ...
Definition: contents.cc:136
impeller::Entity::GetTransform
const Matrix & GetTransform() const
Get the global transform matrix for this Entity.
Definition: entity.cc:47
entity.h
impeller::Contents::SetColorSourceSize
void SetColorSourceSize(Size size)
Definition: contents.cc:162
impeller::Contents::RenderToSnapshot
virtual std::optional< Snapshot > 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
Render this contents to a snapshot, respecting the entity's transform, path, clip depth,...
Definition: contents.cc:63
impeller::Contents::Contents
Contents()
impeller::Contents::GetCoverage
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.
impeller::TSize::Ceil
constexpr TSize Ceil() const
Definition: size.h:96
formats.h
impeller::ContentContextOptions::has_depth_stencil_attachments
bool has_depth_stencil_attachments
Definition: content_context.h:313
impeller::ContentContextOptions::blend_mode
BlendMode blend_mode
Definition: content_context.h:308
impeller::Matrix::MakeTranslation
static constexpr Matrix MakeTranslation(const Vector3 &t)
Definition: matrix.h:95
validation.h
subpass_size
ISize subpass_size
The output size of the down-sampling pass.
Definition: gaussian_blur_filter_contents.cc:201
impeller::Contents::GetClipCoverage
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...
Definition: contents.cc:56
impeller::Entity
Definition: entity.h:20
impeller::OptionsFromPassAndEntity
ContentContextOptions OptionsFromPassAndEntity(const RenderPass &pass, const Entity &entity)
Definition: contents.cc:34
impeller::Contents::GetCoverageHint
const std::optional< Rect > & GetCoverageHint() const
Definition: contents.cc:154
impeller::TSize
Definition: size.h:19
impeller::ContentContextOptions::color_attachment_pixel_format
PixelFormat color_attachment_pixel_format
Definition: content_context.h:312
render_pass.h
impeller::Contents::~Contents
virtual ~Contents()
transform
Matrix transform
Definition: gaussian_blur_filter_contents.cc:213
impeller::ContentContext::GetContext
std::shared_ptr< Context > GetContext() const
Definition: content_context.cc:550
impeller::Contents::ColorFilterProc
std::function< Color(Color)> ColorFilterProc
Definition: contents.h:35
impeller::Contents::ClipCoverage::type
Type type
Definition: contents.h:40
impeller::ContentContext::MakeSubpass
fml::StatusOr< RenderTarget > MakeSubpass(std::string_view label, ISize texture_size, const std::shared_ptr< CommandBuffer > &command_buffer, const SubpassCallback &subpass_callback, bool msaa_enabled=true, bool depth_stencil_enabled=false, int32_t mip_count=1) const
Creates a new texture of size texture_size and calls subpass_callback with a RenderPass for drawing t...
Definition: content_context.cc:478
impeller::Snapshot
Represents a texture and its intended draw transform/sampler configuration.
Definition: snapshot.h:24
impeller::RenderPass::GetSampleCount
SampleCount GetSampleCount() const
The sample count of the attached render target.
Definition: render_pass.cc:23
impeller::ContentContextOptions::stencil_mode
StencilMode stencil_mode
Definition: content_context.h:310
impeller::RenderPass::HasDepthAttachment
bool HasDepthAttachment() const
Whether the render target has a depth attachment.
Definition: render_pass.cc:31
anonymous_contents.h
impeller::Entity::GetBlendMode
BlendMode GetBlendMode() const
Definition: entity.cc:112
impeller::RenderPass
Render passes encode render commands directed as one specific render target into an underlying comman...
Definition: render_pass.h:33
VALIDATION_LOG
#define VALIDATION_LOG
Definition: validation.h:91
command_buffer.h
content_context.h
impeller::ContentContextOptions::depth_compare
CompareFunction depth_compare
Definition: content_context.h:309
impeller::Entity::SetTransform
void SetTransform(const Matrix &transform)
Set the global transform matrix for this Entity.
Definition: entity.cc:63
impeller::Contents::RenderProc
std::function< bool(const ContentContext &renderer, const Entity &entity, RenderPass &pass)> RenderProc
Definition: contents.h:57
impeller::ContentContextOptions::sample_count
SampleCount sample_count
Definition: content_context.h:307
impeller::Contents::SetInheritedOpacity
virtual void SetInheritedOpacity(Scalar opacity)
Inherit the provided opacity.
Definition: contents.cc:131
impeller::RenderPass::HasStencilAttachment
bool HasStencilAttachment() const
Whether the render target has an stencil attachment.
Definition: render_pass.cc:35
impeller::Contents::ClipCoverage
Definition: contents.h:37
impeller::Contents::MakeAnonymous
static std::shared_ptr< Contents > MakeAnonymous(RenderProc render_proc, CoverageProc coverage_proc)
Definition: contents.cc:41
impeller::Contents::ApplyColorFilter
virtual bool ApplyColorFilter(const ColorFilterProc &color_filter_proc)
If possible, applies a color filter to this contents inputs on the CPU.
Definition: contents.cc:145
impeller::Contents::CoverageProc
std::function< std::optional< Rect >(const Entity &entity)> CoverageProc
Definition: contents.h:58
impeller::Snapshot::texture
std::shared_ptr< Texture > texture
Definition: snapshot.h:25
impeller::Contents::IsOpaque
virtual bool IsOpaque(const Matrix &transform) const
Whether this Contents only emits opaque source colors from the fragment stage. This value does not ac...
Definition: contents.cc:52
impeller::ContentContextOptions
Definition: content_context.h:254
impeller
Definition: allocation.cc:12
impeller::ContentContext
Definition: content_context.h:366
impeller::Contents::AsFilter
virtual const FilterContents * AsFilter() const
Cast to a filter. Returns nullptr if this Contents is not a filter.
Definition: contents.cc:141
impeller::Matrix
A 4x4 matrix using column-major storage.
Definition: matrix.h:37
impeller::Contents::ClipCoverage::Type::kNoChange
@ kNoChange
impeller::Vector3
Definition: vector.h:20
impeller::BlendMode::kSourceOver
@ kSourceOver
impeller::AnonymousContents::Make
static std::shared_ptr< Contents > Make(RenderProc render_proc, CoverageProc coverage_proc)
Definition: anonymous_contents.cc:11
impeller::FilterContents
Definition: filter_contents.h:22
impeller::RenderPass::GetRenderTargetPixelFormat
PixelFormat GetRenderTargetPixelFormat() const
The pixel format of the attached render target.
Definition: render_pass.cc:27