Flutter Impeller
runtime_effect_contents.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_CONTENTS_RUNTIME_EFFECT_CONTENTS_H_
6 #define FLUTTER_IMPELLER_ENTITY_CONTENTS_RUNTIME_EFFECT_CONTENTS_H_
7 
8 #include <memory>
9 #include <vector>
10 
14 
15 namespace impeller {
16 
18  public:
19  struct TextureInput {
21  std::shared_ptr<Texture> texture;
22  };
23 
24  void SetRuntimeStage(std::shared_ptr<RuntimeStage> runtime_stage);
25 
26  void SetUniformData(std::shared_ptr<std::vector<uint8_t>> uniform_data);
27 
28  void SetTextureInputs(std::vector<TextureInput> texture_inputs);
29 
30  // | Contents|
31  bool CanInheritOpacity(const Entity& entity) const override;
32 
33  // |Contents|
34  bool Render(const ContentContext& renderer,
35  const Entity& entity,
36  RenderPass& pass) const override;
37 
38  private:
39  std::shared_ptr<RuntimeStage> runtime_stage_;
40  std::shared_ptr<std::vector<uint8_t>> uniform_data_;
41  std::vector<TextureInput> texture_inputs_;
42 };
43 
44 } // namespace impeller
45 
46 #endif // FLUTTER_IMPELLER_ENTITY_CONTENTS_RUNTIME_EFFECT_CONTENTS_H_
impeller::RuntimeEffectContents::SetTextureInputs
void SetTextureInputs(std::vector< TextureInput > texture_inputs)
Definition: runtime_effect_contents.cc:35
impeller::RuntimeEffectContents::SetRuntimeStage
void SetRuntimeStage(std::shared_ptr< RuntimeStage > runtime_stage)
Definition: runtime_effect_contents.cc:25
impeller::RuntimeEffectContents::CanInheritOpacity
bool CanInheritOpacity(const Entity &entity) const override
Whether or not this contents can accept the opacity peephole optimization.
Definition: runtime_effect_contents.cc:40
impeller::RuntimeEffectContents::SetUniformData
void SetUniformData(std::shared_ptr< std::vector< uint8_t >> uniform_data)
Definition: runtime_effect_contents.cc:30
impeller::RuntimeEffectContents
Definition: runtime_effect_contents.h:17
impeller::SamplerDescriptor
Definition: sampler_descriptor.h:15
impeller::Entity
Definition: entity.h:21
impeller::RuntimeEffectContents::TextureInput::sampler_descriptor
SamplerDescriptor sampler_descriptor
Definition: runtime_effect_contents.h:20
runtime_stage.h
color_source_contents.h
impeller::RuntimeEffectContents::TextureInput
Definition: runtime_effect_contents.h:19
impeller::RuntimeEffectContents::TextureInput::texture
std::shared_ptr< Texture > texture
Definition: runtime_effect_contents.h:21
impeller::RenderPass
Render passes encode render commands directed as one specific render target into an underlying comman...
Definition: render_pass.h:33
sampler_descriptor.h
impeller::RuntimeEffectContents::Render
bool Render(const ContentContext &renderer, const Entity &entity, RenderPass &pass) const override
Definition: runtime_effect_contents.cc:68
impeller::ColorSourceContents
Definition: color_source_contents.h:36
impeller
Definition: aiks_blur_unittests.cc:20
impeller::ContentContext
Definition: content_context.h:392