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 
10 #include "flutter/fml/macros.h"
12 #include "impeller/entity/entity.h"
15 
16 namespace impeller {
17 
19  public:
21  std::function<bool(ContentContext& context, RenderPass& pass)>;
22 
24 
26 
28  std::shared_ptr<TypographerContext> typographer_context);
29 
30  bool OpenPlaygroundHere(Entity entity);
31 
32  bool OpenPlaygroundHere(EntityPass& entity_pass);
33 
35 
36  std::shared_ptr<ContentContext> GetContentContext() const;
37 
38  private:
39  std::shared_ptr<TypographerContext> typographer_context_;
40 
41  EntityPlayground(const EntityPlayground&) = delete;
42 
43  EntityPlayground& operator=(const EntityPlayground&) = delete;
44 };
45 
46 } // namespace impeller
47 
48 #endif // FLUTTER_IMPELLER_ENTITY_ENTITY_PLAYGROUND_H_
impeller::EntityPlayground::~EntityPlayground
~EntityPlayground()
entity.h
typographer_context.h
impeller::Entity
Definition: entity.h:21
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:18
impeller::EntityPlayground::OpenPlaygroundHere
bool OpenPlaygroundHere(Entity entity)
Definition: entity_playground.cc:49
impeller::PlaygroundTest
Definition: playground_test.h:23
impeller::EntityPlayground::EntityPlayground
EntityPlayground()
Definition: entity_playground.cc:13
impeller::EntityPlayground::EntityPlaygroundCallback
std::function< bool(ContentContext &context, RenderPass &pass)> EntityPlaygroundCallback
Definition: entity_playground.h:21
impeller::EntityPlayground::SetTypographerContext
void SetTypographerContext(std::shared_ptr< TypographerContext > typographer_context)
Definition: entity_playground.cc:18
impeller
Definition: aiks_blur_unittests.cc:20
playground_test.h
impeller::ContentContext
Definition: content_context.h:392
impeller::EntityPlayground::GetContentContext
std::shared_ptr< ContentContext > GetContentContext() const
Definition: entity_playground.cc:45