Flutter Impeller
impeller::Entity Class Reference

#include <entity.h>

Public Types

enum  RenderingMode {
  RenderingMode::kDirect,
  RenderingMode::kSubpassAppendSnapshotTransform,
  RenderingMode::kSubpassPrependSnapshotTransform
}
 
enum  TileMode {
  TileMode::kClamp,
  TileMode::kRepeat,
  TileMode::kMirror,
  TileMode::kDecal
}
 
enum  ClipOperation {
  ClipOperation::kDifference,
  ClipOperation::kIntersect
}
 

Public Member Functions

 Entity ()
 
 ~Entity ()
 
 Entity (Entity &&)
 
const MatrixGetTransform () const
 Get the global transform matrix for this Entity. More...
 
Matrix GetShaderTransform (const RenderPass &pass) const
 Get the vertex shader transform used for drawing this Entity. More...
 
void SetTransform (const Matrix &transform)
 Set the global transform matrix for this Entity. More...
 
std::optional< RectGetCoverage () const
 
Contents::ClipCoverage GetClipCoverage (const std::optional< Rect > &current_clip_coverage) const
 
bool ShouldRender (const std::optional< Rect > &clip_coverage) const
 
void SetContents (std::shared_ptr< Contents > contents)
 
const std::shared_ptr< Contents > & GetContents () const
 
void SetClipDepth (uint32_t clip_depth)
 
uint32_t GetClipDepth () const
 
float GetShaderClipDepth () const
 
void SetBlendMode (BlendMode blend_mode)
 
BlendMode GetBlendMode () const
 
bool Render (const ContentContext &renderer, RenderPass &parent_pass) const
 
bool CanInheritOpacity () const
 
bool SetInheritedOpacity (Scalar alpha)
 
std::optional< ColorAsBackgroundColor (ISize target_size) const
 
Scalar DeriveTextScale () const
 
Entity Clone () const
 

Static Public Member Functions

static Entity FromSnapshot (const Snapshot &snapshot, BlendMode blend_mode=BlendMode::kSourceOver)
 Create an entity that can be used to render a given snapshot. More...
 
static Matrix GetShaderTransform (Scalar clip_depth, const RenderPass &pass, const Matrix &transform)
 Static utility that computes the vertex shader transform used for drawing an Entity with a given the clip depth and RenderPass size. More...
 
static float GetShaderClipDepth (uint32_t clip_depth)
 
static bool IsBlendModeDestructive (BlendMode blend_mode)
 Returns true if the blend mode is "destructive", meaning that even fully transparent source colors would result in the destination getting changed. More...
 

Static Public Attributes

static constexpr BlendMode kLastPipelineBlendMode = BlendMode::kModulate
 
static constexpr BlendMode kLastAdvancedBlendMode = BlendMode::kLuminosity
 
static constexpr Scalar kDepthEpsilon = 1.0f / 262144.0
 

Detailed Description

Definition at line 20 of file entity.h.

Member Enumeration Documentation

◆ ClipOperation

Enumerator
kDifference 
kIntersect 

Definition at line 61 of file entity.h.

61  {
63  kIntersect,
64  };

◆ RenderingMode

Enumerator
kDirect 

In direct mode, the Entity's transform is used as the current local-to-screen transform matrix.

kSubpassAppendSnapshotTransform 

In subpass mode, the Entity passed through the filter is in screen space rather than local space, and so some filters (namely, MatrixFilterContents) need to interpret the given EffectTransform as the current transform matrix.

kSubpassPrependSnapshotTransform 

Definition at line 27 of file entity.h.

27  {
28  /// In direct mode, the Entity's transform is used as the current
29  /// local-to-screen transform matrix.
30  kDirect,
31  /// In subpass mode, the Entity passed through the filter is in screen space
32  /// rather than local space, and so some filters (namely,
33  /// MatrixFilterContents) need to interpret the given EffectTransform as the
34  /// current transform matrix.
35  kSubpassAppendSnapshotTransform,
36  kSubpassPrependSnapshotTransform,
37  };

◆ TileMode

An enum to define how to repeat, fold, or omit colors outside of the typically defined range of the source of the colors (such as the bounds of an image or the defining geometry of a gradient).

Enumerator
kClamp 

Replicate the edge color if the shader draws outside of its original bounds.

kRepeat 

Repeat the shader's image horizontally and vertically (or both along and perpendicular to a gradient's geometry).

kMirror 

Repeat the shader's image horizontally and vertically, seamlessly alternating mirrored images.

kDecal 

Render the shader's image pixels only within its original bounds. If the shader draws outside of its original bounds, transparent black is drawn instead.

Definition at line 42 of file entity.h.

42  {
43  /// Replicate the edge color if the shader draws outside of its original
44  /// bounds.
45  kClamp,
46 
47  /// Repeat the shader's image horizontally and vertically (or both along and
48  /// perpendicular to a gradient's geometry).
49  kRepeat,
50 
51  /// Repeat the shader's image horizontally and vertically, seamlessly
52  /// alternating mirrored images.
53  kMirror,
54 
55  /// Render the shader's image pixels only within its original bounds. If the
56  /// shader draws outside of its original bounds, transparent black is drawn
57  /// instead.
58  kDecal,
59  };

Constructor & Destructor Documentation

◆ Entity() [1/2]

impeller::Entity::Entity ( )
default

Referenced by Clone().

◆ ~Entity()

impeller::Entity::~Entity ( )
default

◆ Entity() [2/2]

impeller::Entity::Entity ( Entity &&  )
default

Member Function Documentation

◆ AsBackgroundColor()

std::optional< Color > impeller::Entity::AsBackgroundColor ( ISize  target_size) const

Definition at line 145 of file entity.cc.

145  {
146  return contents_->AsBackgroundColor(*this, target_size);
147 }

◆ CanInheritOpacity()

bool impeller::Entity::CanInheritOpacity ( ) const

Definition at line 123 of file entity.cc.

123  {
124  if (!contents_) {
125  return false;
126  }
127  if (!((blend_mode_ == BlendMode::kSource && contents_->IsOpaque()) ||
128  blend_mode_ == BlendMode::kSourceOver)) {
129  return false;
130  }
131  return contents_->CanInheritOpacity(*this);
132 }

References impeller::kSource, and impeller::kSourceOver.

Referenced by SetInheritedOpacity().

◆ Clone()

◆ DeriveTextScale()

Scalar impeller::Entity::DeriveTextScale ( ) const

Definition at line 187 of file entity.cc.

187  {
189 }

References impeller::Matrix::GetMaxBasisLengthXY(), and GetTransform().

◆ FromSnapshot()

Entity impeller::Entity::FromSnapshot ( const Snapshot snapshot,
BlendMode  blend_mode = BlendMode::kSourceOver 
)
static

Create an entity that can be used to render a given snapshot.

Definition at line 22 of file entity.cc.

22  {
23  auto texture_rect = Rect::MakeSize(snapshot.texture->GetSize());
24 
25  auto contents = TextureContents::MakeRect(texture_rect);
26  contents->SetTexture(snapshot.texture);
27  contents->SetSamplerDescriptor(snapshot.sampler_descriptor);
28  contents->SetSourceRect(texture_rect);
29  contents->SetOpacity(snapshot.opacity);
30 
31  Entity entity;
32  entity.SetBlendMode(blend_mode);
33  entity.SetTransform(snapshot.transform);
34  entity.SetContents(contents);
35  return entity;
36 }

References impeller::TextureContents::MakeRect(), impeller::TRect< Scalar >::MakeSize(), impeller::Snapshot::opacity, impeller::Snapshot::sampler_descriptor, SetBlendMode(), SetContents(), SetTransform(), impeller::Snapshot::texture, and impeller::Snapshot::transform.

Referenced by impeller::AdvancedBlend(), and impeller::PipelineBlend().

◆ GetBlendMode()

◆ GetClipCoverage()

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

Definition at line 74 of file entity.cc.

75  {
76  if (!contents_) {
77  return {};
78  }
79  return contents_->GetClipCoverage(*this, current_clip_coverage);
80 }

Referenced by impeller::ExperimentalCanvas::Restore().

◆ GetClipDepth()

uint32_t impeller::Entity::GetClipDepth ( ) const

Definition at line 102 of file entity.cc.

102  {
103  return clip_depth_;
104 }

Referenced by impeller::GetShaderClipDepth(), and impeller::FilterContents::Render().

◆ GetContents()

◆ GetCoverage()

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

Definition at line 66 of file entity.cc.

66  {
67  if (!contents_) {
68  return std::nullopt;
69  }
70 
71  return contents_->GetCoverage(*this);
72 }

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

◆ GetShaderClipDepth() [1/2]

Scalar impeller::Entity::GetShaderClipDepth ( ) const

◆ GetShaderClipDepth() [2/2]

Scalar impeller::Entity::GetShaderClipDepth ( uint32_t  clip_depth)
static

Definition at line 110 of file entity.cc.

110  {
111  Scalar result = std::clamp(clip_depth * kDepthEpsilon, 0.0f, 1.0f);
112  return std::min(result, 1.0f - kDepthEpsilon);
113 }

References kDepthEpsilon.

◆ GetShaderTransform() [1/2]

◆ GetShaderTransform() [2/2]

Matrix impeller::Entity::GetShaderTransform ( Scalar  clip_depth,
const RenderPass pass,
const Matrix transform 
)
static

Static utility that computes the vertex shader transform used for drawing an Entity with a given the clip depth and RenderPass size.

Definition at line 54 of file entity.cc.

56  {
57  return Matrix::MakeTranslation({0, 0, shader_clip_depth}) *
59  pass.GetOrthographicTransform() * transform;
60 }

References impeller::RenderPass::GetOrthographicTransform(), kDepthEpsilon, impeller::Matrix::MakeScale(), impeller::Matrix::MakeTranslation(), and transform.

◆ GetTransform()

◆ IsBlendModeDestructive()

bool impeller::Entity::IsBlendModeDestructive ( BlendMode  blend_mode)
static

Returns true if the blend mode is "destructive", meaning that even fully transparent source colors would result in the destination getting changed.

This is useful for determining if EntityPass textures can be shrinkwrapped to their Entities' coverage; they can be shrinkwrapped if all of the contained Entities have non-destructive blends.

Definition at line 156 of file entity.cc.

156  {
157  switch (blend_mode) {
158  case BlendMode::kClear:
159  case BlendMode::kSource:
165  case BlendMode::kXor:
167  return true;
168  default:
169  return false;
170  }
171 }

References impeller::kClear, impeller::kDestinationATop, impeller::kDestinationIn, impeller::kDestinationOut, impeller::kModulate, impeller::kSource, impeller::kSourceIn, impeller::kSourceOut, and impeller::kXor.

Referenced by impeller::EntityPass::SetBlendMode().

◆ Render()

bool impeller::Entity::Render ( const ContentContext renderer,
RenderPass parent_pass 
) const

Definition at line 173 of file entity.cc.

174  {
175  if (!contents_) {
176  return true;
177  }
178 
179  if (!contents_->GetCoverageHint().has_value()) {
180  contents_->SetCoverageHint(
181  Rect::MakeSize(parent_pass.GetRenderTargetSize()));
182  }
183 
184  return contents_->Render(renderer, *this, parent_pass);
185 }

References impeller::RenderPass::GetRenderTargetSize(), and impeller::TRect< Scalar >::MakeSize().

Referenced by impeller::ColorSourceContents::DrawGeometry(), impeller::EntityPlayground::OpenPlaygroundHere(), impeller::PipelineBlend(), impeller::EntityPass::Render(), impeller::ExperimentalCanvas::Restore(), impeller::ExperimentalCanvas::SaveLayer(), and impeller::testing::TEST_P().

◆ SetBlendMode()

◆ SetClipDepth()

void impeller::Entity::SetClipDepth ( uint32_t  clip_depth)

◆ SetContents()

◆ SetInheritedOpacity()

bool impeller::Entity::SetInheritedOpacity ( Scalar  alpha)

Definition at line 134 of file entity.cc.

134  {
135  if (!CanInheritOpacity()) {
136  return false;
137  }
138  if (blend_mode_ == BlendMode::kSource && contents_->IsOpaque()) {
139  blend_mode_ = BlendMode::kSourceOver;
140  }
141  contents_->SetInheritedOpacity(alpha);
142  return true;
143 }

References CanInheritOpacity(), impeller::kSource, and impeller::kSourceOver.

◆ SetTransform()

◆ ShouldRender()

bool impeller::Entity::ShouldRender ( const std::optional< Rect > &  clip_coverage) const

Definition at line 82 of file entity.cc.

82  {
83 #ifdef IMPELLER_CONTENT_CULLING
84  return contents_->ShouldRender(*this, clip_coverage);
85 #else
86  return true;
87 #endif // IMPELLER_CONTENT_CULLING
88 }

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

Member Data Documentation

◆ kDepthEpsilon

constexpr Scalar impeller::Entity::kDepthEpsilon = 1.0f / 262144.0
staticconstexpr

Definition at line 25 of file entity.h.

Referenced by GetShaderClipDepth(), and GetShaderTransform().

◆ kLastAdvancedBlendMode

constexpr BlendMode impeller::Entity::kLastAdvancedBlendMode = BlendMode::kLuminosity
staticconstexpr

◆ kLastPipelineBlendMode


The documentation for this class was generated from the following files:
impeller::Entity::GetShaderTransform
Matrix GetShaderTransform(const RenderPass &pass) const
Get the vertex shader transform used for drawing this Entity.
Definition: entity.cc:50
impeller::BlendMode::kDestinationATop
@ kDestinationATop
impeller::Entity::GetShaderClipDepth
float GetShaderClipDepth() const
Definition: entity.cc:106
impeller::Scalar
float Scalar
Definition: scalar.h:18
impeller::Entity::kDepthEpsilon
static constexpr Scalar kDepthEpsilon
Definition: entity.h:25
impeller::Entity::GetTransform
const Matrix & GetTransform() const
Get the global transform matrix for this Entity.
Definition: entity.cc:46
impeller::BlendMode::kSource
@ kSource
impeller::Entity::Entity
Entity()
impeller::BlendSelectValues::kDifference
@ kDifference
impeller::Matrix::MakeTranslation
static constexpr Matrix MakeTranslation(const Vector3 &t)
Definition: matrix.h:95
impeller::BlendMode::kModulate
@ kModulate
impeller::BlendMode::kSourceOut
@ kSourceOut
impeller::Entity::CanInheritOpacity
bool CanInheritOpacity() const
Definition: entity.cc:123
transform
Matrix transform
Definition: gaussian_blur_filter_contents.cc:231
impeller::BlendMode::kClear
@ kClear
impeller::BlendMode::kDestinationIn
@ kDestinationIn
impeller::BlendMode::kDestinationOut
@ kDestinationOut
impeller::Matrix::GetMaxBasisLengthXY
constexpr Scalar GetMaxBasisLengthXY() const
Definition: matrix.h:300
impeller::SamplerAddressMode::kMirror
@ kMirror
impeller::TRect< Scalar >::MakeSize
constexpr static TRect MakeSize(const TSize< U > &size)
Definition: rect.h:146
impeller::BlendMode::kSourceIn
@ kSourceIn
impeller::BlendMode::kXor
@ kXor
impeller::TextureContents::MakeRect
static std::shared_ptr< TextureContents > MakeRect(Rect destination)
A common case factory that marks the texture contents as having a destination rectangle....
Definition: texture_contents.cc:27
impeller::Matrix::MakeScale
static constexpr Matrix MakeScale(const Vector3 &s)
Definition: matrix.h:104
impeller::BlendMode::kSourceOver
@ kSourceOver
impeller::SamplerAddressMode::kRepeat
@ kRepeat
impeller::SamplerAddressMode::kDecal
@ kDecal
decal sampling mode is only supported on devices that pass the Capabilities.SupportsDecalSamplerAddre...