Flutter Engine
 
Loading...
Searching...
No Matches
srgb_to_linear_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
13
14namespace impeller {
15
17
19
20std::optional<Entity> SrgbToLinearFilterContents::RenderFilter(
21 const FilterInput::Vector& inputs,
22 const ContentContext& renderer,
23 const Entity& entity,
24 const Matrix& effect_transform,
25 const Rect& coverage,
26 const std::optional<Rect>& coverage_hint) const {
27 if (inputs.empty()) {
28 return std::nullopt;
29 }
30
31 using VS = SrgbToLinearFilterPipeline::VertexShader;
32 using FS = SrgbToLinearFilterPipeline::FragmentShader;
33
34 auto input_snapshot =
35 inputs[0]->GetSnapshot("SrgbToLinear", renderer, entity);
36 if (!input_snapshot.has_value()) {
37 return std::nullopt;
38 }
39
40 //----------------------------------------------------------------------------
41 /// Create AnonymousContents for rendering.
42 ///
43 RenderProc render_proc = [input_snapshot,
44 absorb_opacity = GetAbsorbOpacity()](
45 const ContentContext& renderer,
46 const Entity& entity, RenderPass& pass) -> bool {
47 pass.SetCommandLabel("sRGB to Linear Filter");
48
49 auto options = OptionsFromPassAndEntity(pass, entity);
50 options.primitive_type = PrimitiveType::kTriangleStrip;
51 pass.SetPipeline(renderer.GetSrgbToLinearFilterPipeline(options));
52
53 auto size = input_snapshot->texture->GetSize();
54
55 std::array<VS::PerVertexData, 4> vertices = {
56 VS::PerVertexData{Point(0, 0)},
57 VS::PerVertexData{Point(1, 0)},
58 VS::PerVertexData{Point(0, 1)},
59 VS::PerVertexData{Point(1, 1)},
60 };
61
62 auto& data_host_buffer = renderer.GetTransientsDataBuffer();
63 pass.SetVertexBuffer(CreateVertexBuffer(vertices, data_host_buffer));
64
65 VS::FrameInfo frame_info;
66 frame_info.mvp = Entity::GetShaderTransform(
67 entity.GetShaderClipDepth(), pass,
68 entity.GetTransform() * input_snapshot->transform *
70 frame_info.texture_sampler_y_coord_scale =
71 input_snapshot->texture->GetYCoordScale();
72
73 FS::FragInfo frag_info;
74 frag_info.input_alpha =
76 ? input_snapshot->opacity
77 : 1.0f;
78
79 raw_ptr<const Sampler> sampler =
80 renderer.GetContext()->GetSamplerLibrary()->GetSampler({});
81 FS::BindInputTexture(pass, input_snapshot->texture, sampler);
82 FS::BindFragInfo(pass, data_host_buffer.EmplaceUniform(frag_info));
83 VS::BindFrameInfo(pass, data_host_buffer.EmplaceUniform(frame_info));
84
85 return pass.Draw().ok();
86 };
87
88 CoverageProc coverage_proc =
89 [coverage](const Entity& entity) -> std::optional<Rect> {
90 return coverage.TransformBounds(entity.GetTransform());
91 };
92
93 std::shared_ptr<Contents> contents =
94 AnonymousContents::Make(render_proc, coverage_proc);
95
96 Entity sub_entity;
97 sub_entity.SetContents(std::move(contents));
98 sub_entity.SetBlendMode(entity.GetBlendMode());
99 return sub_entity;
100}
101
102} // namespace impeller
static std::shared_ptr< Contents > Make(RenderProc render_proc, CoverageProc coverage_proc)
std::function< std::optional< Rect >(const Entity &entity)> CoverageProc
Definition contents.h:40
std::function< bool(const ContentContext &renderer, const Entity &entity, RenderPass &pass)> RenderProc
Definition contents.h:39
Matrix GetShaderTransform(const RenderPass &pass) const
Definition entity.cc:48
std::vector< FilterInput::Ref > Vector
it will be possible to load the file into Perfetto s trace viewer use test Running tests that layout and measure text will not yield consistent results across various platforms Enabling this option will make font resolution default to the Ahem test font on all disable asset Prevents usage of any non test fonts unless they were explicitly Loaded via prefetched default font Indicates whether the embedding started a prefetch of the default font manager before creating the engine run In non interactive keep the shell running after the Dart script has completed enable serial On low power devices with low core running concurrent GC tasks on threads can cause them to contend with the UI thread which could potentially lead to jank This option turns off all concurrent GC activities domain network JSON encoded network policy per domain This overrides the DisallowInsecureConnections switch Embedder can specify whether to allow or disallow insecure connections at a domain level old gen heap size
Point Vector2
Definition point.h:331
TRect< Scalar > Rect
Definition rect.h:788
TPoint< Scalar > Point
Definition point.h:327
LinePipeline::FragmentShader FS
VertexBuffer CreateVertexBuffer(std::array< VertexType, size > input, HostBuffer &data_host_buffer)
Create an index-less vertex buffer from a fixed size array.
LinePipeline::VertexShader VS
ContentContextOptions OptionsFromPassAndEntity(const RenderPass &pass, const Entity &entity)
Definition contents.cc:34
static constexpr Matrix MakeScale(const Vector3 &s)
Definition matrix.h:104