Flutter Impeller
entity_playground.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_PLAYGROUND_H_
6 #define FLUTTER_IMPELLER_ENTITY_ENTITY_PLAYGROUND_H_
7 
9 
11 #include "impeller/entity/entity.h"
14 
15 namespace impeller {
16 
18  public:
20  std::function<bool(ContentContext& context, RenderPass& pass)>;
21 
23 
25 
27  std::shared_ptr<TypographerContext> typographer_context);
28 
29  bool OpenPlaygroundHere(Entity entity);
30 
31  bool OpenPlaygroundHere(EntityPass& entity_pass);
32 
34 
35  std::shared_ptr<ContentContext> GetContentContext() const;
36 
37  private:
38  std::shared_ptr<TypographerContext> typographer_context_;
39 
40  EntityPlayground(const EntityPlayground&) = delete;
41 
42  EntityPlayground& operator=(const EntityPlayground&) = delete;
43 };
44 
45 } // namespace impeller
46 
47 #endif // FLUTTER_IMPELLER_ENTITY_ENTITY_PLAYGROUND_H_
impeller::EntityPlayground::~EntityPlayground
~EntityPlayground()
entity.h
typographer_context.h
impeller::Entity
Definition: entity.h:20
impeller::EntityPass
Definition: entity_pass.h:43
entity_pass.h
impeller::RenderPass
Render passes encode render commands directed as one specific render target into an underlying comman...
Definition: render_pass.h:33
content_context.h
impeller::EntityPlayground
Definition: entity_playground.h:17
impeller::EntityPlayground::OpenPlaygroundHere
bool OpenPlaygroundHere(Entity entity)
Definition: entity_playground.cc:49
impeller::PlaygroundTest
Definition: playground_test.h:21
impeller::EntityPlayground::EntityPlayground
EntityPlayground()
Definition: entity_playground.cc:13
impeller::EntityPlayground::EntityPlaygroundCallback
std::function< bool(ContentContext &context, RenderPass &pass)> EntityPlaygroundCallback
Definition: entity_playground.h:20
impeller::EntityPlayground::SetTypographerContext
void SetTypographerContext(std::shared_ptr< TypographerContext > typographer_context)
Definition: entity_playground.cc:18
impeller
Definition: aiks_blend_unittests.cc:18
playground_test.h
impeller::ContentContext
Definition: content_context.h:366
impeller::EntityPlayground::GetContentContext
std::shared_ptr< ContentContext > GetContentContext() const
Definition: entity_playground.cc:45