Flutter Impeller
entity.h
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 
5 #ifndef FLUTTER_IMPELLER_ENTITY_ENTITY_H_
6 #define FLUTTER_IMPELLER_ENTITY_ENTITY_H_
7 
8 #include <cstdint>
9 
13 #include "impeller/geometry/rect.h"
14 
15 namespace impeller {
16 
17 class Renderer;
18 class RenderPass;
19 
20 class Entity {
21  public:
24 
25  static constexpr Scalar kDepthEpsilon = 1.0f / 262144.0;
26 
27  enum class RenderingMode {
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.
37  };
38 
39  /// An enum to define how to repeat, fold, or omit colors outside of the
40  /// typically defined range of the source of the colors (such as the
41  /// bounds of an image or the defining geometry of a gradient).
42  enum class TileMode {
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  };
60 
61  enum class ClipOperation {
63  kIntersect,
64  };
65 
66  /// @brief Create an entity that can be used to render a given snapshot.
67  static Entity FromSnapshot(const Snapshot& snapshot,
68  BlendMode blend_mode = BlendMode::kSourceOver);
69 
70  Entity();
71 
72  ~Entity();
73 
74  Entity(Entity&&);
75 
76  /// @brief Get the global transform matrix for this Entity.
77  const Matrix& GetTransform() const;
78 
79  /// @brief Get the vertex shader transform used for drawing this Entity.
80  Matrix GetShaderTransform(const RenderPass& pass) const;
81 
82  /// @brief Static utility that computes the vertex shader transform used for
83  /// drawing an Entity with a given the clip depth and RenderPass size.
84  static Matrix GetShaderTransform(Scalar clip_depth,
85  const RenderPass& pass,
86  const Matrix& transform);
87 
88  /// @brief Set the global transform matrix for this Entity.
89  void SetTransform(const Matrix& transform);
90 
91  std::optional<Rect> GetCoverage() const;
92 
94  const std::optional<Rect>& current_clip_coverage) const;
95 
96  bool ShouldRender(const std::optional<Rect>& clip_coverage) const;
97 
98  void SetContents(std::shared_ptr<Contents> contents);
99 
100  const std::shared_ptr<Contents>& GetContents() const;
101 
102  void SetClipDepth(uint32_t clip_depth);
103 
104  uint32_t GetClipDepth() const;
105 
106  float GetShaderClipDepth() const;
107 
108  static float GetShaderClipDepth(uint32_t clip_depth);
109 
110  void SetBlendMode(BlendMode blend_mode);
111 
112  BlendMode GetBlendMode() const;
113 
114  bool Render(const ContentContext& renderer, RenderPass& parent_pass) const;
115 
116  static bool IsBlendModeDestructive(BlendMode blend_mode);
117 
118  bool CanInheritOpacity() const;
119 
120  bool SetInheritedOpacity(Scalar alpha);
121 
122  std::optional<Color> AsBackgroundColor(ISize target_size) const;
123 
124  Scalar DeriveTextScale() const;
125 
126  Entity Clone() const;
127 
128  private:
129  Entity(const Entity&);
130 
131  Matrix transform_;
132  std::shared_ptr<Contents> contents_;
133  BlendMode blend_mode_ = BlendMode::kSourceOver;
134  uint32_t clip_depth_ = 1u;
135 };
136 
137 } // namespace impeller
138 
139 #endif // FLUTTER_IMPELLER_ENTITY_ENTITY_H_
impeller::Entity::ClipOperation::kIntersect
@ kIntersect
impeller::Entity::GetShaderTransform
Matrix GetShaderTransform(const RenderPass &pass) const
Get the vertex shader transform used for drawing this Entity.
Definition: entity.cc:50
impeller::Entity::SetClipDepth
void SetClipDepth(uint32_t clip_depth)
Definition: entity.cc:98
impeller::Entity::TileMode::kClamp
@ kClamp
impeller::Entity::kLastPipelineBlendMode
static constexpr BlendMode kLastPipelineBlendMode
Definition: entity.h:22
contents.h
impeller::Entity::GetShaderClipDepth
float GetShaderClipDepth() const
Definition: entity.cc:106
impeller::Entity::ClipOperation::kDifference
@ kDifference
impeller::Scalar
float Scalar
Definition: scalar.h:18
impeller::Entity::SetBlendMode
void SetBlendMode(BlendMode blend_mode)
Definition: entity.cc:115
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
BlendMode
Definition: color.h:59
impeller::BlendMode::kLuminosity
@ kLuminosity
impeller::Entity::TileMode::kDecal
@ kDecal
impeller::Entity::IsBlendModeDestructive
static bool IsBlendModeDestructive(BlendMode blend_mode)
Returns true if the blend mode is "destructive", meaning that even fully transparent source colors wo...
Definition: entity.cc:156
impeller::Entity::RenderingMode::kSubpassAppendSnapshotTransform
@ kSubpassAppendSnapshotTransform
impeller::Entity::~Entity
~Entity()
impeller::Entity::Entity
Entity()
impeller::Entity::TileMode::kRepeat
@ kRepeat
impeller::BlendMode::kModulate
@ kModulate
impeller::Entity::TileMode::kMirror
@ kMirror
impeller::Entity::SetContents
void SetContents(std::shared_ptr< Contents > contents)
Definition: entity.cc:90
impeller::Entity::CanInheritOpacity
bool CanInheritOpacity() const
Definition: entity.cc:123
matrix.h
impeller::Entity
Definition: entity.h:20
impeller::TSize
Definition: size.h:19
impeller::Entity::ShouldRender
bool ShouldRender(const std::optional< Rect > &clip_coverage) const
Definition: entity.cc:82
impeller::Entity::Render
bool Render(const ContentContext &renderer, RenderPass &parent_pass) const
Definition: entity.cc:173
impeller::Entity::SetInheritedOpacity
bool SetInheritedOpacity(Scalar alpha)
Definition: entity.cc:134
transform
Matrix transform
Definition: gaussian_blur_filter_contents.cc:231
impeller::Entity::FromSnapshot
static Entity FromSnapshot(const Snapshot &snapshot, BlendMode blend_mode=BlendMode::kSourceOver)
Create an entity that can be used to render a given snapshot.
Definition: entity.cc:22
impeller::Entity::kLastAdvancedBlendMode
static constexpr BlendMode kLastAdvancedBlendMode
Definition: entity.h:23
impeller::Snapshot
Represents a texture and its intended draw transform/sampler configuration.
Definition: snapshot.h:24
impeller::Entity::GetContents
const std::shared_ptr< Contents > & GetContents() const
Definition: entity.cc:94
impeller::Entity::RenderingMode::kDirect
@ kDirect
impeller::Entity::TileMode
TileMode
Definition: entity.h:42
impeller::Entity::GetBlendMode
BlendMode GetBlendMode() const
Definition: entity.cc:119
impeller::RenderPass
Render passes encode render commands directed as one specific render target into an underlying comman...
Definition: render_pass.h:33
impeller::Entity::GetClipDepth
uint32_t GetClipDepth() const
Definition: entity.cc:102
impeller::Entity::AsBackgroundColor
std::optional< Color > AsBackgroundColor(ISize target_size) const
Definition: entity.cc:145
impeller::Entity::GetCoverage
std::optional< Rect > GetCoverage() const
Definition: entity.cc:66
impeller::Entity::SetTransform
void SetTransform(const Matrix &transform)
Set the global transform matrix for this Entity.
Definition: entity.cc:62
impeller::Entity::RenderingMode::kSubpassPrependSnapshotTransform
@ kSubpassPrependSnapshotTransform
rect.h
impeller::Entity::Clone
Entity Clone() const
Definition: entity.cc:191
impeller::Contents::ClipCoverage
Definition: contents.h:37
impeller::Entity::ClipOperation
ClipOperation
Definition: entity.h:61
color.h
impeller::Entity::GetClipCoverage
Contents::ClipCoverage GetClipCoverage(const std::optional< Rect > &current_clip_coverage) const
Definition: entity.cc:74
impeller::Entity::RenderingMode
RenderingMode
Definition: entity.h:27
impeller::Entity::DeriveTextScale
Scalar DeriveTextScale() const
Definition: entity.cc:187
impeller
Definition: aiks_blend_unittests.cc:18
impeller::ContentContext
Definition: content_context.h:366
impeller::Matrix
A 4x4 matrix using column-major storage.
Definition: matrix.h:37
impeller::BlendMode::kSourceOver
@ kSourceOver