Flutter Impeller
color_matrix_filter_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 
7 #include <optional>
8 
17 
18 namespace impeller {
19 
21 
23 
25  matrix_ = matrix;
26 }
27 
28 std::optional<Entity> ColorMatrixFilterContents::RenderFilter(
29  const FilterInput::Vector& inputs,
30  const ContentContext& renderer,
31  const Entity& entity,
32  const Matrix& effect_transform,
33  const Rect& coverage,
34  const std::optional<Rect>& coverage_hint) const {
37 
38  //----------------------------------------------------------------------------
39  /// Handle inputs.
40  ///
41 
42  if (inputs.empty()) {
43  return std::nullopt;
44  }
45 
46  auto input_snapshot = inputs[0]->GetSnapshot("ColorMatrix", renderer, entity);
47  if (!input_snapshot.has_value()) {
48  return std::nullopt;
49  }
50 
51  //----------------------------------------------------------------------------
52  /// Create AnonymousContents for rendering.
53  ///
54  RenderProc render_proc = [input_snapshot, color_matrix = matrix_,
55  absorb_opacity = GetAbsorbOpacity()](
56  const ContentContext& renderer,
57  const Entity& entity, RenderPass& pass) -> bool {
58  Command cmd;
59  DEBUG_COMMAND_INFO(cmd, "Color Matrix Filter");
60  cmd.stencil_reference = entity.GetStencilDepth();
61 
62  auto options = OptionsFromPassAndEntity(pass, entity);
63  cmd.pipeline = renderer.GetColorMatrixColorFilterPipeline(options);
64 
65  auto size = input_snapshot->texture->GetSize();
66 
67  VertexBufferBuilder<VS::PerVertexData> vtx_builder;
68  vtx_builder.AddVertices({
69  {Point(0, 0)},
70  {Point(1, 0)},
71  {Point(1, 1)},
72  {Point(0, 0)},
73  {Point(1, 1)},
74  {Point(0, 1)},
75  });
76  auto& host_buffer = pass.GetTransientsBuffer();
77  auto vtx_buffer = vtx_builder.CreateVertexBuffer(host_buffer);
78  cmd.BindVertices(vtx_buffer);
79 
80  VS::FrameInfo frame_info;
81  frame_info.mvp = Matrix::MakeOrthographic(pass.GetRenderTargetSize()) *
82  entity.GetTransformation() * input_snapshot->transform *
84  frame_info.texture_sampler_y_coord_scale =
85  input_snapshot->texture->GetYCoordScale();
86 
87  FS::FragInfo frag_info;
88  const float* matrix = color_matrix.array;
89  frag_info.color_v = Vector4(matrix[4], matrix[9], matrix[14], matrix[19]);
90  // clang-format off
91  frag_info.color_m = Matrix(
92  matrix[0], matrix[5], matrix[10], matrix[15],
93  matrix[1], matrix[6], matrix[11], matrix[16],
94  matrix[2], matrix[7], matrix[12], matrix[17],
95  matrix[3], matrix[8], matrix[13], matrix[18]
96  );
97  // clang-format on
98  frag_info.input_alpha =
100  ? input_snapshot->opacity
101  : 1.0f;
102  auto sampler = renderer.GetContext()->GetSamplerLibrary()->GetSampler({});
103  FS::BindInputTexture(cmd, input_snapshot->texture, sampler);
104  FS::BindFragInfo(cmd, host_buffer.EmplaceUniform(frag_info));
105 
106  VS::BindFrameInfo(cmd, host_buffer.EmplaceUniform(frame_info));
107 
108  return pass.AddCommand(std::move(cmd));
109  };
110 
111  CoverageProc coverage_proc =
112  [coverage](const Entity& entity) -> std::optional<Rect> {
113  return coverage.TransformBounds(entity.GetTransformation());
114  };
115 
116  auto contents = AnonymousContents::Make(render_proc, coverage_proc);
117 
118  Entity sub_entity;
119  sub_entity.SetContents(std::move(contents));
120  sub_entity.SetStencilDepth(entity.GetStencilDepth());
121  sub_entity.SetBlendMode(entity.GetBlendMode());
122  return sub_entity;
123 }
124 
125 } // namespace impeller
DEBUG_COMMAND_INFO
#define DEBUG_COMMAND_INFO(obj, arg)
Definition: command.h:31
contents.h
color_matrix_filter_contents.h
point.h
sampler_library.h
impeller::TRect::TransformBounds
constexpr TRect TransformBounds(const Matrix &transform) const
Creates a new bounding box that contains this transformed rectangle.
Definition: rect.h:204
impeller::Vector2
Point Vector2
Definition: point.h:310
impeller::RenderPipelineT::FragmentShader
FragmentShader_ FragmentShader
Definition: pipeline.h:91
impeller::ColorMatrixFilterContents::~ColorMatrixFilterContents
~ColorMatrixFilterContents() override
impeller::ColorMatrixFilterContents::SetMatrix
void SetMatrix(const ColorMatrix &matrix)
Definition: color_matrix_filter_contents.cc:24
impeller::Entity
Definition: entity.h:21
impeller::OptionsFromPassAndEntity
ContentContextOptions OptionsFromPassAndEntity(const RenderPass &pass, const Entity &entity)
Definition: contents.cc:30
impeller::Point
TPoint< Scalar > Point
Definition: point.h:306
render_pass.h
impeller::ColorMatrixFilterContents::ColorMatrixFilterContents
ColorMatrixFilterContents()
impeller::ColorFilterContents::GetAbsorbOpacity
AbsorbOpacity GetAbsorbOpacity() const
Definition: color_filter_contents.cc:89
color_filter_contents.h
anonymous_contents.h
content_context.h
impeller::Contents::RenderProc
std::function< bool(const ContentContext &renderer, const Entity &entity, RenderPass &pass)> RenderProc
Definition: contents.h:48
vector.h
impeller::Matrix::MakeOrthographic
static constexpr Matrix MakeOrthographic(TSize< T > size)
Definition: matrix.h:448
impeller::Contents::CoverageProc
std::function< std::optional< Rect >(const Entity &entity)> CoverageProc
Definition: contents.h:49
impeller::ColorFilterContents::AbsorbOpacity::kYes
@ kYes
impeller::FilterInput::Vector
std::vector< FilterInput::Ref > Vector
Definition: filter_input.h:32
impeller::RenderPipelineT::VertexShader
VertexShader_ VertexShader
Definition: pipeline.h:90
impeller::ColorMatrix
Definition: color.h:115
impeller
Definition: aiks_context.cc:10
impeller::Matrix::MakeScale
static constexpr Matrix MakeScale(const Vector3 &s)
Definition: matrix.h:103
impeller::ContentContext
Definition: content_context.h:344
impeller::TRect
Definition: rect.h:20
impeller::Matrix
A 4x4 matrix using column-major storage.
Definition: matrix.h:36
impeller::AnonymousContents::Make
static std::shared_ptr< Contents > Make(RenderProc render_proc, CoverageProc coverage_proc)
Definition: anonymous_contents.cc:11