Flutter Engine
 
Loading...
Searching...
No Matches
impeller::RuntimeEffectContents Class Referencefinal

#include <runtime_effect_contents.h>

Inheritance diagram for impeller::RuntimeEffectContents:
impeller::ColorSourceContents impeller::Contents

Classes

struct  TextureInput
 

Public Member Functions

void SetRuntimeStage (std::shared_ptr< RuntimeStage > runtime_stage)
 
void SetUniformData (std::shared_ptr< std::vector< uint8_t > > uniform_data)
 
void SetTextureInputs (std::vector< TextureInput > texture_inputs)
 
bool Render (const ContentContext &renderer, const Entity &entity, RenderPass &pass) const override
 
bool BootstrapShader (const ContentContext &renderer) const
 Load the runtime effect and ensure a default PSO is initialized.
 
- Public Member Functions inherited from impeller::ColorSourceContents
 ColorSourceContents ()
 
 ~ColorSourceContents () override
 
void SetGeometry (const Geometry *geometry)
 Set the geometry that this contents will use to render.
 
const GeometryGetGeometry () const
 Get the geometry that this contents will use to render.
 
void SetEffectTransform (Matrix matrix)
 Set the effect transform for this color source.
 
const MatrixGetInverseEffectTransform () const
 Set the inverted effect transform for this color source.
 
void SetOpacityFactor (Scalar opacity)
 Set the opacity factor for this color source.
 
Scalar GetOpacityFactor () const
 Get the opacity factor for this color source.
 
virtual bool IsSolidColor () const
 
std::optional< RectGetCoverage (const Entity &entity) const override
 Get the area of the render pass that will be affected when this contents is rendered.
 
void SetInheritedOpacity (Scalar opacity) override
 Inherit the provided opacity.
 
- Public Member Functions inherited from impeller::Contents
 Contents ()
 
virtual ~Contents ()
 
void SetCoverageHint (std::optional< Rect > coverage_hint)
 Hint that specifies the coverage area of this Contents that will actually be used during rendering. This is for optimization purposes only and can not be relied on as a clip. May optionally affect the result of GetCoverage().
 
const std::optional< Rect > & GetCoverageHint () const
 
virtual bool IsOpaque (const Matrix &transform) const
 Whether this Contents only emits opaque source colors from the fragment stage. This value does not account for any entity properties (e.g. the blend mode), clips/visibility culling, or inherited opacity.
 
virtual std::optional< SnapshotRenderToSnapshot (const ContentContext &renderer, const Entity &entity, const SnapshotOptions &options) const
 Render this contents to a snapshot, respecting the entity's transform, path, clip depth, and blend mode. The result texture size is always the size of GetCoverage(entity).
 
std::optional< SizeGetColorSourceSize () const
 Return the color source's intrinsic size, if available.
 
void SetColorSourceSize (Size size)
 
virtual std::optional< ColorAsBackgroundColor (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 the "Source" color that will be used for the Entity's blend operation.
 
virtual bool ApplyColorFilter (const ColorFilterProc &color_filter_proc)
 If possible, applies a color filter to this contents inputs on the CPU.
 

Static Public Member Functions

static BufferView EmplaceVulkanUniform (const std::shared_ptr< const std::vector< uint8_t > > &input_data, HostBuffer &host_buffer, const RuntimeUniformDescription &uniform, size_t minimum_uniform_alignment)
 
- Static Public Member Functions inherited from impeller::ColorSourceContents
template<typename VertexShaderT >
static bool DrawGeometry (const Contents *contents, const Geometry *geometry, const ContentContext &renderer, const Entity &entity, RenderPass &pass, const PipelineBuilderCallback &pipeline_callback, typename VertexShaderT::FrameInfo frame_info, const BindFragmentCallback &bind_fragment_callback, bool force_stencil=false, const CreateGeometryCallback &create_geom_callback=DefaultCreateGeometryCallback)
 
- Static Public Member Functions inherited from impeller::Contents
static std::shared_ptr< ContentsMakeAnonymous (RenderProc render_proc, CoverageProc coverage_proc)
 

Additional Inherited Members

- Public Types inherited from impeller::ColorSourceContents
using BindFragmentCallback = std::function< bool(RenderPass &pass)>
 
using PipelineBuilderCallback = std::function< PipelineRef(ContentContextOptions)>
 
using CreateGeometryCallback = std::function< GeometryResult(const ContentContext &renderer, const Entity &entity, RenderPass &pass, const Geometry *geom)>
 
- Public Types inherited from impeller::Contents
using ColorFilterProc = std::function< Color(Color)>
 
using RenderProc = std::function< bool(const ContentContext &renderer, const Entity &entity, RenderPass &pass)>
 
using CoverageProc = std::function< std::optional< Rect >(const Entity &entity)>
 
- Protected Member Functions inherited from impeller::ColorSourceContents
bool AppliesAlphaForStrokeCoverage (const Matrix &transform) const
 Whether the entity should be treated as non-opaque due to stroke geometry requiring alpha for coverage.
 
template<typename VertexShaderT >
bool DrawGeometry (const ContentContext &renderer, const Entity &entity, RenderPass &pass, const PipelineBuilderCallback &pipeline_callback, typename VertexShaderT::FrameInfo frame_info, const BindFragmentCallback &bind_fragment_callback, bool force_stencil=false, const CreateGeometryCallback &create_geom_callback=DefaultCreateGeometryCallback) const
 
- Static Protected Member Functions inherited from impeller::ColorSourceContents
static GeometryResult DefaultCreateGeometryCallback (const ContentContext &renderer, const Entity &entity, RenderPass &pass, const Geometry *geom)
 

Detailed Description

Definition at line 18 of file runtime_effect_contents.h.

Member Function Documentation

◆ BootstrapShader()

bool impeller::RuntimeEffectContents::BootstrapShader ( const ContentContext renderer) const

Load the runtime effect and ensure a default PSO is initialized.

Definition at line 100 of file runtime_effect_contents.cc.

101 {
102 if (!RegisterShader(renderer)) {
103 return false;
104 }
105 ContentContextOptions options;
106 options.color_attachment_pixel_format =
107 renderer.GetContext()->GetCapabilities()->GetDefaultColorFormat();
108 CreatePipeline(renderer, options, /*async=*/true);
109 return true;
110}

References impeller::ContentContextOptions::color_attachment_pixel_format, and impeller::ContentContext::GetContext().

Referenced by flutter::SnapshotControllerImpeller::CacheRuntimeStage().

◆ EmplaceVulkanUniform()

BufferView impeller::RuntimeEffectContents::EmplaceVulkanUniform ( const std::shared_ptr< const std::vector< uint8_t > > &  input_data,
HostBuffer host_buffer,
const RuntimeUniformDescription uniform,
size_t  minimum_uniform_alignment 
)
static

Definition at line 33 of file runtime_effect_contents.cc.

37 {
38 // TODO(jonahwilliams): rewrite this to emplace directly into
39 // HostBuffer.
40 std::vector<float> uniform_buffer;
41 uniform_buffer.reserve(uniform.struct_layout.size());
42 size_t uniform_byte_index = 0u;
43 for (char byte_type : uniform.struct_layout) {
44 if (byte_type == kPaddingType) {
45 uniform_buffer.push_back(0.f);
46 } else {
47 FML_DCHECK(byte_type == kFloatType);
48 uniform_buffer.push_back(reinterpret_cast<const float*>(
49 input_data->data())[uniform_byte_index++]);
50 }
51 }
52
53 return data_host_buffer.Emplace(
54 reinterpret_cast<const void*>(uniform_buffer.data()),
55 sizeof(float) * uniform_buffer.size(), minimum_uniform_alignment);
56}
#define FML_DCHECK(condition)
Definition logging.h:122

References impeller::HostBuffer::Emplace(), FML_DCHECK, and impeller::RuntimeUniformDescription::struct_layout.

Referenced by Render(), and impeller::testing::TEST_P().

◆ Render()

bool impeller::RuntimeEffectContents::Render ( const ContentContext renderer,
const Entity entity,
RenderPass pass 
) const
overridevirtual

Get or register shader. Flutter will do this when the runtime effect is first loaded, but this check is added to supporting testing of the Aiks API and non-flutter usage of Impeller.

Fragment stage uniforms.

Now that the descriptor set layouts are known, get the pipeline.

Implements impeller::Contents.

Definition at line 219 of file runtime_effect_contents.cc.

221 {
222 const std::shared_ptr<Context>& context = renderer.GetContext();
223 const std::shared_ptr<ShaderLibrary>& library = context->GetShaderLibrary();
224
225 //--------------------------------------------------------------------------
226 /// Get or register shader. Flutter will do this when the runtime effect
227 /// is first loaded, but this check is added to supporting testing of the
228 /// Aiks API and non-flutter usage of Impeller.
229 ///
230 if (!RegisterShader(renderer)) {
231 return false;
232 }
233
234 //--------------------------------------------------------------------------
235 /// Fragment stage uniforms.
236 ///
237 BindFragmentCallback bind_callback = [this, &renderer,
238 &context](RenderPass& pass) {
239 size_t buffer_index = 0;
240 size_t buffer_offset = 0;
241 size_t sampler_location = 0;
242 size_t buffer_location = 0;
243
244 // Uniforms are ordered in the IPLR according to their
245 // declaration and the uniform location reflects the correct offset to
246 // be mapped to - except that it may include all proceeding
247 // uniforms of a different type. For example, a texture sampler that comes
248 // after 4 float uniforms may have a location of 4. Since we know that
249 // the declarations are already ordered, we can track the uniform location
250 // ourselves.
251 auto& data_host_buffer = renderer.GetTransientsDataBuffer();
252 for (const auto& uniform : runtime_stage_->GetUniforms()) {
253 std::unique_ptr<ShaderMetadata> metadata = MakeShaderMetadata(uniform);
254 switch (uniform.type) {
255 case kSampledImage: {
256 FML_DCHECK(sampler_location < texture_inputs_.size());
257 auto& input = texture_inputs_[sampler_location];
258
259 raw_ptr<const Sampler> sampler =
260 context->GetSamplerLibrary()->GetSampler(
261 input.sampler_descriptor);
262
263 SampledImageSlot image_slot;
264 image_slot.name = uniform.name.c_str();
265 image_slot.binding = uniform.binding;
266 image_slot.texture_index = sampler_location;
267 pass.BindDynamicResource(ShaderStage::kFragment,
269 std::move(metadata), input.texture, sampler);
270 sampler_location++;
271 break;
272 }
273 case kFloat: {
274 FML_DCHECK(renderer.GetContext()->GetBackendType() !=
276 << "Uniform " << uniform.name
277 << " had unexpected type kFloat for Vulkan backend.";
278
279 size_t alignment =
280 std::max(uniform.bit_width / 8,
281 data_host_buffer.GetMinimumUniformAlignment());
282 BufferView buffer_view =
283 data_host_buffer.Emplace(uniform_data_->data() + buffer_offset,
284 uniform.GetSize(), alignment);
285
286 ShaderUniformSlot uniform_slot;
287 uniform_slot.name = uniform.name.c_str();
288 uniform_slot.ext_res_0 = buffer_location;
289 pass.BindDynamicResource(ShaderStage::kFragment,
290 DescriptorType::kUniformBuffer, uniform_slot,
291 std::move(metadata), std::move(buffer_view));
292 buffer_index++;
293 buffer_offset += uniform.GetSize();
294 buffer_location++;
295 break;
296 }
297 case kStruct: {
298 FML_DCHECK(renderer.GetContext()->GetBackendType() ==
300 ShaderUniformSlot uniform_slot;
301 uniform_slot.binding = uniform.location;
302 uniform_slot.name = uniform.name.c_str();
303
304 pass.BindResource(ShaderStage::kFragment,
305 DescriptorType::kUniformBuffer, uniform_slot,
306 nullptr,
308 uniform_data_, data_host_buffer, uniform,
309 data_host_buffer.GetMinimumUniformAlignment()));
310 }
311 }
312 }
313
314 return true;
315 };
316
317 /// Now that the descriptor set layouts are known, get the pipeline.
318 using VS = RuntimeEffectVertexShader;
319
320 PipelineBuilderCallback pipeline_callback =
321 [&](ContentContextOptions options) {
322 // Pipeline creation callback for the cache handler to call.
323 return renderer.GetCachedRuntimeEffectPipeline(
324 runtime_stage_->GetEntrypoint(), options, [&]() {
325 return CreatePipeline(renderer, options, /*async=*/false);
326 });
327 };
328
329 return ColorSourceContents::DrawGeometry<VS>(renderer, entity, pass,
330 pipeline_callback,
331 VS::FrameInfo{}, bind_callback);
332}
BufferView buffer_view
std::function< PipelineRef(ContentContextOptions)> PipelineBuilderCallback
std::function< bool(RenderPass &pass)> BindFragmentCallback
static BufferView EmplaceVulkanUniform(const std::shared_ptr< const std::vector< uint8_t > > &input_data, HostBuffer &host_buffer, const RuntimeUniformDescription &uniform, size_t minimum_uniform_alignment)
static int input(yyscan_t yyscanner)
static std::unique_ptr< ShaderMetadata > MakeShaderMetadata(const RuntimeUniformDescription &uniform)
LinePipeline::VertexShader VS

References impeller::RenderPass::BindDynamicResource(), impeller::ShaderUniformSlot::binding, impeller::SampledImageSlot::binding, impeller::RenderPass::BindResource(), buffer_view, EmplaceVulkanUniform(), impeller::ShaderUniformSlot::ext_res_0, FML_DCHECK, impeller::ContentContext::GetCachedRuntimeEffectPipeline(), impeller::ContentContext::GetContext(), impeller::ContentContext::GetTransientsDataBuffer(), input(), impeller::kFloat, impeller::kFragment, impeller::kSampledImage, impeller::kStruct, impeller::kUniformBuffer, impeller::Context::kVulkan, impeller::MakeShaderMetadata(), impeller::ShaderUniformSlot::name, impeller::SampledImageSlot::name, and impeller::SampledImageSlot::texture_index.

◆ SetRuntimeStage()

void impeller::RuntimeEffectContents::SetRuntimeStage ( std::shared_ptr< RuntimeStage runtime_stage)

Definition at line 58 of file runtime_effect_contents.cc.

59 {
60 runtime_stage_ = std::move(runtime_stage);
61}

Referenced by flutter::SnapshotControllerImpeller::CacheRuntimeStage().

◆ SetTextureInputs()

void impeller::RuntimeEffectContents::SetTextureInputs ( std::vector< TextureInput texture_inputs)

Definition at line 68 of file runtime_effect_contents.cc.

69 {
70 texture_inputs_ = std::move(texture_inputs);
71}

◆ SetUniformData()

void impeller::RuntimeEffectContents::SetUniformData ( std::shared_ptr< std::vector< uint8_t > >  uniform_data)

Definition at line 63 of file runtime_effect_contents.cc.

64 {
65 uniform_data_ = std::move(uniform_data);
66}

The documentation for this class was generated from the following files: